Tasks
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
Items Per Page
Page Number
Sorting Order
Sorting Key
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.
1sharedactiveGET /api/tasks/?items_per_page=1&page=1 HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
]JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
POST /api/tasks/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 286
{
"title": "Creating the Authentication with Google",
"description": "Authentication in the application using Google",
"account_id": "7200912181699809281",
"project_id": "7200912182903574529",
"milestone_id": "7204399057333129217",
"tags": [
"Authentication",
"Google Auth"
],
"owner": {
"name": "Shyam"
}
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
PUT /api/tasks/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 54
{
"title": "UX Design",
"description": "A tag for design"
}No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
No response body
No content
DELETE /api/tasks/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No response body
No content
JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/activity/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/attachments/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/bulk_actions/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/bulk_delete/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
When the caller has a system role, scope visibility to this customer user
Task display_id (required)
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.
1sharedactiveGET /api/tasks/by_display_id/?display_id=text HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/del_file/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/options/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/stop_recurring/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/task_options/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/update_position/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveSerializer 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.
1sharedactivePOST /api/tasks/update_recurring/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 898
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"is_risk": true,
"is_blocked": true,
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"parent_id": "text",
"is_timer_running": true,
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_status": "active",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}JWT token obtained from /api/login/. Pass as: Authorization: Bearer
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.
1sharedactiveGET /api/tasks/user_list/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"item_id": "text",
"display_id": "text",
"title": "text",
"item_type": 1,
"due_date": "2026-01-01",
"tags": [],
"is_completed": true,
"priority": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"status": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"owner": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"project_id": "text",
"milestone_id": "text",
"is_private": true,
"visibility": "shared",
"is_starred": true,
"is_predefined": true,
"users": "text",
"is_risk": true,
"is_blocked": true,
"attachments": "text",
"time_track_id": "text",
"creation_time": "2026-01-01T00:00:00.000Z",
"last_update_time": "2026-01-01T00:00:00.000Z",
"sub_items": "text",
"parent_id": "text",
"is_timer_running": true,
"total_elapsed_time": "text",
"position": 1,
"is_recurring": true,
"parent_recurring_id": "text",
"recurrence_pattern": "text",
"recurrence_status": "active",
"is_recurring_child": "text",
"custom_fields": "text",
"form_id": "text",
"form_structure": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"form_responses": {
"ANY_ADDITIONAL_PROPERTY": "anything"
},
"meeting_summary_id": "text",
"calendar_id": "text",
"external_map": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}Last updated