Create task comments

Create user task comments

Parameters

Type

Description

comments(Mandatory)

String(36)

Task comments

  • URL Parameters:

    clientUUID

    userUUID

    taskUUID

Post user task comments

POST https://<baseurl>/v1/organization/tasks/comments/add/@clientUUID/@userUUID/@taskUUID

Path Parameters

Name
Type
Description

userUUID

string

User UUID

taskUUID

string

Task UUID

Headers

Name
Type
Description

Authentication

string

Authentication token

#########################################################################
## success
#########################################################################

{
    "message": "success",
    "status": 200
}


#########################################################################
## Error:Unable to save data
#########################################################################
            
{
	"message": "error",
	"status": 400,
	"description": "Unable to save data"
}

#########################################################################
## Error:No data found
#########################################################################
            
{
	"message": "error",
	"status": 401,
	"description": "No data found"
}


Last updated