July 2025 Update
Tracker has released a new REST API - please check out the links for more information:
Interactive API Documentation by Region
- US: https://evousapi.tracker-rms.com/swagger/index.html
- Canada: https://evocaapi.tracker-rms.com/swagger/index.html
- Everywhere else: https://evoglapi.tracker-rms.com/swagger/index.html
The old API connections will still function but there will be no updates
Please reach out via Live Chat, ticket or email clientsupport@tracker-rms.com to have an API Sandbox account created to start testing the new version.
getDocumentFolders
POST |
/api/widget/getDocumentFolders |
Able to request a list of document folders by record type.
Sample Request:
{
"trackerrms": {
"getDocumentFolders": {
"credentials": {
"username": "my.name@domain.com",
"password": "Welcome123",
"oauthtoken": "1bc7ca1e-8b9a-11e9-bc42-526af7764f64"
},
"instructions": {
"recordtype": "O",
"recordid": 1234
}
}
}
}
Sample Response:
{
"status": 0,
"message": "success",
"count": 2,
"results": [
{
"id": 1,
"name": "Contracts”
},
{
"id": 2,
"name": "Registration Documents”
}
]
}
Record Types:
C |
Clients |
N |
Contacts |
L |
Leads |
O |
Opportunities |
P |
Projects |
T |
Tickets |
R |
Resources |
Response status codes:
0 |
success |
1 |
user not found |
2 |
user not active |
99 |
Invalid request |