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.
attachDocument
| POST | /api/widget/attachDocument | 
Example of payload of data to the api in order to attach a new document to a record in Tracker.
Sample Request:
{
    "trackerrms": {
        "attachDocument": {
            "credentials": {
                "username": "",
                "password": "",
                "oauthtoken": "",
                "apikey": ""
            },
            "file": {
                "filename": "SampleResume.docx",
                "recordType": "R",
                "recordId": 188077,
                "documentType": "resume",
                "primary": "n",
                "data": "UEsDBBQABgAIAAAAIQDfpNJsWgEAACAFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAA..."
            }
        }
    }
}
Sample Response:
{
    "status": 0,
    "message": "success",
    "count": 0
}
Response status codes:
| 0 | success (message will be “created” or “updated”) | 
| 1 | user not found | 
| 2 | user not active | 
| 3 | record found and cannot be overwritten | 
| 99 | Invalid request | 
File Information
"data" is a Base64 encoded binary (the file type will be determined by the "filename" provided).
recordType:
| C | Clients | 
| N | Contacts | 
| L | Leads | 
| O | Opportunities | 
| P | Projects | 
| T | Tickets | 
| R | Resources | 
The recordId must be the Tracker ID for the record to attach the Activity to.
documentType:
| general | Miscellaneous documents | 
| resume | CV/Resume | 
| photo | Contact or Candidate Photo | 
| specification | Job Description/Specification | 
| logo | Conmpany Logo | 
| agencyresume | Formatted CV/Resume |