Please note that the old APIs will be supported until December 31, 2025. |
Create, update, delete, and execute task blueprints. | |
Retrieve, upload, associate, and disassociate project attachments. | |
Retrieve, add, update, and delete leave records. | |
Manage portal profiles, permissions, and default profile settings. | |
Create, update, delete, and assign default user roles. | |
Manage client details, project associations, and updates. | |
Configure module layouts, sections, and fields. |
Pagination Support
GET APIs now support pagination with the following parameters:
page (integer): Specifies the page number to fetch.- per_page (integer): Specifies the number of entries per page.
Example Response:{"page_info": {"page": 1,"per_page": 10,"page_count": 10,"has_next_page": true}}
Sort results in ascending (ASC) or descending (DESC) order using the sort_by parameter.
Example usage:sort_by=ASC(created_time) → Sorts results in ascending order based on created_time.sort_by=DESC(last_modified_time) → Sorts results in descending order based on last_modified_time.Example API Request:GET /api/resource?page=1&per_page=10&sort_by=DESC(last_modified_time)