ErrorResponse
TaskResponse - represents a user task.
- Schema
 - Example value
 
{
    "status": int,
    "message": string,
    "instance": string
}
{
  "status": 400,
  "message": "string",
  "instance": "string"
}
Fields
ErrorResponse.status ● int non-null
An integer that represents the HTTP status code of the error response. For example, 400 indicates a "Bad Request" error, 404 indicates a "Not Found" error, and so on.
ErrorResponse.message ● string non-null
A string that provides a brief description of the error that occurred.
ErrorResponse.instance ● string
UUID for look up (eg. in log messages).
Returned by
Get form GET  ● 
Get variable GET  ● 
Save draft task variables POST  ● 
Search task variables POST  ● 
Get task GET  ● 
Search tasks POST  ● 
Assign task PATCH  ● 
Unassign task PATCH  ● 
Complete task PATCH