About this Cloud Hub Solution:
Apacta provides an API that enables integration with external systems, allowing for automation of workflows and synchronization of financial, project, and CRM data.
Endpoint
To communicate with the API, use the /api/v1/endpoint.
Authentication
Authenticate using the URL query ?api_key={api_key}, where {api_key} can be found in the Apacta settings.
Pagination
Pagination is supported on endpoints that return a pagination object. Currently, only page changes are possible using ?page={page_number}.
Search/Filter
This is an experimental feature, and its implementation varies by endpoint.
Ordering
Ordering is an experimental feature implemented on some endpoints using URL queries (e.g., ?sort=field&direction=asc).
Associations
This experimental feature allows embedding related objects using ?include=Contacts,Projects, for example.
Project Files
Two endpoints are available for project files:
- /projects/{project_id}/files: For wall post/form files
- /projects/{project_id}/project_files: For general project files
Error Handling
In case of a 422 (Validation) error, the error object will contain the failed validation properties.
Code Examples
Code examples are available for various programming languages, including:
- Swift
- Java (OkHttp)