For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tasks

All Items

get

This endpoint is used to fetch all items in the current organization

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Query parameters
items_per_pageintegerRequired

Items Per Page

pageintegerRequired

Page Number

reversebooleanOptional

Sorting Order

sortstringOptional

Sorting Key

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/
GET /api/tasks/?items_per_page=1&page=1 HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
[
  {
    "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"
    }
  }
]

Creates a new item

post

This endpoint is used to save a new item for the current organization

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body
Other propertiesanyOptional
Responses
201

No response body

No content

post/api/tasks/
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"
  }
}
201

No response body

No content

Gets a tag with the given id

get

This endpoint is used to fetch a item details for the current organization

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Path parameters
idstringRequired
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/{id}/
GET /api/tasks/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}

Edits the item with the given id

put

This endpoint is used to edit an item for the current organization

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Path parameters
idstringRequired
Body
Other propertiesanyOptional
Responses
200

No response body

No content

put/api/tasks/{id}/
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"
}
200

No response body

No content

Deletes the item with the given id

delete

This endpoint is used to delete an item for the current organization

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Path parameters
idstringRequired
Responses
204

No response body

No content

delete/api/tasks/{id}/
DELETE /api/tasks/{id}/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
204

No response body

No content

get

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/activity/
GET /api/tasks/activity/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}
get

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/attachments/
GET /api/tasks/attachments/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/bulk_actions/
POST /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"
  }
}
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/bulk_delete/
POST /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"
  }
}
200Success
{
  "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"
  }
}

Get task by display_id

get

Fetch a task by display_id (e.g. TSK-123). With customer_user_id, system users only: returns the task only if it would be visible to that customer (same rules as my_tasks).

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Query parameters
customer_user_idstringOptional

When the caller has a system role, scope visibility to this customer user

display_idstringRequired

Task display_id (required)

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/by_display_id/
GET /api/tasks/by_display_id/?display_id=text HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/del_file/
POST /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"
  }
}
200Success
{
  "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"
  }
}
get

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/options/
GET /api/tasks/options/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/stop_recurring/
POST /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"
  }
}
200Success
{
  "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"
  }
}
get

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/task_options/
GET /api/tasks/task_options/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/update_position/
POST /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"
  }
}
200Success
{
  "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"
  }
}
post

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Body

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
post/api/tasks/update_recurring/
POST /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"
  }
}
200Success
{
  "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"
  }
}
get

API endpoint that allows tags to be created, viewed, deleted or edited.

Authorizations
AuthorizationstringRequired

JWT token obtained from /api/login/. Pass as: Authorization: Bearer

Responses
200Success
application/json

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.

item_idstring · max: 25Required
display_idstring · max: 10Optional
titlestringRequired
item_typeintegerOptionalDefault: 1
due_datestring · dateOptional
is_completedbooleanOptional
project_idstring · max: 25Optional
milestone_idstring · max: 25Optional
is_privatebooleanOptional
visibilitystringOptionalDefault: shared
is_starredbooleanOptional
is_predefinedbooleanOptional
usersstringRead-onlyRequired
is_riskbooleanOptional
is_blockedbooleanOptional
attachmentsstringRead-onlyRequired
time_track_idstringOptional
creation_timestring · date-timeOptional
last_update_timestring · date-timeOptional
sub_itemsstringRead-onlyRequired
parent_idstring · max: 25 · nullableOptional
is_timer_runningbooleanOptional
total_elapsed_timestringRead-onlyRequired
positionintegerOptional
is_recurringbooleanOptional
parent_recurring_idstring · max: 25 · nullableOptional
recurrence_patternstringRead-onlyRequired
recurrence_statusstringOptionalDefault: active
is_recurring_childstringRead-onlyRequired
custom_fieldsstringRead-onlyRequired
form_idstring · max: 25 · nullableOptional
meeting_summary_idstring · max: 25 · nullableOptional
calendar_idstring · max: 25 · nullableOptional
get/api/tasks/user_list/
GET /api/tasks/user_list/ HTTP/1.1
Host: api.app.projetly.io
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200Success
{
  "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