Get started with the Elementum API to integrate with your systems and streamline workflow automation.
1. Get Your API Credentials
client_id
and client_secret
. You can generate these from your Elementum workspace:client_secret
as it provides access to your Elementum data and should not be exposed in frontend applications or public repositories.2. Request an Access Token
access_token
.3. Make Your First API Call
Authorization
header as a Bearer token.Let’s try retrieving a list of records. Replace YOUR_ACCESS_TOKEN
, {recordType}
, and {alias}
with your actual data.https://api.elementum.io/v1
https://api.eu.elementum.io/v1
apps
, elements
, tasks
, etc./{recordType}/{alias}
Operator | Description | Example |
---|---|---|
== | Equal | Status==Open |
!= | Not Equal | Status!=Closed |
=gt= | Greater Than | Priority=gt=3 |
=ge= | Greater/Equal | Priority=ge=3 |
=lt= | Less Than | Priority=lt=5 |
=le= | Less/Equal | Priority=le=5 |
=in= | In List | Status=in=(Open,Review) |
=lk= | Like | Title=lk=*urgent* |
;
) - Status==Open;Priority==High
,
) - Status==Open,Status==Closed
Status Code | Meaning |
---|---|
200 OK | The request was successful. |
201 Created | The resource was successfully created. |
202 Accepted | The request was accepted for processing, but has not yet been completed. |
400 Bad Request | The request was improperly formatted or contained invalid parameters. |
401 Unauthorized | Your access token is wrong, expired, or you did not provide one. |
403 Forbidden | You don’t have permission to access the requested resource. |
404 Not Found | The requested resource could not be found. |
429 Too Many Requests | You’re sending too many requests. |
500 Internal Server Error | We had a problem with our server. Try again later. |
429 Too Many Requests
response.
YYYY-MM-DDTHH:MM:SS.SSSZ
v1
, which is specified in the URL of your API requests.
https://api.elementum.io/v1/{endpoint}