Task
This endpoint is used to fetch all the tasks in the current organization
Items Per Page
Page Number
Sorting Order
Sorting Key
GET /ux/sd/task/task/?items_per_page=1&page=1 HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
]
This endpoint is used to save a new task for the current organization
No response body
No content
POST /ux/sd/task/task/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 30
{
"task": "task1",
"type": "User"
}
No response body
No content
This endpoint is used to fetch a task details in the current organization
GET /ux/sd/task/task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
This endpoint is used to edit an existing task for the current organization
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
PUT /ux/sd/task/task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1215
{
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
This endpoint is used to delete an existing task for the current organization
No response body
No content
DELETE /ux/sd/task/task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/change-task-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/change-task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
POST /ux/sd/task/task/delete-change-task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1215
{
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
POST /ux/sd/task/task/delete-release-task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1215
{
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/filter/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/options/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/rel-task-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/release-task/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
GET /ux/sd/task/task/req-task-list/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
POST /ux/sd/task/task/save-change-task/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1215
{
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
API endpoint that allows users to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
POST /ux/sd/task/task/save-release-task/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 1215
{
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}
{
"id": "text",
"formatted_due_date": "text",
"formatted_actual_start_date": "text",
"assignee_info": "text",
"formatted_estimated_duration": "text",
"formatted_actual_end_date": "text",
"task_id": "text",
"type": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"display_id": "text",
"ref_id": "text",
"ref_display_id": "text",
"ref_module_id": 1,
"name": "text",
"description": "text",
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"assignee": "text",
"assignee_profile": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"due_date": "2025-08-31T15:56:03.018Z",
"repeat_config": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meta_data": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"is_deleted": true,
"creation_time": "2025-08-31T15:56:03.018Z",
"last_update_time": "2025-08-31T15:56:03.018Z",
"closure_time": "2025-08-31T15:56:03.018Z",
"created_by_id": 1,
"updated_by_id": 1,
"estimated_cost": 1,
"estimated_duration": "2025-08-31T15:56:03.018Z",
"approval_state": 1,
"assigned_to_group": true,
"additional_info": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"check_list": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"closure_note": "text",
"actual_start_date": "2025-08-31T15:56:03.018Z",
"actual_end_date": "2025-08-31T15:56:03.018Z",
"config": {
"keys": "text",
"values": "text",
"queryparam": true
},
"current_assignment_info": {
"keys": "text",
"values": "text",
"queryparam": true
},
"template_info": {
"keys": "text",
"values": "text",
"queryparam": true
}
}