{"info":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","description":"<html><head></head><body><h2 id=\"overview\">Overview</h2>\n<p>Trackops offers a REST API to programmatically access various data throughout the system, and optionally connect your Trackops data to other 3rd party services. Keep in mind that while we do offer API functionality to our customers, it is your responsibility to respect our usage restrictions and responsibilities. Please be a good API citizen and do not abuse or misuse API functionality. If at any time, we determine that you are abusing API privileges, we reserve the right to suspend or permanently revoke API access.</p>\n<p>For questions or assistance related to the developer API, please contact support at <a href=\"https://mailto:support@trackops.com\">support@trackops.com</a> and we will be able to assist you with implementation specifics.</p>\n<h2 id=\"access-points\">Access Points</h2>\n<p>Accessing the Trackops REST API is as simple as <a href=\"https://support.trackops.com/hc/en-us/articles/212338823\">activating API access</a>, and connecting to a fully qualified API end point via the subdomain on your account.</p>\n<p><strong>Example Access Point (getting a client list):</strong></p>\n<p><code>https://{subdomain}.viewcases.com/api/v1/clients</code></p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The Trackops API is an SSL-only API, meaning that non-SSL connections are not allowed. Access to the API requires an active <em>Full Access</em> employee username, and your company <a href=\"https://support.trackops.com/hc/en-us/articles/212338823\">API Token</a>. Accessing the API on behalf of a <em>Limited Access</em> employees or client contacts is not permitted.</p>\n<p>Authentication takes place in the form of a specially formatted username in the form of \"<em>{username}/token</em>\", in conjunction with an API token.</p>\n<p><strong>Example of basic authentication:</strong></p>\n<p><code>{username}/token:{api_token}</code></p>\n<p><strong>Note:</strong> History logs will be recorded using the user information that corresponds to username supplied. If you need to specifically identify API activity, it is best practice to perform API calls using a separate <em>Full Access</em> employee account that is easy to identify as such.</p>\n<p>If you aren't sure how to test connectivity to the Trackops API, we recommend the use of <a href=\"http://en.wikipedia.org/wiki/CURL\">cURL</a>. cURL is a common cross-platform tool used to connect to transfer data through various protocols.</p>\n<p><strong>Generic Example using cURL:</strong></p>\n<p><code>curl -u {username}/token:{api_token} https://{subdomain}.viewcases.com/api/v1/...</code></p>\n<p><strong>Specific Example using cURL (fetching a client list):</strong></p>\n<p><code>curl -u samspade/token:d29d3136-1251-5041-9e1c-428c77edb64d https://mycompany.viewcases.com/api/v1/clients</code></p>\n<h2 id=\"rate-limiting\">Rate Limiting</h2>\n<p>This API is rate limited, meaning that you must throttle your requests. It is best practice to limit requests to approximately 1 request per second to avoid rate limiting. If too many requests are made at once, you will receive an HTTP <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">429 Too Many Requests</a> response, along with the supporting error message.</p>\n<p><strong>Tip:</strong> If you routinely require access to many records at once for reporting or other purposes, it is best practice to routinely cache new and updated records to a local data store. For more information, please read about <em>Caching Collection Data</em> below.</p>\n<h2 id=\"responses\">Responses</h2>\n<p>All responses from the API are returned in <a href=\"http://en.wikipedia.org/wiki/Json\">JSON</a> format. A typical response will contain a <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#2xx_Success\">200 OK</a> status, indicating a successful response. Should an error occur, the response will contain standard <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">HTTP Status Codes</a> to indicate the problem. In most cases, the response will also include an error message or other information to provide more insight about the error. The most common error is <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">404 Not Found</a>, indicating that the URL you are attempting to access is incorrect or has a typo.</p>\n<p><strong>Note:</strong> All responses that include dates with time (i.e. <em>timestamp</em> fields) are served in <a href=\"http://en.wikipedia.org/wiki/UTC\">UTC</a>. It is up to you to convert times to your own timezone if so desired.</p>\n<h2 id=\"collections\">Collections</h2>\n<p>Collections are responses that include multiple records. To improve performance and manageability, collections are limited to 100 records per page. You can use the <em>per_page</em> request parameter to limit results to a smaller number, and the <em>page</em> parameter to jump to a specific page of the results.</p>\n<p><strong>Tip:</strong> If a collection is empty, or the amount of records returned is less than the <em>per_page</em> parameter, this indicates there are no more records to fetch based on the specified search criteria.</p>\n<p>Collection results can also be sorted in ascending (asc) or descending (desc) order through the use of the <em>dir</em> parameter. By default, collections are always returned in descending order (newest records at the top).</p>\n<p><strong>Example of a Collection Sorted by Direction (sorted ascending)</strong></p>\n<p><code>curl -u {username}/token:{api_token} \"https://{subdomain}.viewcases.com/api/v1/case/updates?dir=asc\"</code></p>\n<h2 id=\"searching-collections\">Searching Collections</h2>\n<p>Using request parameters, you can filter your requests to return a specific subset of records. Each request object has a specific set of available request parameters that can be used. For more information on specific parameters available for a query, examine the documentation for the specific object you are interested in (listed under the Objects section below).</p>\n<p><strong>Note:</strong> All collection based queries recognize the <em>per_page,</em> <em>page,</em> and <em>dir</em> parameters.</p>\n<p>Passing invalid request parameters to the resource will result in a <a href=\"http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#4xx_Client_Error\">400 Bad Request</a> response.</p>\n<p>If your search query contains strings, they must be <a href=\"http://en.wikipedia.org/wiki/URL_encoding\">URL encoded</a> for the API to properly parse them.</p>\n<p><strong>Example cURL Request with Parameters:</strong></p>\n<p><code>curl -u {username}/token:{api_token} \"https://{subdomain}.viewcases.com/api/v1/clients?name=ACME+Insurance\"</code></p>\n<h2 id=\"caching-collection-data\">Caching Collection Data</h2>\n<p>The Trackops REST API is <em>not</em> designed to provide a live interface for your staff, customers, or otherwise from outside the standard Trackops user interface. If you determine that you require data in large quantities, or in a more readily available fashion than the API provides, it is best practice to periodically cache/store your query results to a local store for future use.</p>\n<p>For example, if you routinely require access to thousands of records at a time in order to compile a report, it is best practice to periodically query (e.g. on a daily basis) and store the latest results in a local cache, database, or flat file storage so the information is readily available for your use case.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"25604869","collectionId":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","publishedId":"2sBXc7K4UY","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"4580e6"},"publishDate":"2026-02-03T19:00:21.000Z"},"item":[{"name":"Case Flags","item":[{"name":"Get a case flag","id":"3581e70a-8e9d-4221-bddf-4e4d86cf1de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags/:case_flag_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags",":case_flag_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case flag</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_flag_id"}]}},"response":[{"id":"bd5545e7-7222-4a75-a61a-dadc63af5d13","name":"Get a case flag","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case_flags/:case_flag_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case_flags",":case_flag_id"],"variable":[{"key":"case_flag_id","value":"<integer>","description":"ID of the case flag"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Rush\",\n    \"color\": \"#fbb1b1\",\n    \"reference_id\": \"rush\",\n    \"notes\": \"Priority handling is required\",\n    \"description\": \"Priority handling is required\"\n}"}],"_postman_id":"3581e70a-8e9d-4221-bddf-4e4d86cf1de5"},{"name":"List case flags","id":"98293954-a9c4-4d9a-bb81-3187f90af22d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ff180998-86f0-49ef-ac5f-423a6a94092a","name":"List case flags","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case_flags"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Suspected Fraud\",\n        \"color\": \"#fbc75b\",\n        \"reference_id\": \"fraud\",\n        \"notes\": \"Evidence of fraud determined\",\n        \"description\": \"Evidence of fraud determined\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Rush\",\n        \"color\": \"#fbb1b1\",\n        \"reference_id\": \"rush\",\n        \"notes\": \"Priority handling is required\",\n        \"description\": \"Priority handling is required\"\n    }\n]"}],"_postman_id":"98293954-a9c4-4d9a-bb81-3187f90af22d"},{"name":"Search case flags","id":"b1c4dbdd-dd5f-4813-8307-8051a8e002fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_flags?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_flags"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case flag</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case flag</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case flag </p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"c4a037b1-57f7-4900-a1f8-0caff13ff19e","name":"Search case flags","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_flags?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_flags"],"query":[{"key":"id","value":"<integer>","description":"ID of the case flag"},{"key":"name","value":"<string>","description":"Name of the case flag"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case flag "},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Suspected Fraud\",\n        \"color\": \"#fbc75b\",\n        \"reference_id\": \"fraud\",\n        \"notes\": \"Evidence of fraud determined\",\n        \"description\": \"Evidence of fraud determined\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Rush\",\n        \"color\": \"#fbb1b1\",\n        \"reference_id\": \"rush\",\n        \"notes\": \"Priority handling is required\",\n        \"description\": \"Priority handling is required\"\n    }\n]"}],"_postman_id":"b1c4dbdd-dd5f-4813-8307-8051a8e002fa"}],"id":"0dda7cee-cec2-4695-8ad6-00337cbf1aed","description":"<p>Case flags are special colorized tags that indicate special handling on cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBH8BqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJVaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzcwMjMtSG93LXRvLXNldHVwLUNhc2UtRmxhZ3MGOwhUOg5zZWFyY2hfaWRJIikyNzU4ZDVjZi1jZDFmLTRjMTctYTRmZS0yOGI3YjBkMWIyMjkGOwhGOglyYW5raQY6C2xvY2FsZUkiCmVuLXVzBjsIVDoKcXVlcnlJIg9jYXNlIGZsYWdzBjsIVDoScmVzdWx0c19jb3VudGkBqw%3D%3D--017eacc6797aaec80a0f4b938d17e12a0bf041f0\">How to set up case flags</a></p>\n","_postman_id":"0dda7cee-cec2-4695-8ad6-00337cbf1aed","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Regions","item":[{"name":"Get a case region","id":"cc13a24d-a18e-4570-9573-734af73394e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions/:case_region_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions",":case_region_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_region_id"}]}},"response":[{"id":"3d9261fc-c388-400e-9a03-d3c67f05040d","name":"Get a case region","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case_regions/:case_region_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case_regions",":case_region_id"],"variable":[{"key":"case_region_id","value":"<integer>","description":"ID of the case region"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Local\",\n    \"reference_id\": \"local\",\n    \"is_default\": false,\n    \"notes\": \"Inside our licensed coverage area\",\n    \"description\": \"Inside our licensed coverage area\"\n}"}],"_postman_id":"cc13a24d-a18e-4570-9573-734af73394e3"},{"name":"List case regions","id":"3d48b1df-68c0-4db0-bfc1-b954bdfb24d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"278075e7-321e-49a4-ad06-cf2797d50c37","name":"List case regions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case_regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"name\": \"Unassigned\",\n        \"reference_id\": \"\",\n        \"is_default\": true,\n        \"notes\": \"Case region to be determined\",\n        \"description\": \"Case region to be determined\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Out of Area\",\n        \"reference_id\": \"out-of-area\",\n        \"is_default\": false,\n        \"notes\": \"Outside our licensed coverage area\",\n        \"description\": \"Outside our licensed coverage area\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\",\n        \"is_default\": false,\n        \"notes\": \"Inside our licensed coverage area\",\n        \"description\": \"Inside our licensed coverage area\"\n    }\n]"}],"_postman_id":"3d48b1df-68c0-4db0-bfc1-b954bdfb24d6"},{"name":"Search case regions","id":"a384f605-c8c2-44b7-9f64-0b0f31e6d53c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_regions?id=<integer>&name=<string>&reference_id=<string>&is_default=<bool>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_regions"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case region</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case region</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>If the case region is set as default</p>\n","type":"text/plain"},"key":"is_default","value":"<bool>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"682b6253-06ca-4233-ad1b-f1ed450f4c96","name":"Search case regions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_regions?id=<integer>&name=<string>&reference_id=<string>&is_default=<bool>&page=<integer>","host":["/api/v1"],"path":["case_regions"],"query":[{"key":"id","value":"<integer>","description":"ID of the case region"},{"key":"name","value":"<string>","description":"Name of the case region"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case region"},{"key":"is_default","value":"<bool>","description":"If the case region is set as default"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"name\": \"Unassigned\",\n        \"reference_id\": \"\",\n        \"is_default\": true,\n        \"notes\": \"Case region to be determined\",\n        \"description\": \"Case region to be determined\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Out of Area\",\n        \"reference_id\": \"out-of-area\",\n        \"is_default\": false,\n        \"notes\": \"Outside our licensed coverage area\",\n        \"description\": \"Outside our licensed coverage area\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\",\n        \"is_default\": false,\n        \"notes\": \"Inside our licensed coverage area\",\n        \"description\": \"Inside our licensed coverage area\"\n    }\n]"}],"_postman_id":"a384f605-c8c2-44b7-9f64-0b0f31e6d53c"}],"id":"5a1d04cb-6922-49ba-b53d-7fb83d49c33a","description":"<p>Case regions categorize cases by geographical areas or sales territories.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337003-Customizing-your-Case-Regions\">Customizing your case regions</a></p>\n","_postman_id":"5a1d04cb-6922-49ba-b53d-7fb83d49c33a","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Requests","item":[{"name":"Case Request Uploads (Files)","item":[{"name":"Get a file upload URL","id":"70bb7748-a8e5-440b-95b5-99883fc7f9b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/requests/:case_request_id/upload_url?filename=whiteboard_soft.mpga","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_request_id","upload_url"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Name of the file (filename.ext) to be uploaded </p>\n","type":"text/plain"},"key":"filename","value":"state.jpg"}],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_request_id"}]}},"response":[{"id":"f7eb2c03-86ab-41be-8a29-354cf1bfbe3a","name":"Get a file upload URL","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/case/requests/:case_request_id/upload_url?filename=<string>","host":["/api/v1"],"path":["case","requests",":case_request_id","upload_url"],"query":[{"key":"filename","value":"<string>","description":"Name of the file (filename.ext) to be uploaded "}],"variable":[{"key":"case_request_id","value":"<integer>","description":"ID of the case request"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"url\": \"https://url_to_upload_file/integration_response_path.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJMUJB5KQOATHWVNQ%2F20260527%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260527T154851Z&X-Amz-SignedHeaders=host&X-Amz-Expires=1800&X-Amz-Signature=73ea90f25ffc39f89a3eb37ca5e95b9c1c0c254356689eb88a0d6088b2cb11d8\"\n}"}],"_postman_id":"70bb7748-a8e5-440b-95b5-99883fc7f9b2"},{"name":"Process an uploaded file","id":"cda13856-5cbd-46ba-8abc-9a195667d5c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"wireless_engineer.mp2\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Velit labore error consequuntur sapiente et sed assumenda.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests/:case_request_id/process_upload","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_request_id","process_upload"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_request_id"}]}},"response":[{"id":"61c9e2dd-1fb4-449c-8b95-4f124804fe52","name":"Process an uploaded file","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"communications_strategist.png\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Aut voluptatem animi omnis voluptatibus quo assumenda ipsum consequatur sint.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/case/requests/:case_request_id/process_upload","host":["/api/v1"],"path":["case","requests",":case_request_id","process_upload"],"variable":[{"key":"case_request_id","value":"<integer>","description":"ID of the case request"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":":status","value":400},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"content-length","value":"83"},{"key":"date","value":"Wed, 27 May 2026 15:51:14 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"access_group_id\": \"2\",\n    \"casefile_id\": \"3\",\n    \"name\": \"Witness Interview.mp3\",\n    \"filename\": \"witness_interview.mp3\",\n    \"size\": \"11650187\",\n    \"file_path\": \"/case/3\",\n    \"mime\": \"audio/mpeg\",\n    \"reference_number\": null,\n    \"notes\": \"Natus nemo fugiat optio vitae labore ut veniam tenetur.\",\n    \"created_at\": \"2026-02-03 15:55:22\",\n    \"processed_at\": null,\n    \"updated_at\": \"2026-02-03 15:55:22\",\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"updates_list\": [],\n    \"path\": \"/case/3\",\n    \"url\": \"https://url_to_uploaded_file/witness_interview.mp3?v=1&response-content-disposition=attachment&Expires=1770148523&Signature=ggXlJcj65wrhNuMb~cCELa7uvgu~pzMiXaI4gcnsX~y7alNa54--0Xqqa7JXA3r9ejTLZNLd0RT0ibWbZjXJUpLIwkP~B244K5U-Km5-z01MS7HUQQKtW9ZEFw-cVzKLjw0UuZl2lKC0jXC7JuBdNlJxlzZVbFKjDLVhBUFti6VYpEm45BnigNOp5J~8gjPGr3hgWZ1FuCTuRXd7gyHIOOhDJoajCXb2Heke8iVX2sE9G4Hr7RysJvPeZN7YSlQUOnZ3yJ5Vuvy59wB4p0QdkbgD013-ePbKuE7Y0mycPA4rty1lhuiSTA02WkUi7pQVGxYgq05KuFrC7SVJexvuoQ__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n    \"url_expiration\": \"2026-02-03 19:55:23\"\n}"}],"_postman_id":"cda13856-5cbd-46ba-8abc-9a195667d5c8"}],"id":"0e37b0a3-7887-4751-bc2b-7a6de6d31c33","_postman_id":"0e37b0a3-7887-4751-bc2b-7a6de6d31c33","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a case request","id":"9a097e42-d4bf-4a97-9d68-246629c45db5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests/:case_reguest_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_reguest_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_reguest_id"}]}},"response":[{"id":"46c3bf4e-fe50-44e4-9882-fe133fdcfec1","name":"Get a case request","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"https://example.viewcases.com/api/v1/case/requests/:case_reguest_id","protocol":"https","host":["example","viewcases","com"],"path":["api","v1","case","requests",":case_reguest_id"],"variable":[{"key":"case_reguest_id","value":"<integer>","description":"ID of the case request"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-28\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": [],\n        \"contact\": []\n    },\n    \"reference_value_1\": \"ABC-123456\",\n    \"reference_value_2\": \"SIU-123456\",\n    \"reference_value_3\": null,\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Denver\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n    \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n    \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:28:46\",\n    \"referral_source_id\": null,\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:28:46\",\n    \"updated_at\": \"2026-02-02 20:42:32\",\n    \"last_update_at\": \"2026-02-02 20:28:46\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00001\",\n    \"case_or_request_number\": \"REQ-00001\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"9a097e42-d4bf-4a97-9d68-246629c45db5"},{"name":"List case requests","id":"2e753f40-b5da-4fd3-a17e-c920708081e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"830c0965-6963-4339-b48c-6b934638fb31","name":"List case requests","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"https://example.viewcases.com/api/v1/case/requests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-28\",\n        \"request_status\": \"1\",\n        \"request_data\": {\n            \"client\": [],\n            \"contact\": []\n        },\n        \"reference_value_1\": \"ABC-123456\",\n        \"reference_value_2\": \"SIU-123456\",\n        \"reference_value_3\": null,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Denver\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n        \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n        \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"updated_at\": \"2026-02-02 20:42:32\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": [],\n        \"request_status_label\": \"Pending\"\n    }\n]"}],"_postman_id":"2e753f40-b5da-4fd3-a17e-c920708081e9"},{"name":"Search case requests","id":"689aa8f0-5269-4b52-89f0-0e6804d4d0b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/requests?id=<integer>&case_request_number=<string>&client=<integer>&location=<integer>&case_region=<integer>&case_status=<integer>&primary_contact=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>The case request number</p>\n","type":"text/plain"},"key":"case_request_number","value":"<string>"},{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"key":"location","value":"<integer>"},{"description":{"content":"<p>ID of the case region</p>\n","type":"text/plain"},"key":"case_region","value":"<integer>"},{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"key":"case_status","value":"<integer>"},{"description":{"content":"<p>ID of the primary client contact</p>\n","type":"text/plain"},"key":"primary_contact","value":"<integer>"},{"description":{"content":"<p>ID of the primary subject</p>\n","type":"text/plain"},"key":"primary_subject","value":"<integer>"},{"description":{"content":"<p>Value of reference number 1</p>\n","type":"text/plain"},"key":"reference_value_1","value":"<string>"},{"description":{"content":"<p>Value of reference number 2</p>\n","type":"text/plain"},"key":"reference_value_2","value":"<string>"},{"description":{"content":"<p>Value of reference number 3</p>\n","type":"text/plain"},"key":"reference_value_3","value":"<string>"},{"description":{"content":"<p>ID of the workflow</p>\n","type":"text/plain"},"key":"workflow","value":"<integer>"},{"description":{"content":"<p>ISO datestamp created from</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp created to</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp updated from</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO datestamp updated to</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"4f1b390c-75b3-4f80-a71f-bf268148ffd0","name":"Search case requests","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/requests?id=<integer>&case_request_number=<string>&client=<integer>&location=<integer>&case_region=<integer>&case_status=<integer>&primary_contact=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["case","requests"],"query":[{"key":"id","value":"<integer>","description":"ID of the case request"},{"key":"case_request_number","value":"<string>","description":"The case request number"},{"key":"client","value":"<integer>","description":"ID of the client"},{"key":"location","value":"<integer>","description":"ID of the client location"},{"key":"case_region","value":"<integer>","description":"ID of the case region"},{"key":"case_status","value":"<integer>","description":"ID of the case status"},{"key":"primary_contact","value":"<integer>","description":"ID of the primary client contact"},{"key":"primary_subject","value":"<integer>","description":"ID of the primary subject"},{"key":"reference_value_1","value":"<string>","description":"Value of reference number 1"},{"key":"reference_value_2","value":"<string>","description":"Value of reference number 2"},{"key":"reference_value_3","value":"<string>","description":"Value of reference number 3"},{"key":"workflow","value":"<integer>","description":"ID of the workflow"},{"key":"created_from","value":"<datestamp>","description":"ISO datestamp created from"},{"key":"created_to","value":"<datestamp>","description":"ISO datestamp created to"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO datestamp updated from"},{"key":"updated_to","value":"<datestamp>","description":"ISO datestamp updated to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-28\",\n        \"request_status\": \"1\",\n        \"request_data\": {\n            \"client\": [],\n            \"contact\": []\n        },\n        \"reference_value_1\": \"ABC-123456\",\n        \"reference_value_2\": \"SIU-123456\",\n        \"reference_value_3\": null,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Denver\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"admin_notes\": \"Administrative notes, not visible to the client, will be entered here.\",\n        \"notes\": \"Notes and instructions related to this case request will be entered here.\",\n        \"scheduling_notes\": \"Any specific notes related to scheduling (specific days, dates, or times) will be entered here.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"updated_at\": \"2026-02-02 20:42:32\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": [],\n        \"request_status_label\": \"Pending\"\n    }\n]"}],"_postman_id":"689aa8f0-5269-4b52-89f0-0e6804d4d0b5"},{"name":"Create a case request","id":"9355565b-efbd-4029-8d70-156b4a5ea25e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_type_id\": \"<integer>\",\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",    \n    \"client\": {\n        \"name\": \"Littel Inc\",\n        \"address_1\": \"1133 Yundt Center\",\n        \"city\": \"South Emmie\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Odie\",\n        \"last_name\": \"Carroll\",\n        \"email\": \"Andres_Gusikowski@yahoo.com\",\n        \"phone_office\": \"569-786-7147\",\n        \"phone_mobile\": \"581-927-8018\",\n        \"phone_fax\": \"355-905-3119\"\n    },\n    \"reference_value_1\": \"tempore maiores doloremque\",\n    \"reference_value_2\": \"et et quod\",\n    \"reference_value_3\": \"iure omnis explicabo\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Padbergland\",\n    \"budget_money\": \"755\",\n    \"budget_hours\": \"691\",\n    \"notes\": \"Veritatis est reprehenderit. Sit quia earum ex nesciunt molestiae nesciunt consequatur repellendus nulla. Atque quidem aut. Qui deleniti omnis.\",\n    \"scheduling_notes\": \"Assumenda facere sunt nobis.\",\n    \"admin_notes\": \"Debitis architecto quo et harum cupiditate est et.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>],\n    \"subjects\": [\n    \t{\n    \t\t\"subject_type_id\": \"<integer>\",\n    \t\t\"is_primary\": true,\n    \t\t\"is_pinned\": true,\n    \t\t\"custom_fields\": [\n    \t\t\t{\n    \t\t\t  \"id\": \"<integer>\",\n    \t\t\t  \"value\": {\n    \t\t\t  \t\"first_name\": \"Briana\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Braun\"\n    \t\t\t  }\n    \t\t\t}\n            ]\n        }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"e6384bfd-3959-46aa-8ed1-536cbd8da717","name":"Create a case request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_type_id\": \"<integer>\",\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",    \n    \"client\": {\n        \"name\": \"Windler - Friesen\",\n        \"address_1\": \"34569 Milford Islands\",\n        \"city\": \"Addisonfurt\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Carlotta\",\n        \"last_name\": \"Simonis\",\n        \"email\": \"Ryley.Howell@gmail.com\",\n        \"phone_office\": \"742-201-2630\",\n        \"phone_mobile\": \"379-499-0180\",\n        \"phone_fax\": \"887-301-8332\"\n    },\n    \"reference_value_1\": \"omnis nihil nostrum\",\n    \"reference_value_2\": \"autem facere et\",\n    \"reference_value_3\": \"saepe provident commodi\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Rockford\",\n    \"budget_money\": \"898\",\n    \"budget_hours\": \"325\",\n    \"notes\": \"Eligendi et iusto est aspernatur atque nam omnis incidunt voluptas. Voluptatem explicabo consectetur cupiditate nihil minima distinctio possimus vel ea. Dolorum nihil cumque earum modi dolore. Recusandae aut perspiciatis quidem quasi reprehenderit quaerat placeat est. Voluptas maxime voluptatem. Et blanditiis perferendis ipsam distinctio.\",\n    \"scheduling_notes\": \"Sed aperiam vel non doloremque aut quia repellendus velit.\",\n    \"admin_notes\": \"Sit dolor corrupti hic dolorem veniam qui mollitia excepturi nesciunt.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>],\n    \"subjects\": [\n    \t{\n    \t\t\"subject_type_id\": \"<integer>\",\n    \t\t\"is_primary\": true,\n    \t\t\"is_pinned\": true,\n    \t\t\"custom_fields\": [\n    \t\t\t{\n    \t\t\t  \"id\": \"<integer>\",\n    \t\t\t  \"value\": {\n    \t\t\t  \t\"first_name\": \"Loyal\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Zemlak\"\n    \t\t\t  }\n    \t\t\t}\n            ]\n        }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"series_number\": \"2\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": {\n            \"name\": \"Torp, Satterfield and Cassin\",\n            \"address_1\": \"044 Collier Loaf\",\n            \"city\": \"South Ginotown\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"address_2\": \"\",\n            \"address_3\": \"\"\n        },\n        \"contact\": {\n            \"first_name\": \"Koby\",\n            \"last_name\": \"Renner\",\n            \"email\": \"Kaylah99@yahoo.com\",\n            \"phone_office\": \"942-399-2809\",\n            \"phone_mobile\": \"464-390-4721\",\n            \"phone_fax\": \"697-811-0208\",\n            \"middle_name\": \"\",\n            \"phone_home\": \"\",\n            \"phone_mobile_carrier\": \"\"\n        }\n    },\n    \"reference_value_1\": \"sint ex illo\",\n    \"reference_value_2\": \"aut incidunt non\",\n    \"reference_value_3\": \"iusto quia ad\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Beerville\",\n    \"budget_money\": \"934.00\",\n    \"budget_hours\": \"515.00\",\n    \"admin_notes\": \"Sit hic autem.\",\n    \"notes\": \"Et velit ipsa quae reiciendis ea et. Quae error quibusdam assumenda assumenda. Officia facilis quae assumenda suscipit sed id est. Possimus sed autem ut temporibus. Tempore maiores doloremque fugit nesciunt.\",\n    \"scheduling_notes\": \"Officia et iste velit incidunt ut est sunt temporibus sed.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:48:42\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:48:42\",\n    \"updated_at\": \"2026-02-02 20:48:42\",\n    \"last_update_at\": \"2026-02-02 20:48:42\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00002\",\n    \"case_or_request_number\": \"REQ-00002\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": null,\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\"\n    },\n    \"PrimaryContact\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"9355565b-efbd-4029-8d70-156b4a5ea25e"},{"name":"Update a case request","id":"03f8bae3-a603-460a-beab-ec2c84f5b945","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",\n    \"client\": {\n        \"name\": \"Konopelski Group\",\n        \"address_1\": \"0608 Jairo Loaf\",\n        \"city\": \"Tessiefurt\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Noemie\",\n        \"last_name\": \"Bechtelar\",\n        \"email\": \"Mohammed19@yahoo.com\",\n        \"phone_office\": \"826-746-8744\",\n        \"phone_mobile\": \"713-643-7706\",\n        \"phone_fax\": \"612-596-5202\"\n    },\n    \"reference_value_1\": \"sunt ex magnam\",\n    \"reference_value_2\": \"est sit quaerat\",\n    \"reference_value_3\": \"nemo est sed\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"East Velvaberg\",\n    \"notes\": \"Nihil et totam. Aut consequuntur rerum neque veritatis. Ad necessitatibus voluptatem sint quos. Et laudantium fugit repellendus dolorem repudiandae deleniti suscipit excepturi ex. Rem est pariatur enim incidunt qui nulla dolorem. Sed molestias cupiditate.\",\n    \"scheduling_notes\": \"Tempore sunt rem illo laboriosam iusto corporis molestiae.\",\n    \"admin_notes\": \"Saepe veniam repellendus suscipit sit occaecati ut.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/requests/:case_request_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","requests",":case_request_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case request</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_request_id"}]}},"response":[{"id":"2833af0e-595e-4ac0-844e-ebc209227b95","name":"Update a case request","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile_request\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"referral_source_id\": \"<integer>\",\n    \"client\": {\n        \"name\": \"Trantow, Kulas and Funk\",\n        \"address_1\": \"544 Schulist Park\",\n        \"city\": \"Santa Cruz\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Einar\",\n        \"last_name\": \"Gibson\",\n        \"email\": \"Libby_Dickens16@hotmail.com\",\n        \"phone_office\": \"710-342-3127\",\n        \"phone_mobile\": \"740-790-7651\",\n        \"phone_fax\": \"448-896-7577\"\n    },\n    \"reference_value_1\": \"sint est accusantium\",\n    \"reference_value_2\": \"ea nesciunt placeat\",\n    \"reference_value_3\": \"voluptates voluptate soluta\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"West Missouri\",\n    \"notes\": \"Quam praesentium error. Veritatis mollitia aliquid necessitatibus mollitia aut. Et ut impedit modi qui doloremque ut. Libero dolorum ut tempore est eveniet dolore odio impedit. At ducimus et aliquid ab consequatur impedit praesentium ad.\",\n    \"scheduling_notes\": \"Eligendi dolor non et temporibus dolorem.\",\n    \"admin_notes\": \"Repellat dolor et itaque labore voluptates deleniti.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/case/requests/:case_request_id","host":["/api/v1"],"path":["case","requests",":case_request_id"],"variable":[{"key":"case_request_id","value":"<integer>","description":"ID of the case request"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"request_status\": \"1\",\n    \"request_data\": {\n        \"client\": {\n            \"name\": \"Schultz LLC\",\n            \"address_1\": \"2256 Kay Canyon\",\n            \"city\": \"Spokane\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"address_2\": \"\",\n            \"address_3\": \"\"\n        },\n        \"contact\": {\n            \"first_name\": \"Scotty\",\n            \"last_name\": \"Deckow\",\n            \"email\": \"Libbie_Deckow14@hotmail.com\",\n            \"phone_office\": \"708-825-0361\",\n            \"phone_mobile\": \"444-634-2741\",\n            \"phone_fax\": \"862-745-5536\",\n            \"middle_name\": \"\",\n            \"phone_home\": \"\",\n            \"phone_mobile_carrier\": \"\"\n        }\n    },\n    \"reference_value_1\": \"placeat voluptates quis\",\n    \"reference_value_2\": \"ut non sit\",\n    \"reference_value_3\": \"nulla quis vero\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Elveraburgh\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n    \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n    \"scheduling_notes\": \"Est soluta natus saepe non.\",\n    \"is_request\": true,\n    \"last_status_change_at\": \"2026-02-02 20:28:46\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"created_at\": \"2026-02-02 20:28:46\",\n    \"updated_at\": \"2026-02-02 20:48:57\",\n    \"last_update_at\": \"2026-02-02 20:28:46\",\n    \"rating_average\": null,\n    \"request_number\": \"REQ-00001\",\n    \"case_or_request_number\": \"REQ-00001\",\n    \"route_prefix\": \"case_request\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": [],\n    \"request_status_label\": \"Pending\"\n}"}],"_postman_id":"03f8bae3-a603-460a-beab-ec2c84f5b945"}],"id":"a23638d0-a2e6-4d5e-8824-b07e2b5c01ab","description":"<p>Case requests provide an interface new case referrals that may be approved and converted to a case. Case requests may also be declined for various reasons. If you always intend to approve case requests, consider creating cases directly.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338163-What-are-Case-Requests\">What are case requests?</a></p>\n","_postman_id":"a23638d0-a2e6-4d5e-8824-b07e2b5c01ab","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Reviews","item":[{"name":"Get a case review","id":"862668b5-e160-459a-b6e9-63fe68d7f484","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews/:case_review_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews",":case_review_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case review</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_review_id"}]}},"response":[{"id":"259ccaeb-6749-490b-8750-57c362f123af","name":"Get a case review","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/reviews/:case_review_id","host":["/api/v1"],"path":["case","reviews",":case_review_id"],"variable":[{"key":"case_review_id","value":"<integer>","description":"ID of the case review"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_date\": \"2026-02-07\",\n    \"rating_average\": null,\n    \"completed_at\": null,\n    \"created_at\": \"2026-02-02 21:02:29\",\n    \"updated_at\": \"2026-02-02 21:02:29\",\n    \"notes\": \"N/A\",\n    \"entry_status\": \"submitted\",\n    \"Review\": {\n        \"id\": \"1\",\n        \"name\": \"Daily Surveillance Review\",\n        \"review_type\": \"1\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"CompletedBy\": null,\n    \"ReviewEntryFieldGroup\": {\n        \"56\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"56\",\n            \"value\": \"15\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"56\",\n                \"name\": \"Minutes of Video\",\n                \"field_type_id\": \"11\"\n            }\n        },\n        \"57\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"57\",\n            \"value\": \"Sunny\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"57\",\n                \"name\": \"Weather\",\n                \"field_type_id\": \"2\"\n            }\n        },\n        \"58\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"58\",\n            \"value\": \"1\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"58\",\n                \"name\": \"Opportunity for Video\",\n                \"field_type_id\": \"13\"\n            }\n        },\n        \"59\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"59\",\n            \"value\": \"Recommend another day of surveillance next weekend.\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"59\",\n                \"name\": \"Recommendations\",\n                \"field_type_id\": \"6\"\n            }\n        },\n        \"60\": {\n            \"review_entry_id\": \"1\",\n            \"field_id\": \"60\",\n            \"value\": \"0\",\n            \"value_date\": \"2026-02-07\",\n            \"rating_weight\": \"1.00\",\n            \"Field\": {\n                \"id\": \"60\",\n                \"name\": \"Evidence of Fraud\",\n                \"field_type_id\": \"12\"\n            }\n        }\n    }\n}"}],"_postman_id":"862668b5-e160-459a-b6e9-63fe68d7f484"},{"name":"List case reviews","id":"e10c3116-3440-487c-bed9-3a988327fd31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"22e8a723-197f-4c89-be21-f29393cc2677","name":"List case reviews","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"rating_average\": null,\n        \"completed_at\": null,\n        \"created_at\": \"2026-02-02 21:02:29\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"notes\": \"N/A\",\n        \"entry_status\": \"submitted\",\n        \"Review\": {\n            \"id\": \"1\",\n            \"name\": \"Daily Surveillance Review\",\n            \"review_type\": \"1\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"CompletedBy\": null,\n        \"ReviewEntryFieldGroup\": {\n            \"56\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"56\",\n                \"value\": \"15\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"56\",\n                    \"name\": \"Minutes of Video\",\n                    \"field_type_id\": \"11\"\n                }\n            },\n            \"57\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"57\",\n                \"value\": \"Sunny\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"57\",\n                    \"name\": \"Weather\",\n                    \"field_type_id\": \"2\"\n                }\n            },\n            \"58\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"58\",\n                \"value\": \"1\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"58\",\n                    \"name\": \"Opportunity for Video\",\n                    \"field_type_id\": \"13\"\n                }\n            },\n            \"59\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"59\",\n                \"value\": \"Recommend another day of surveillance next weekend.\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"59\",\n                    \"name\": \"Recommendations\",\n                    \"field_type_id\": \"6\"\n                }\n            },\n            \"60\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"60\",\n                \"value\": \"0\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"60\",\n                    \"name\": \"Evidence of Fraud\",\n                    \"field_type_id\": \"12\"\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"e10c3116-3440-487c-bed9-3a988327fd31"},{"name":"Search case reviews","id":"10b30fd7-b6a7-4ab4-a613-e63feffa8eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/reviews?id=<integer>&case=<integer>&review=<id>&status=<pending|complete|submitted|attention>&user=<integer>&user_last_name=<string>&user_first_name=<string>&is_auto_generated=<bool>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","reviews"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case review</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the reivew</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the review (question set) associated with the review</p>\n","type":"text/plain"},"key":"review","value":"<id>"},{"description":{"content":"<p>Status (enum) of the review</p>\n","type":"text/plain"},"key":"status","value":"<pending|complete|submitted|attention>"},{"description":{"content":"<p>ID of the user associated with the review</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>Last name of the user associated with the review</p>\n","type":"text/plain"},"key":"user_last_name","value":"<string>"},{"description":{"content":"<p>First name of the user associated with the review</p>\n","type":"text/plain"},"key":"user_first_name","value":"<string>"},{"description":{"content":"<p>If the review is auto generated or manually generated</p>\n","type":"text/plain"},"key":"is_auto_generated","value":"<bool>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"4d4c2d82-1d1c-42eb-abfb-22ebccb7ca88","name":"Search case reviews","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/reviews?id=<integer>&case=<integer>&review=<id>&status=<pending|complete|submitted|attention>&user=<integer>&user_last_name=<string>&user_first_name=<string>&is_auto_generated=<bool>&page=<integer>","host":["/api/v1"],"path":["case","reviews"],"query":[{"key":"id","value":"<integer>","description":"ID of the case review"},{"key":"case","value":"<integer>","description":"ID of the case associated with the reivew"},{"key":"review","value":"<id>","description":"ID of the review (question set) associated with the review"},{"key":"status","value":"<pending|complete|submitted|attention>","description":"Status (enum) of the review"},{"key":"user","value":"<integer>","description":"ID of the user associated with the review"},{"key":"user_last_name","value":"<string>","description":"Last name of the user associated with the review"},{"key":"user_first_name","value":"<string>","description":"First name of the user associated with the review"},{"key":"is_auto_generated","value":"<bool>","description":"If the review is auto generated or manually generated"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"rating_average\": null,\n        \"completed_at\": null,\n        \"created_at\": \"2026-02-02 21:02:29\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"notes\": \"N/A\",\n        \"entry_status\": \"submitted\",\n        \"Review\": {\n            \"id\": \"1\",\n            \"name\": \"Daily Surveillance Review\",\n            \"review_type\": \"1\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"CompletedBy\": null,\n        \"ReviewEntryFieldGroup\": {\n            \"56\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"56\",\n                \"value\": \"15\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"56\",\n                    \"name\": \"Minutes of Video\",\n                    \"field_type_id\": \"11\"\n                }\n            },\n            \"57\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"57\",\n                \"value\": \"Sunny\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"57\",\n                    \"name\": \"Weather\",\n                    \"field_type_id\": \"2\"\n                }\n            },\n            \"58\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"58\",\n                \"value\": \"1\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"58\",\n                    \"name\": \"Opportunity for Video\",\n                    \"field_type_id\": \"13\"\n                }\n            },\n            \"59\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"59\",\n                \"value\": \"Recommend another day of surveillance next weekend.\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"59\",\n                    \"name\": \"Recommendations\",\n                    \"field_type_id\": \"6\"\n                }\n            },\n            \"60\": {\n                \"review_entry_id\": \"1\",\n                \"field_id\": \"60\",\n                \"value\": \"0\",\n                \"value_date\": \"2026-02-07\",\n                \"rating_weight\": \"1.00\",\n                \"Field\": {\n                    \"id\": \"60\",\n                    \"name\": \"Evidence of Fraud\",\n                    \"field_type_id\": \"12\"\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"10b30fd7-b6a7-4ab4-a613-e63feffa8eb4"}],"id":"db9afcf5-01cb-4180-b481-5c3a5daefb5b","description":"<p>Case reviews track stastitcs and work performance for cases based on a variety of criteria. Case review data can be used to track key performance indicators and other reporting metrics.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338143-Case-Reviews-Gathering-Information-About-your-Cases\">Case Reviews: Gathering Information About your Cases</a></p>\n","_postman_id":"db9afcf5-01cb-4180-b481-5c3a5daefb5b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Services","item":[{"name":"Get a case service","id":"01227e08-627e-4fac-9f97-93744c55e82e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services/:case_service_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services",":case_service_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case service</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_service_id"}]}},"response":[{"id":"f3ca5a2c-b8d5-4061-814b-acd71bdbdb15","name":"Get a case service","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_services/:case_service_id","host":["/api/v1"],"path":["case_services",":case_service_id"],"variable":[{"key":"case_service_id","value":"<integer>","description":"ID of the case service"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Surveillance\",\n    \"reference_id\": null,\n    \"notes\": \"Video Surveillance\",\n    \"description\": \"Video Surveillance\"\n}"}],"_postman_id":"01227e08-627e-4fac-9f97-93744c55e82e"},{"name":"List case services","id":"01ba24ac-769e-4ac0-abee-815f971ec0c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2511ccfc-8672-416f-83fe-a2e23c846010","name":"List case services","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Background Check\",\n        \"reference_id\": null,\n        \"notes\": \"Background Checks\",\n        \"description\": \"Background Checks\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\",\n        \"reference_id\": null,\n        \"notes\": \"Video Surveillance\",\n        \"description\": \"Video Surveillance\"\n    }\n]"}],"_postman_id":"01ba24ac-769e-4ac0-abee-815f971ec0c2"},{"name":"Search case services","id":"b5e009ac-7293-46b3-8e3d-3bd0b6e614f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_services?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_services"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case service</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case service</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case service </p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ea4a503c-7862-40b4-b06f-a6b99298f859","name":"Search case services","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_services?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_services"],"query":[{"key":"id","value":"<integer>","description":"ID of the case service"},{"key":"name","value":"<string>","description":"Name of the case service"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case service "},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Background Check\",\n        \"reference_id\": null,\n        \"notes\": \"Background Checks\",\n        \"description\": \"Background Checks\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\",\n        \"reference_id\": null,\n        \"notes\": \"Video Surveillance\",\n        \"description\": \"Video Surveillance\"\n    }\n]"}],"_postman_id":"b5e009ac-7293-46b3-8e3d-3bd0b6e614f5"}],"id":"5d36444e-09bd-46f0-91fc-5fffa6c4ece4","description":"<p>Case services are the actions you are tasked to perform on a case.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337063-Customizing-your-Case-Services\">Customizing your case services</a></p>\n","_postman_id":"5d36444e-09bd-46f0-91fc-5fffa6c4ece4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Status Change History","item":[{"name":"Get a case status change history","id":"9f53a542-3a08-4486-824c-1eecc6a747d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history/:case_id/:case_status_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history",":case_id",":case_status_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"},{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_status_id"}]}},"response":[{"id":"2cdbf4d1-0cba-4eba-94ff-124584045509","name":"Get a case status change history","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases/status_history/:case_id/:case_status_id","host":["/api/v1"],"path":["cases","status_history",":case_id",":case_status_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"},{"key":"case_status_id","value":"<integer>","description":"ID of the case status"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"case_status_id\": \"1\",\n    \"user_id\": \"1\",\n    \"changed_at\": \"2026-02-02 20:49:46\",\n    \"exited_at\": \"2026-02-02 20:58:37\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"last_status_change_at\": \"2026-02-02 20:58:37\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"color\": \"#8dcbff\"\n    },\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"9f53a542-3a08-4486-824c-1eecc6a747d0"},{"name":"List case status change history (global)","id":"8db71242-a7e7-48f5-9745-3943917f09ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ef2a1d02-0f45-4526-9de3-63f08889d7b1","name":"List case status change history (global)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"3\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:58:37\",\n        \"exited_at\": null,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"3\",\n            \"name\": \"Open / Working\",\n            \"color\": \"#9af862\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"1\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:49:46\",\n        \"exited_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"color\": \"#8dcbff\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"8db71242-a7e7-48f5-9745-3943917f09ae"},{"name":"List case status change history (for a case)","id":"30f74733-3e2a-4215-8017-e6bd2d6ea3c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases/status_history/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases","status_history",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"e3462180-e45c-4549-9251-52497beb0353","name":"List case status change history (for a case)","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases/status_history/:case_id","host":["/api/v1"],"path":["cases","status_history",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"3\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:58:37\",\n        \"exited_at\": null,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"3\",\n            \"name\": \"Open / Working\",\n            \"color\": \"#9af862\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"case_status_id\": \"1\",\n        \"user_id\": \"1\",\n        \"changed_at\": \"2026-02-02 20:49:46\",\n        \"exited_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"last_status_change_at\": \"2026-02-02 20:58:37\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"color\": \"#8dcbff\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"30f74733-3e2a-4215-8017-e6bd2d6ea3c2"}],"id":"e4abe2d2-b3d2-4928-b2d2-bf695835f978","description":"<p>Case status change history tracks the movements between case statuses. Common use cases involve tracking turnaround time and time-in-status performance metrics.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338263-Changing-the-Status-of-a-Case\">Changing the Status of a Case</a></p>\n","_postman_id":"e4abe2d2-b3d2-4928-b2d2-bf695835f978","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Statuses","item":[{"name":"Get a case status","id":"6a7e43cc-1a69-4e51-9541-d74cd7237888","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses/:case_status_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses",":case_status_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_status_id"}]}},"response":[{"id":"269ed707-26c5-400f-8c86-3c93fb111171","name":"Get a case status","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_statuses/:case_status_id","host":["/api/v1"],"path":["case_statuses",":case_status_id"],"variable":[{"key":"case_status_id","value":"<integer>","description":"ID of the case status"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"case_status_rank\": \"1\",\n    \"case_status_category\": \"1\",\n    \"is_readonly\": false,\n    \"name\": \"New\",\n    \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n    \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n}"}],"_postman_id":"6a7e43cc-1a69-4e51-9541-d74cd7237888"},{"name":"List case statuses","id":"08be709a-9ec9-40b5-afaf-4b85850aa34f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8012437-df6d-4bb5-afbe-81321095b92e","name":"List case statuses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"7\",\n        \"case_status_rank\": \"7\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false,\n        \"name\": \"Closed\",\n        \"notes\": \"All invoices are paid and no further work is required on the case.\",\n        \"description\": \"All invoices are paid and no further work is required on the case.\"\n    },\n    {\n        \"id\": \"6\",\n        \"case_status_rank\": \"6\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Invoiced\",\n        \"notes\": \"The invoice has been sent to the client and is awaiting payment.\",\n        \"description\": \"The invoice has been sent to the client and is awaiting payment.\"\n    },\n    {\n        \"id\": \"5\",\n        \"case_status_rank\": \"5\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Report Delivered\",\n        \"notes\": \"All work on this case is complete and the final report has been delivered.\",\n        \"description\": \"All work on this case is complete and the final report has been delivered.\"\n    },\n    {\n        \"id\": \"4\",\n        \"case_status_rank\": \"4\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Quality Assurance\",\n        \"notes\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\",\n        \"description\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\"\n    },\n    {\n        \"id\": \"3\",\n        \"case_status_rank\": \"3\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Open / Working\",\n        \"notes\": \"The case is in the field and new information is being collected by investigator(s).\",\n        \"description\": \"The case is in the field and new information is being collected by investigator(s).\"\n    },\n    {\n        \"id\": \"2\",\n        \"case_status_rank\": \"2\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"Pending Assignment\",\n        \"notes\": \"Case information has been reviewed for accuracy and is ready for assignment.\",\n        \"description\": \"Case information has been reviewed for accuracy and is ready for assignment.\"\n    },\n    {\n        \"id\": \"1\",\n        \"case_status_rank\": \"1\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"New\",\n        \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n        \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n    }\n]"}],"_postman_id":"08be709a-9ec9-40b5-afaf-4b85850aa34f"},{"name":"Search case statuses","id":"1a6d343d-e1e4-4fa6-b13a-5f0a9cf4fe1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_statuses?id=<integer>&name=<string>&category=<integer>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_statuses"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case status</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case status</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case status category</p>\n","type":"text/plain"},"key":"category","value":"<integer>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"f72ee1a3-9333-4659-be5e-c37cd1f40835","name":"Search case statuses","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_statuses?id=<integer>&name=<string>&category=<integer>&page=<integer>","host":["/api/v1"],"path":["case_statuses"],"query":[{"key":"id","value":"<integer>","description":"ID of the case status"},{"key":"name","value":"<string>","description":"Name of the case status"},{"key":"category","value":"<integer>","description":"ID of the case status category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"7\",\n        \"case_status_rank\": \"7\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false,\n        \"name\": \"Closed\",\n        \"notes\": \"All invoices are paid and no further work is required on the case.\",\n        \"description\": \"All invoices are paid and no further work is required on the case.\"\n    },\n    {\n        \"id\": \"6\",\n        \"case_status_rank\": \"6\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Invoiced\",\n        \"notes\": \"The invoice has been sent to the client and is awaiting payment.\",\n        \"description\": \"The invoice has been sent to the client and is awaiting payment.\"\n    },\n    {\n        \"id\": \"5\",\n        \"case_status_rank\": \"5\",\n        \"case_status_category\": \"3\",\n        \"is_readonly\": false,\n        \"name\": \"Report Delivered\",\n        \"notes\": \"All work on this case is complete and the final report has been delivered.\",\n        \"description\": \"All work on this case is complete and the final report has been delivered.\"\n    },\n    {\n        \"id\": \"4\",\n        \"case_status_rank\": \"4\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Quality Assurance\",\n        \"notes\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\",\n        \"description\": \"All investigative activities are complete and client deliverables are being reviewed for accuracy.\"\n    },\n    {\n        \"id\": \"3\",\n        \"case_status_rank\": \"3\",\n        \"case_status_category\": \"2\",\n        \"is_readonly\": false,\n        \"name\": \"Open / Working\",\n        \"notes\": \"The case is in the field and new information is being collected by investigator(s).\",\n        \"description\": \"The case is in the field and new information is being collected by investigator(s).\"\n    },\n    {\n        \"id\": \"2\",\n        \"case_status_rank\": \"2\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"Pending Assignment\",\n        \"notes\": \"Case information has been reviewed for accuracy and is ready for assignment.\",\n        \"description\": \"Case information has been reviewed for accuracy and is ready for assignment.\"\n    },\n    {\n        \"id\": \"1\",\n        \"case_status_rank\": \"1\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false,\n        \"name\": \"New\",\n        \"notes\": \"Submitted case information needs to be reviewed for accuracy before assignment.\",\n        \"description\": \"Submitted case information needs to be reviewed for accuracy before assignment.\"\n    }\n]"}],"_postman_id":"1a6d343d-e1e4-4fa6-b13a-5f0a9cf4fe1f"}],"id":"2f86bfd9-7e34-4032-a293-dd500e24e285","description":"<p>Case services are the buckets that track progress throughout the lifecycle of a case.</p>\n<p>See also: <a href=\"https://support.trackops.com/hc/en-us/articles/212336943-How-to-Customize-your-Case-Statuses\">How to Customize your Case Statuses</a></p>\n","_postman_id":"2f86bfd9-7e34-4032-a293-dd500e24e285","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Types","item":[{"name":"Get a case type","id":"5587cdff-0498-49c0-ba15-79bd44853b69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types/:case_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types",":case_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_type_id"}]}},"response":[{"id":"7e483c77-b354-4d66-93ce-9e8ae57be8fb","name":"Get a case type","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_types/:case_type_id","host":["/api/v1"],"path":["case_types",":case_type_id"],"variable":[{"key":"case_type_id","value":"<integer>","description":"ID of the case type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Workers' Compensation\",\n    \"reference_id\": \"\",\n    \"tag\": \"WC\",\n    \"notes\": \"Insurance fraud investigation\",\n    \"reference_label_1\": \"Claim Number\",\n    \"reference_label_2\": \"SIU Number\",\n    \"reference_label_3\": \"\",\n    \"description\": \"Insurance fraud investigation\",\n    \"Fields\": [\n        {\n            \"id\": \"61\",\n            \"name\": \"Insured\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        }\n    ]\n}"}],"_postman_id":"5587cdff-0498-49c0-ba15-79bd44853b69"},{"name":"List case types","id":"ca28c196-2e53-4846-8c32-6abf16b8e17f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"762d31d6-5a31-4530-bd7b-f010fefcb43f","name":"List case types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-2d602f19348823262457b76e3825a35a' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Powered-By","value":"PHP/8.3.28"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 17 Feb 2026 18:27:34 GMT"},{"key":"Content-Length","value":"376"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\",\n        \"tag\": \"WC\",\n        \"notes\": \"Insurance fraud investigation\",\n        \"reference_label_1\": \"Claim Number\",\n        \"reference_label_2\": \"SIU Number\",\n        \"reference_label_3\": \"\",\n        \"description\": \"Insurance fraud investigation\",\n        \"Fields\": [\n            {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"ca28c196-2e53-4846-8c32-6abf16b8e17f"},{"name":"Search case types","id":"2473aa7e-bdde-4c5b-ae08-842c18691e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case_types?id=<integer>&name=<string>&tag=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case_types"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case type</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case type</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>2 character tag associated with the case type</p>\n","type":"text/plain"},"key":"tag","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the case type</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"7aebbff7-879b-4436-8e61-1263ee4e0369","name":"Search case types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case_types?id=<integer>&name=<string>&tag=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["case_types"],"query":[{"key":"id","value":"<integer>","description":"ID of the case type"},{"key":"name","value":"<string>","description":"Name of the case type"},{"key":"tag","value":"<string>","description":"2 character tag associated with the case type"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the case type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\",\n        \"tag\": \"WC\",\n        \"notes\": \"Insurance fraud investigation\",\n        \"reference_label_1\": \"Claim Number\",\n        \"reference_label_2\": \"SIU Number\",\n        \"reference_label_3\": \"\",\n        \"description\": \"Insurance fraud investigation\",\n        \"Fields\": [\n            {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"2473aa7e-bdde-4c5b-ae08-842c18691e62"}],"id":"2010948d-b0cd-42c8-8740-b6476aa008eb","description":"<p>Case types are the glue that connect and configure various case components together. Case types can be customized to capture unique data for each type of investigation you work.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337083-Setting-up-your-Case-Types\">Setting up your Case Types</a></p>\n","_postman_id":"2010948d-b0cd-42c8-8740-b6476aa008eb","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Update Categories","item":[{"name":"Get a case update category","id":"9948baf6-2ee4-4705-9bc8-81b8deb57a8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories/:case_update_category_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories",":case_update_category_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case update category</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_update_category_id"}]}},"response":[{"id":"dea0efdc-4b09-4922-a6e0-9f4754bb0927","name":"Get a case update category","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/update_categories/:case_update_category_id","host":["/api/v1"],"path":["update_categories",":case_update_category_id"],"variable":[{"key":"case_update_category_id","value":"<integer>","description":"ID of the case update category"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Report\",\n    \"tag\": \"reoport\",\n    \"default_option_expense\": false,\n    \"AccessGroups\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Admin\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        {\n            \"id\": \"3\",\n            \"name\": \"Internal\"\n        }\n    ]\n}"}],"_postman_id":"9948baf6-2ee4-4705-9bc8-81b8deb57a8c"},{"name":"List case update categories","id":"5d020817-d248-4db4-9c04-ef049f957578","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ce7616a7-e554-4354-9eb8-c6b5db3a8f7a","name":"List case update categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Surveillance Log\",\n        \"tag\": \"surv\",\n        \"default_option_expense\": true,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Report\",\n        \"tag\": \"reoport\",\n        \"default_option_expense\": false,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    }\n]"}],"_postman_id":"5d020817-d248-4db4-9c04-ef049f957578"},{"name":"Search case update categories","id":"20a8070b-efac-4230-942b-8d5c4e8318e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/update_categories?id=<integer>&name=<string>&tag=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["update_categories"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case update category</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the case update category</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Document tag of the case update category</p>\n","type":"text/plain"},"key":"tag","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"2baa727d-37a8-4db5-95d7-6a08aef12ce0","name":"Search case update categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/update_categories?id=<integer>&name=<string>&tag=<string>&page=<integer>","host":["/api/v1"],"path":["update_categories"],"query":[{"key":"id","value":"<integer>","description":"ID of the case update category"},{"key":"name","value":"<string>","description":"Name of the case update category"},{"key":"tag","value":"<string>","description":"Document tag of the case update category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"name\": \"Surveillance Log\",\n        \"tag\": \"surv\",\n        \"default_option_expense\": true,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Report\",\n        \"tag\": \"reoport\",\n        \"default_option_expense\": false,\n        \"AccessGroups\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Admin\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Public\"\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Internal\"\n            }\n        ]\n    }\n]"}],"_postman_id":"20a8070b-efac-4230-942b-8d5c4e8318e4"}],"id":"030e6c3b-88e4-4d78-9cce-52561abb20cb","description":"<p>Case update categories allow you to organize case updates by a specific type or genre. </p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/29141381155469-Managing-Case-Update-Categories\">Managing Case Update Categories</a></p>\n","_postman_id":"030e6c3b-88e4-4d78-9cce-52561abb20cb","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Updates","item":[{"name":"Get a case update","id":"894b55ce-540b-4c26-9f0d-113133de9fc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates/:case_update_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates",":case_update_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case update</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_update_id"}]}},"response":[{"id":"c375cd35-6207-4df0-b039-1de2c676544f","name":"Get a case update","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/updates/:case_update_id","host":["/api/v1"],"path":["case","updates",":case_update_id"],"variable":[{"key":"case_update_id","value":"<integer>","description":"ID of the case update"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"Surveillance / McFly / Denver, CO\",\n    \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n    \"activity_at\": \"2026-02-07 13:00:00\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"1\",\n    \"update_category_id\": \"2\",\n    \"review_entry_id\": \"2\",\n    \"update_status\": \"1\",\n    \"is_valid\": false,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:15:28\",\n    \"updated_at\": \"2026-02-02 21:15:28\",\n    \"validated_at\": null,\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": {\n        \"id\": \"2\",\n        \"tag\": \"surv\",\n        \"name\": \"Surveillance Log\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": [\n        {\n            \"id\": \"1\",\n            \"update_detail_rank\": \"1\",\n            \"update_id\": \"1\",\n            \"start_at\": \"08:00:00\",\n            \"notes\": \"Arrived on site\"\n        },\n        {\n            \"id\": \"2\",\n            \"update_detail_rank\": \"2\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:00:00\",\n            \"notes\": \"Claimant departed the residence\"\n        },\n        {\n            \"id\": \"3\",\n            \"update_detail_rank\": \"3\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:15:00\",\n            \"notes\": \"Followed claimant to Hill Valley High School\"\n        },\n        {\n            \"id\": \"4\",\n            \"update_detail_rank\": \"4\",\n            \"update_id\": \"1\",\n            \"start_at\": \"10:00:00\",\n            \"notes\": \"Claimant walked inside high school\"\n        },\n        {\n            \"id\": \"5\",\n            \"update_detail_rank\": \"5\",\n            \"update_id\": \"1\",\n            \"start_at\": \"12:00:00\",\n            \"notes\": \"Terminated surveillance due to lack of activity\"\n        }\n    ],\n    \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n}"}],"_postman_id":"894b55ce-540b-4c26-9f0d-113133de9fc3"},{"name":"List case updates","id":"a045e237-08ec-41c1-b4e1-fe4fca0bdd79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9f86f894-fd09-475d-8a87-85a17624b7a5","name":"List case updates","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n        \"activity_at\": \"2026-02-07 13:00:00\",\n        \"last_sent_at\": null,\n        \"update_thread_id\": \"1\",\n        \"update_category_id\": \"2\",\n        \"review_entry_id\": \"2\",\n        \"update_status\": \"1\",\n        \"is_valid\": false,\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:15:28\",\n        \"updated_at\": \"2026-02-02 21:15:28\",\n        \"validated_at\": null,\n        \"attachment_count\": \"0\",\n        \"is_allday\": false,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"UpdateCategory\": {\n            \"id\": \"2\",\n            \"tag\": \"surv\",\n            \"name\": \"Surveillance Log\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"files_list\": [],\n        \"UpdateDetails\": [\n            {\n                \"id\": \"1\",\n                \"update_detail_rank\": \"1\",\n                \"update_id\": \"1\",\n                \"start_at\": \"08:00:00\",\n                \"notes\": \"Arrived on site\"\n            },\n            {\n                \"id\": \"2\",\n                \"update_detail_rank\": \"2\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:00:00\",\n                \"notes\": \"Claimant departed the residence\"\n            },\n            {\n                \"id\": \"3\",\n                \"update_detail_rank\": \"3\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:15:00\",\n                \"notes\": \"Followed claimant to Hill Valley High School\"\n            },\n            {\n                \"id\": \"4\",\n                \"update_detail_rank\": \"4\",\n                \"update_id\": \"1\",\n                \"start_at\": \"10:00:00\",\n                \"notes\": \"Claimant walked inside high school\"\n            },\n            {\n                \"id\": \"5\",\n                \"update_detail_rank\": \"5\",\n                \"update_id\": \"1\",\n                \"start_at\": \"12:00:00\",\n                \"notes\": \"Terminated surveillance due to lack of activity\"\n            }\n        ],\n        \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n    }\n]"}],"_postman_id":"a045e237-08ec-41c1-b4e1-fe4fca0bdd79"},{"name":"Search case updates","id":"f21b888f-4e42-475a-8a0c-bf7ac2d98e83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/case/updates?id=<integer>&access_group=<integer>&case=<integer>&created_by=<integer>&subject=<integer>&title=<string>&update_status=<integer>&update_category=<integer>&activity_from=<datestamp>&activity_to=<datestamp>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&validated_from=<datestamp>&validated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case update</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the access group associated with the case update</p>\n","type":"text/plain"},"key":"access_group","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the case update</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the author of the case update</p>\n","type":"text/plain"},"key":"created_by","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the case update</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>Title of the case update</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the case update status</p>\n","type":"text/plain"},"key":"update_status","value":"<integer>"},{"description":{"content":"<p>ID of the case update category associated with the case update</p>\n","type":"text/plain"},"key":"update_category","value":"<integer>"},{"description":{"content":"<p>ISO date of activity from</p>\n","type":"text/plain"},"key":"activity_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of activity to</p>\n","type":"text/plain"},"key":"activity_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of activity_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of activity_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of created from</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of created_to</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of updated from </p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of updated to</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of validated from</p>\n","type":"text/plain"},"key":"validated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of validated to</p>\n","type":"text/plain"},"key":"validated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ac615c74-dcb1-489e-8b5b-35cdd53e0d7d","name":"Search case updates","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/case/updates?id=<integer>&access_group=<integer>&case=<integer>&created_by=<integer>&subject=<integer>&title=<string>&update_status=<integer>&update_category=<integer>&activity_from=<datestamp>&activity_to=<datestamp>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&validated_from=<datestamp>&validated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["case","updates"],"query":[{"key":"id","value":"<integer>","description":"ID of the case update"},{"key":"access_group","value":"<integer>","description":"ID of the access group associated with the case update"},{"key":"case","value":"<integer>","description":"ID of the case associated with the case update"},{"key":"created_by","value":"<integer>","description":"ID of the author of the case update"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the case update"},{"key":"title","value":"<string>","description":"Title of the case update"},{"key":"update_status","value":"<integer>","description":"ID of the case update status"},{"key":"update_category","value":"<integer>","description":"ID of the case update category associated with the case update"},{"key":"activity_from","value":"<datestamp>","description":"ISO date of activity from"},{"key":"activity_to","value":"<datestamp>","description":"ISO date of activity to"},{"key":"from","value":"<datestamp>","description":"Alias of activity_from"},{"key":"to","value":"<datestamp>","description":"Alias of activity_to"},{"key":"created_from","value":"<datestamp>","description":"ISO date of created from"},{"key":"created_to","value":"<datestamp>","description":"ISO date of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date of updated from "},{"key":"updated_to","value":"<datestamp>","description":"ISO date of updated to"},{"key":"validated_from","value":"<datestamp>","description":"ISO date of validated from"},{"key":"validated_to","value":"<datestamp>","description":"ISO date of validated to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p>\",\n        \"activity_at\": \"2026-02-07 13:00:00\",\n        \"last_sent_at\": null,\n        \"update_thread_id\": \"1\",\n        \"update_category_id\": \"2\",\n        \"review_entry_id\": \"2\",\n        \"update_status\": \"1\",\n        \"is_valid\": false,\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:15:28\",\n        \"updated_at\": \"2026-02-02 21:15:28\",\n        \"validated_at\": null,\n        \"attachment_count\": \"0\",\n        \"is_allday\": false,\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"UpdateCategory\": {\n            \"id\": \"2\",\n            \"tag\": \"surv\",\n            \"name\": \"Surveillance Log\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"files_list\": [],\n        \"UpdateDetails\": [\n            {\n                \"id\": \"1\",\n                \"update_detail_rank\": \"1\",\n                \"update_id\": \"1\",\n                \"start_at\": \"08:00:00\",\n                \"notes\": \"Arrived on site\"\n            },\n            {\n                \"id\": \"2\",\n                \"update_detail_rank\": \"2\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:00:00\",\n                \"notes\": \"Claimant departed the residence\"\n            },\n            {\n                \"id\": \"3\",\n                \"update_detail_rank\": \"3\",\n                \"update_id\": \"1\",\n                \"start_at\": \"09:15:00\",\n                \"notes\": \"Followed claimant to Hill Valley High School\"\n            },\n            {\n                \"id\": \"4\",\n                \"update_detail_rank\": \"4\",\n                \"update_id\": \"1\",\n                \"start_at\": \"10:00:00\",\n                \"notes\": \"Claimant walked inside high school\"\n            },\n            {\n                \"id\": \"5\",\n                \"update_detail_rank\": \"5\",\n                \"update_id\": \"1\",\n                \"start_at\": \"12:00:00\",\n                \"notes\": \"Terminated surveillance due to lack of activity\"\n            }\n        ],\n        \"combined_body\": \"<p>On February 7 2026 the investigator initiated surveillance at the primary residence at approximately 8:00AM.&nbsp; The investigator conducted mobile surveillance and observed the claimant for approximately 2 hours before he entered into the school.&nbsp; After 2 hours, the investigator terminated surveillance due to inactivity.</p><p><span><strong>8:00 AM - </strong></span>Arrived on site</p><p><span><strong>9:00 AM - </strong></span>Claimant departed the residence</p><p><span><strong>9:15 AM - </strong></span>Followed claimant to Hill Valley High School</p><p><span><strong>10:00 AM - </strong></span>Claimant walked inside high school</p><p><span><strong>12:00 PM - </strong></span>Terminated surveillance due to lack of activity</p>\"\n    }\n]"}],"_postman_id":"f21b888f-4e42-475a-8a0c-bf7ac2d98e83"},{"name":"Create a case update","id":"2a47c243-a2cd-4256-ae21-a36b21cd14c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"voluptas ut ut\",\n        \"body\": \"Necessitatibus tempora dolorum consequuntur labore neque esse occaecati. Velit temporibus ullam dolorem dolore. Voluptates voluptas nemo perferendis reprehenderit blanditiis rerum sapiente accusamus omnis.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42f32b3b-2ab1-42a3-bbb7-6c14498eea19","name":"Create a case update","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"incidunt voluptatibus reiciendis\",\n        \"body\": \"Accusamus ab fugiat ab perferendis delectus nemo quod est qui. Id et voluptatum et. Voluptatem minus aliquam doloribus libero quam facilis.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"title\": \"modi iusto odio\",\n    \"body\": \"<p>Et quisquam similique. Rerum ratione nisi molestiae aliquam. Necessitatibus ut dolorum. Asperiores quia aut sit quia fugiat officia quasi. Totam iure eveniet.</p>\",\n    \"activity_at\": \"2026-02-02 21:18:17\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"2\",\n    \"update_category_id\": null,\n    \"review_entry_id\": null,\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:18:17\",\n    \"updated_at\": \"2026-02-02 21:18:17\",\n    \"validated_at\": \"2026-02-02 21:18:17\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"1\",\n        \"name\": \"Admin\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": null,\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": []\n}"},{"id":"873d8f88-4000-42f6-87d1-bd579c023202","name":"Create a case update (with linked attachments)","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"ipsam doloribus sed\",\n        \"body\": \"Voluptatibus ad dolores maxime asperiores non quo. Sit voluptas eligendi fuga consequatur et. Et non ea maxime et non voluptatibus voluptatem deserunt provident. Porro optio sunt optio ut quo.\",\n        \"access_group_id\": \"<integer>\",\n        \"subject_id\": \"<integer>\",\n        \"casefile_id\": \"<integer>\",\n        \"files_list\": [1],\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"title\": \"harum laudantium illum\",\n    \"body\": \"<p>Nisi impedit excepturi quasi esse excepturi est sunt recusandae. Harum omnis labore et. Architecto ipsum amet. Voluptatibus explicabo ut et eius voluptas voluptatum inventore a qui.</p>\",\n    \"activity_at\": \"2026-02-02 21:24:35\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"3\",\n    \"update_category_id\": null,\n    \"review_entry_id\": null,\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:24:35\",\n    \"updated_at\": \"2026-02-02 21:24:35\",\n    \"validated_at\": \"2026-02-02 21:24:35\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": null,\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [\n        \"1\"\n    ],\n    \"UpdateDetails\": []\n}"}],"_postman_id":"2a47c243-a2cd-4256-ae21-a36b21cd14c5"},{"name":"Update a case update","id":"341df4f0-73c8-4ddd-8d69-aa5aa85219e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"vero cupiditate repudiandae\",\n        \"body\": \"A vitae beatae earum. Qui veniam perferendis velit omnis mollitia minus deleniti provident. Sint vero dolorem harum adipisci aliquam reiciendis. Magnam enim ex animi dolore aliquid.\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates/<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","updates","<integer>"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6730d205-5722-4aa0-a94f-7fd0da74a83a","name":"Update a case update","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"update\": {\n        \"title\": \"ducimus quia incidunt\",\n        \"body\": \"Et maxime quia amet doloribus quia optio dignissimos enim vel. Id sunt et maxime est qui doloremque ad. In velit debitis error. In ex maiores tempora vitae quasi odit fugit est. Voluptatem laboriosam ullam nobis.\",\n        \"is_validated\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/updates/<integer>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"sapiente praesentium tenetur\",\n    \"body\": \"<p>Omnis laudantium neque iure sint aliquid ea magni ut. Placeat maxime eum odit atque repellendus. Facere itaque odit atque similique delectus fugit nobis a. Quibusdam laborum ad ratione quas dignissimos neque necessitatibus pariatur.</p>\",\n    \"activity_at\": \"2026-02-07 13:00:00\",\n    \"last_sent_at\": null,\n    \"update_thread_id\": \"1\",\n    \"update_category_id\": \"2\",\n    \"review_entry_id\": \"2\",\n    \"update_status\": \"2\",\n    \"is_valid\": true,\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:15:28\",\n    \"updated_at\": \"2026-02-02 21:25:12\",\n    \"validated_at\": \"2026-02-02 21:22:57\",\n    \"attachment_count\": \"0\",\n    \"is_allday\": false,\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"UpdateCategory\": {\n        \"id\": \"2\",\n        \"tag\": \"surv\",\n        \"name\": \"Surveillance Log\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"files_list\": [],\n    \"UpdateDetails\": [\n        {\n            \"id\": \"1\",\n            \"update_detail_rank\": \"1\",\n            \"update_id\": \"1\",\n            \"start_at\": \"08:00:00\",\n            \"notes\": \"Arrived on site\"\n        },\n        {\n            \"id\": \"2\",\n            \"update_detail_rank\": \"2\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:00:00\",\n            \"notes\": \"Claimant departed the residence\"\n        },\n        {\n            \"id\": \"3\",\n            \"update_detail_rank\": \"3\",\n            \"update_id\": \"1\",\n            \"start_at\": \"09:15:00\",\n            \"notes\": \"Followed claimant to Hill Valley High School\"\n        },\n        {\n            \"id\": \"4\",\n            \"update_detail_rank\": \"4\",\n            \"update_id\": \"1\",\n            \"start_at\": \"10:00:00\",\n            \"notes\": \"Claimant walked inside high school\"\n        },\n        {\n            \"id\": \"5\",\n            \"update_detail_rank\": \"5\",\n            \"update_id\": \"1\",\n            \"start_at\": \"12:00:00\",\n            \"notes\": \"Terminated surveillance due to lack of activity\"\n        }\n    ]\n}"}],"_postman_id":"341df4f0-73c8-4ddd-8d69-aa5aa85219e6"}],"id":"7496492c-7c9e-4ab8-8f6c-178a8e5a8ec8","description":"<p>\"Case Updates\" are the primary means of communication between all parties on a case, including managers, investigators, and clients.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338103-Case-Updates-Communicating-with-your-Clients-and-Staff\">Case Updates: Communicating with your Clients and Staff</a></p>\n","_postman_id":"7496492c-7c9e-4ab8-8f6c-178a8e5a8ec8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Cases","item":[{"name":"Case Contacts (Assignments)","item":[{"name":"Get a case assignment","id":"148259ac-6034-4d8f-84c6-3229436a1dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts/:case_id/:user_id/:assign_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts",":case_id",":user_id",":assign_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"},{"description":{"content":"<p>ID of the case contact (user)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"user_id"},{"description":{"content":"<p>ID of the assign type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"assign_type_id"}]}},"response":[{"id":"cda33ebd-3501-4bed-a7cd-a0e6e25d44eb","name":"Get a case assignment","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/case/contacts/:case_id/:user_id/:assign_type_id","host":["/api/v1"],"path":["case","contacts",":case_id",":user_id",":assign_type_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"},{"key":"user_id","value":"<integer>","description":"ID of the case contact (user)"},{"key":"assign_type_id","value":"<integer>","description":"ID of the assign type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"user_id\": \"3\",\n    \"assign_type_id\": \"1\",\n    \"is_primary\": true,\n    \"notified_at\": null,\n    \"confirmed_at\": null,\n    \"viewed_at\": null,\n    \"created_at\": \"2026-02-02 20:58:37\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"client_id\": \"4\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"client_id\": \"2\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"AssignType\": {\n        \"id\": \"1\",\n        \"name\": \"Investigator\"\n    }\n}"}],"_postman_id":"148259ac-6034-4d8f-84c6-3229436a1dfa"},{"name":"List case contacts","id":"77389143-8b5f-454e-94c5-2b7b1d0ddeab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"076dfddc-066e-4241-8483-e9de8c983181","name":"List case contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/case/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"3\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:32\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"3\",\n            \"name\": \"Case Manager\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"5\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"5\",\n            \"name\": \"Salesperson\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"2\",\n        \"assign_type_id\": \"4\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"client_id\": \"4\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"AssignType\": {\n            \"id\": \"4\",\n            \"name\": \"Client Contact\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"3\",\n        \"assign_type_id\": \"1\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"client_id\": \"2\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"AssignType\": {\n            \"id\": \"1\",\n            \"name\": \"Investigator\"\n        }\n    }\n]"}],"_postman_id":"77389143-8b5f-454e-94c5-2b7b1d0ddeab"},{"name":"Search case contacts","id":"d42f6b69-67a4-4dd0-af55-74224b7875f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": {case_id},\n        \"user_id\": ,\n        \"assign_type_id\": ,\n        \"is_primary\": true\n    }\n}"},"url":"/api/v1/case/contacts?assign_type=<integer>&case=<integer>&case_type=<integer>&user=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case assignment type (case role)</p>\n","type":"text/plain"},"key":"assign_type","value":"<integer>"},{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case type associated with the case</p>\n","type":"text/plain"},"key":"case_type","value":"<integer>"},{"description":{"content":"<p>ID of the assigned user</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date of the assignment date from</p>\n","type":"text/plain"},"key":"assigned_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the assignment date to</p>\n","type":"text/plain"},"key":"assigned_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"c5249594-bd3a-448e-bb9c-044838a9fe54","name":"Search case contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": {case_id},\n        \"user_id\": ,\n        \"assign_type_id\": ,\n        \"is_primary\": true\n    }\n}"},"url":{"raw":"/api/v1/case/contacts?assign_type=<integer>&case=<integer>&case_type=<integer>&user=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>","host":["/api/v1"],"path":["case","contacts"],"query":[{"key":"assign_type","value":"<integer>","description":"ID of the case assignment type (case role)"},{"key":"case","value":"<integer>","description":"ID of the case"},{"key":"case_type","value":"<integer>","description":"ID of the case type associated with the case"},{"key":"user","value":"<integer>","description":"ID of the assigned user"},{"key":"assigned_from","value":"<datestamp>","description":"ISO date of the assignment date from"},{"key":"assigned_to","value":"<datestamp>","description":"ISO date of the assignment date to"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"3\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:32\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"3\",\n            \"name\": \"Case Manager\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"1\",\n        \"assign_type_id\": \"5\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": \"2026-02-02 21:22:54\",\n        \"created_at\": \"2026-02-02 20:58:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"client_id\": \"2\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"AssignType\": {\n            \"id\": \"5\",\n            \"name\": \"Salesperson\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"2\",\n        \"assign_type_id\": \"4\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"client_id\": \"4\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"AssignType\": {\n            \"id\": \"4\",\n            \"name\": \"Client Contact\"\n        }\n    },\n    {\n        \"casefile_id\": \"3\",\n        \"user_id\": \"3\",\n        \"assign_type_id\": \"1\",\n        \"is_primary\": true,\n        \"notified_at\": null,\n        \"confirmed_at\": null,\n        \"viewed_at\": null,\n        \"created_at\": \"2026-02-02 20:58:37\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"client_id\": \"4\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"due_on\": \"2026-02-09\",\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\"\n        },\n        \"User\": {\n            \"id\": \"3\",\n            \"client_id\": \"2\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"AssignType\": {\n            \"id\": \"1\",\n            \"name\": \"Investigator\"\n        }\n    }\n]"}],"_postman_id":"d42f6b69-67a4-4dd0-af55-74224b7875f8"},{"name":"Assign a user to a case","id":"9d2a4917-b462-42b6-96a8-6a8bc62cfc70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": \"<integer>\",\n        \"user_id\": \"<integer>\",\n        \"assign_type_id\": \"<integer>\",\n        \"is_primary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4843ae49-c527-4621-95c1-59fb7cc2e1ca","name":"Assign a user to a case","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"case_contact\": {\n        \"casefile_id\": \"<integer>\",\n        \"user_id\": \"<integer>\",\n        \"assign_type_id\": \"<integer>\",\n        \"is_primary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"user_id\": \"3\",\n    \"assign_type_id\": \"1\",\n    \"is_primary\": true,\n    \"notified_at\": \"2026-02-02 21:30:16\",\n    \"confirmed_at\": null,\n    \"viewed_at\": null,\n    \"created_at\": \"2026-02-02 21:30:16\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"client_id\": \"4\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\"\n    },\n    \"User\": {\n        \"id\": \"3\",\n        \"client_id\": \"2\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"AssignType\": {\n        \"id\": \"1\",\n        \"name\": \"Investigator\"\n    }\n}"}],"_postman_id":"9d2a4917-b462-42b6-96a8-6a8bc62cfc70"}],"id":"597ad741-0afe-4c70-8bcf-34f7c58f7562","description":"<p>Case contacts are the parties who are assigned to cases in various capacities. Contacts are comprised of both clients and staff and fall into one of the following <a href=\"https://support.trackops.com/hc/en-us/articles/115002690423-Configuring-your-Assignment-Types\">case assignment types</a>:</p>\n<ul>\n<li><p>Additional Employee</p>\n</li>\n<li><p>Affiliate Contact</p>\n</li>\n<li><p>Case Manager</p>\n</li>\n<li><p>Client Contact</p>\n</li>\n<li><p>Investigator</p>\n</li>\n<li><p>Salesperson</p>\n</li>\n<li><p>Vendor Contact</p>\n</li>\n</ul>\n<p><strong>Note:</strong> The terms used for the above assignment types are customizable and may be different based on your configuration.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338123-Assigning-Additional-Staff-and-Contacts-to-Cases\">Assigning Additional Staff and Contacts to Cases</a></p>\n","_postman_id":"597ad741-0afe-4c70-8bcf-34f7c58f7562","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Status Changes","item":[{"name":"Change a case status","id":"577ba146-316f-450b-9057-23f211a9ed82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status_change\": {\n        \"casefile_id\": \"<integer>\",\n        \"case_status_id\": \"<integer>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/status_changes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["case","status_changes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8eb01c40-e6a8-4d92-9eab-b5bb7c58b558","name":"Change a case status","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"status_change\": {\n        \"casefile_id\": \"<integer>\",\n        \"case_status_id\": \"<integer>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/case/status_changes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"casefile_id\": \"3\",\n    \"case_status_id\": \"1\",\n    \"user_id\": \"1\",\n    \"changed_at\": \"2026-02-02 21:31:12\",\n    \"exited_at\": null\n}"}],"_postman_id":"577ba146-316f-450b-9057-23f211a9ed82"}],"id":"a84f3387-a723-4e04-b516-3df590ab69f3","description":"<p>Case status changes track the date and time a case progressed to the next milestone in the <a href=\"https://support.trackops.com/hc/en-us/articles/36944946614157-Managing-Workflows\">case workflow</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338263-Changing-the-Status-of-a-Case\">Changing the Status of a Case</a></p>\n","_postman_id":"a84f3387-a723-4e04-b516-3df590ab69f3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Case Uploads (Files)","item":[{"name":"Get a file upload URL","id":"042d860d-d698-4422-b883-bb4ba6bc09ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/cases/:case_id/upload_url?filename=sticky_capacity.mp3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id","upload_url"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Name of the file (filename.ext) to be uploaded </p>\n","type":"text/plain"},"key":"filename","value":"music_wireless_beauty.mpga"}],"variable":[{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"ca77eeb7-d218-4ad5-85e7-30d6818ce57b","name":"Get a file upload URL","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/cases/:case_id/upload_url?filename=<string>","host":["/api/v1"],"path":["cases",":case_id","upload_url"],"query":[{"key":"filename","value":"<string>","description":"Name of the file (filename.ext) to be uploaded "}],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case associated with the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"url\": \"https://url_to_upload_file/integration_response_path.jpg?X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAJMUJB5KQOATHWVNQ%2F20260203%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20260203T153843Z&X-Amz-SignedHeaders=host&X-Amz-Expires=1800&X-Amz-Signature=5a1c69d9e9a8889b203b76d3726fda8d306fa7666543d9dbbc773f9813e0b3f5\"\n}"}],"_postman_id":"042d860d-d698-4422-b883-bb4ba6bc09ef"},{"name":"Process an uploaded file","id":"def7c096-889c-4ee0-86bd-d8db23e489e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"inverse.jpe\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Velit temporibus quae.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/:case_id/process_upload","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id","process_upload"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"f4413a3f-0f70-4b3a-916e-870c13c6cbfd","name":"Process an uploaded file","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"upload\": {\n    \"filename\": \"Witness Interview.mp3\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Minima totam aut autem animi eligendi.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/3/process_upload"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"access_group_id\": \"2\",\n    \"casefile_id\": \"3\",\n    \"name\": \"Witness Interview.mp3\",\n    \"filename\": \"witness_interview.mp3\",\n    \"size\": \"11650187\",\n    \"file_path\": \"/case/3\",\n    \"mime\": \"audio/mpeg\",\n    \"reference_number\": null,\n    \"notes\": \"Natus nemo fugiat optio vitae labore ut veniam tenetur.\",\n    \"created_at\": \"2026-02-03 15:55:22\",\n    \"processed_at\": null,\n    \"updated_at\": \"2026-02-03 15:55:22\",\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"updates_list\": [],\n    \"path\": \"/case/3\",\n    \"url\": \"https://url_to_uploaded_file/witness_interview.mp3?v=1&response-content-disposition=attachment&Expires=1770148523&Signature=ggXlJcj65wrhNuMb~cCELa7uvgu~pzMiXaI4gcnsX~y7alNa54--0Xqqa7JXA3r9ejTLZNLd0RT0ibWbZjXJUpLIwkP~B244K5U-Km5-z01MS7HUQQKtW9ZEFw-cVzKLjw0UuZl2lKC0jXC7JuBdNlJxlzZVbFKjDLVhBUFti6VYpEm45BnigNOp5J~8gjPGr3hgWZ1FuCTuRXd7gyHIOOhDJoajCXb2Heke8iVX2sE9G4Hr7RysJvPeZN7YSlQUOnZ3yJ5Vuvy59wB4p0QdkbgD013-ePbKuE7Y0mycPA4rty1lhuiSTA02WkUi7pQVGxYgq05KuFrC7SVJexvuoQ__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n    \"url_expiration\": \"2026-02-03 19:55:23\"\n}"}],"_postman_id":"def7c096-889c-4ee0-86bd-d8db23e489e5"}],"id":"4c0e656c-3202-4c8f-8c92-8cbee7436a4d","_postman_id":"4c0e656c-3202-4c8f-8c92-8cbee7436a4d","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a case","id":"bde586bc-c0da-4f60-84a4-36a5c9a0b9d9","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/cases/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"75e57b94-4f5a-4004-9ee5-b4092bb61ed8","name":"Get a case","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/cases/:case_id","host":["/api/v1"],"path":["cases",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"placeat voluptates quis\",\n    \"reference_value_2\": \"ut non sit\",\n    \"reference_value_3\": \"nulla quis vero\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Elveraburgh\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"expense_total\": \"250.00\",\n    \"expense_hour_total\": \"5.00\",\n    \"expense_budget_hour_total\": \"5.00\",\n    \"invoice_estimate\": \"385.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n    \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n    \"scheduling_notes\": \"Est soluta natus saepe non.\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:31:12\",\n    \"referral_source_id\": null,\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:31:12\",\n    \"last_update_at\": \"2026-02-02 21:25:12\",\n    \"rating_average\": null,\n    \"case_number\": \"00001WC-01\",\n    \"case_or_request_number\": \"00001WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"PrimaryInvestigator\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_office\": \"555-555-5555\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"PrimaryManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"PrimarySalesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"3\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"Hill Valley University\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"bde586bc-c0da-4f60-84a4-36a5c9a0b9d9"},{"name":"List cases","id":"705bad26-0e6e-4732-ac10-12b8ed9f6a9d","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"394383df-4e41-4a67-9e59-0a1b2ff74230","name":"List cases","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"250.00\",\n        \"expense_hour_total\": \"5.00\",\n        \"expense_budget_hour_total\": \"5.00\",\n        \"invoice_estimate\": \"385.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": false,\n        \"last_status_change_at\": \"2026-02-02 21:31:12\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 21:31:12\",\n        \"last_update_at\": \"2026-02-02 21:25:12\",\n        \"rating_average\": null,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"phone_home\": \"555-555-5557\",\n            \"phone_mobile\": \"555-555-5556\",\n            \"phone_office\": \"555-555-5555\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"PrimaryManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"PrimarySalesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": {\n            \"61\": {\n                \"casefile_id\": \"3\",\n                \"field_id\": \"61\",\n                \"case_field_rank\": \"1\",\n                \"value\": \"Hill Valley University\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"61\",\n                    \"name\": \"Insured\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"0.00\",\n        \"expense_hour_total\": \"0.00\",\n        \"expense_budget_hour_total\": \"0.00\",\n        \"invoice_estimate\": \"0.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": \"1\",\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 20:48:57\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": null,\n        \"PrimaryManager\": null,\n        \"PrimarySalesperson\": null,\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": []\n    }\n]"}],"_postman_id":"705bad26-0e6e-4732-ac10-12b8ed9f6a9d"},{"name":"Search cases","id":"da3fe1b4-810a-4dc2-9e85-e7cb7df34cfc","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/cases?id=<integer>&case_number=<string>&client=<integer>&client_location=<integer>&case_status=<integer>&primary_case_manager=<integer>&primary_contact=<integer>&primary_investigator=<integer>&primary_salesperson=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&series_number=<integer>&series_instance=<integer>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&expand_field_values=<boolean>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Formatted case  number</p>\n","type":"text/plain"},"key":"case_number","value":"<string>"},{"description":{"content":"<p>ID of the client associated with the case</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the case</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>ID of the case status associated with the case</p>\n","type":"text/plain"},"key":"case_status","value":"<integer>"},{"description":{"content":"<p>ID of the primary case manager associated with the case</p>\n","type":"text/plain"},"key":"primary_case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the primary client contact associated with the case</p>\n","type":"text/plain"},"key":"primary_contact","value":"<integer>"},{"description":{"content":"<p>ID of the primary investigator associated with the case</p>\n","type":"text/plain"},"key":"primary_investigator","value":"<integer>"},{"description":{"content":"<p>ID of the primary salesperson associated with the case</p>\n","type":"text/plain"},"key":"primary_salesperson","value":"<integer>"},{"description":{"content":"<p>ID of the primary subject associated with the case</p>\n","type":"text/plain"},"key":"primary_subject","value":"<integer>"},{"description":{"content":"<p>Reference value 1</p>\n","type":"text/plain"},"key":"reference_value_1","value":"<string>"},{"description":{"content":"<p>Reference value 2</p>\n","type":"text/plain"},"key":"reference_value_2","value":"<string>"},{"description":{"content":"<p>Reference value 3</p>\n","type":"text/plain"},"key":"reference_value_3","value":"<string>"},{"description":{"content":"<p>Numeric case series number</p>\n","type":"text/plain"},"key":"series_number","value":"<integer>"},{"description":{"content":"<p>Numeric case series instance</p>\n","type":"text/plain"},"key":"series_instance","value":"<integer>"},{"description":{"content":"<p>ID of the workflow associated with the case</p>\n","type":"text/plain"},"key":"workflow","value":"<integer>"},{"description":{"content":"<p>ISO date the case was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_from_system","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_to_system","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the case was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ef3840b2-6aab-4741-8f80-20b869c51cb8","name":"Search cases","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/cases?id=<integer>&case_number=<string>&client=<integer>&client_location=<integer>&case_status=<integer>&primary_case_manager=<integer>&primary_contact=<integer>&primary_investigator=<integer>&primary_salesperson=<integer>&primary_subject=<integer>&reference_value_1=<string>&reference_value_2=<string>&reference_value_3=<string>&series_number=<integer>&series_instance=<integer>&workflow=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&expand_field_values=<boolean>&page=<integer>","host":["/api/v1"],"path":["cases"],"query":[{"key":"id","value":"<integer>","description":"ID of the case"},{"key":"case_number","value":"<string>","description":"Formatted case  number"},{"key":"client","value":"<integer>","description":"ID of the client associated with the case"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the case"},{"key":"case_status","value":"<integer>","description":"ID of the case status associated with the case"},{"key":"primary_case_manager","value":"<integer>","description":"ID of the primary case manager associated with the case"},{"key":"primary_contact","value":"<integer>","description":"ID of the primary client contact associated with the case"},{"key":"primary_investigator","value":"<integer>","description":"ID of the primary investigator associated with the case"},{"key":"primary_salesperson","value":"<integer>","description":"ID of the primary salesperson associated with the case"},{"key":"primary_subject","value":"<integer>","description":"ID of the primary subject associated with the case"},{"key":"reference_value_1","value":"<string>","description":"Reference value 1"},{"key":"reference_value_2","value":"<string>","description":"Reference value 2"},{"key":"reference_value_3","value":"<string>","description":"Reference value 3"},{"key":"series_number","value":"<integer>","description":"Numeric case series number"},{"key":"series_instance","value":"<integer>","description":"Numeric case series instance"},{"key":"workflow","value":"<integer>","description":"ID of the workflow associated with the case"},{"key":"created_from","value":"<datestamp>","description":"ISO date the case was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the case was created \"to\""},{"key":"created_from_system","value":"<datestamp>","description":"ISO date the case was created \"from\" (immutable)"},{"key":"created_to_system","value":"<datestamp>","description":"ISO date the case was created \"from\" (immutable)"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the case was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the case was updated \"to\""},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"250.00\",\n        \"expense_hour_total\": \"5.00\",\n        \"expense_budget_hour_total\": \"5.00\",\n        \"invoice_estimate\": \"385.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": false,\n        \"last_status_change_at\": \"2026-02-02 21:31:12\",\n        \"referral_source_id\": null,\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 21:31:12\",\n        \"last_update_at\": \"2026-02-02 21:25:12\",\n        \"rating_average\": null,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"phone_home\": \"555-555-5557\",\n            \"phone_mobile\": \"555-555-5556\",\n            \"phone_office\": \"555-555-5555\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"PrimaryManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"PrimarySalesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": {\n            \"61\": {\n                \"casefile_id\": \"3\",\n                \"field_id\": \"61\",\n                \"case_field_rank\": \"1\",\n                \"value\": \"Hill Valley University\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"61\",\n                    \"name\": \"Insured\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"due_on\": \"2026-02-09\",\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"budget_money\": \"1000.00\",\n        \"budget_hours\": \"24.00\",\n        \"expense_total\": \"0.00\",\n        \"expense_hour_total\": \"0.00\",\n        \"expense_budget_hour_total\": \"0.00\",\n        \"invoice_estimate\": \"0.00\",\n        \"invoice_total\": \"0.00\",\n        \"admin_notes\": \"Neque dolorem culpa laudantium aut ea sit qui.\",\n        \"notes\": \"Delectus culpa qui. Et blanditiis alias non. Temporibus dolores blanditiis dolores delectus fugiat occaecati dolores consectetur totam. Laboriosam dolorem sint eum exercitationem molestias. Qui sint similique autem rerum et ad dolore.\",\n        \"scheduling_notes\": \"Est soluta natus saepe non.\",\n        \"is_request\": true,\n        \"last_status_change_at\": \"2026-02-02 20:28:46\",\n        \"referral_source_id\": \"1\",\n        \"company_location_id\": \"2\",\n        \"workflow_id\": \"1\",\n        \"created_at\": \"2026-02-02 20:28:46\",\n        \"opened_at\": null,\n        \"completed_at\": null,\n        \"closed_at\": null,\n        \"updated_at\": \"2026-02-02 20:48:57\",\n        \"last_update_at\": \"2026-02-02 20:28:46\",\n        \"rating_average\": null,\n        \"request_number\": \"REQ-00001\",\n        \"case_or_request_number\": \"REQ-00001\",\n        \"route_prefix\": \"case_request\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"account_code\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"account_code\": null,\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"CaseType\": {\n            \"id\": \"1\",\n            \"name\": \"Workers' Compensation\",\n            \"reference_id\": \"\"\n        },\n        \"CaseRegion\": {\n            \"id\": \"1\",\n            \"name\": \"Local\",\n            \"reference_id\": \"local\"\n        },\n        \"CaseStatus\": {\n            \"id\": \"1\",\n            \"name\": \"New\",\n            \"case_status_category\": \"1\",\n            \"is_readonly\": false\n        },\n        \"PrimaryContact\": {\n            \"id\": \"2\",\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"phone_home\": \"\",\n            \"phone_mobile\": \"\",\n            \"phone_office\": \"\",\n            \"account_code\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\"\n        },\n        \"PrimarySubject\": {\n            \"id\": \"1\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"PrimaryInvestigator\": null,\n        \"PrimaryManager\": null,\n        \"PrimarySalesperson\": null,\n        \"CaseFlags\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Rush\",\n                \"reference_id\": \"rush\"\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Suspected Fraud\",\n                \"reference_id\": \"fraud\"\n            }\n        ],\n        \"CaseServices\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Surveillance\",\n                \"reference_id\": null\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Background Check\",\n                \"reference_id\": null\n            }\n        ],\n        \"CaseFieldGroup\": []\n    }\n]"}],"_postman_id":"da3fe1b4-810a-4dc2-9e85-e7cb7df34cfc"},{"name":"Create a case","id":"e74d81a0-b3a9-41cd-9afc-6c805ac001f5","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"ad maiores perspiciatis\",\n      \"reference_value_2\": \"enim laborum dolor\",\n      \"reference_value_3\": \"omnis qui totam\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Greeley\",\n      \"budget_money\": \"197\",\n      \"budget_hours\": \"332\",\n      \"notes\": \"Nesciunt omnis ut fugit ea earum sapiente. Sequi eos ex ipsum voluptatem sint necessitatibus. Veniam debitis ducimus distinctio quae. Excepturi voluptatem molestias quaerat doloremque quo optio. Itaque velit quod aut sint recusandae. Ab sit voluptatum eos deserunt qui in est.\",\n      \"scheduling_notes\": \"Nihil necessitatibus sint quis laudantium architecto.}\",\n      \"admin_notes\": \"Odio cumque ipsam est est cupiditate laboriosam rem minus.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Ole\",\n                    \"middle_name\": \"Toy\",\n                    \"last_name\": \"Dooley\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Ad suscipit dolorem dolores.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Est optio ipsum voluptatum ea ab quo tenetur. Ut quo earum qui exercitationem minus laudantium quidem consequuntur eum. Ad totam voluptatem ullam. Quam et beatae quia dicta blanditiis. Est quasi necessitatibus in laborum excepturi sint maiores quam et.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"67348 Osvaldo Avenue\",\n                    \"address_2\": \"Apt #569\",\n                    \"address_3\": \"\",\n                    \"city\": \"Abigailberg\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c1b065ec-7243-410b-9697-d1ae3b586238","name":"Create a case","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"sunt corrupti ea\",\n      \"reference_value_2\": \"repellat aut porro\",\n      \"reference_value_3\": \"nisi qui laudantium\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Louveniatown\",\n      \"budget_money\": \"413\",\n      \"budget_hours\": \"956\",\n      \"notes\": \"Qui itaque aliquid qui voluptatum. Quia ex alias quos omnis dignissimos illum. Impedit et ut repellendus provident voluptatibus praesentium eum quaerat. Sed adipisci iure labore omnis omnis. Nihil saepe praesentium enim assumenda est et qui.\",\n      \"scheduling_notes\": \"Beatae aut cupiditate quod vero quia cumque et ad praesentium.}\",\n      \"admin_notes\": \"Sit voluptate sit dolor consequuntur in modi in magni.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Stephania\",\n                    \"middle_name\": \"Michel\",\n                    \"last_name\": \"Haley\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Officia consequatur sunt repellendus cum nulla eum possimus autem.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Qui atque dolores architecto. Non molestiae ipsum tenetur sequi eum voluptatem. Voluptatem mollitia rem provident. Minus laboriosam consequatur voluptatibus fuga reprehenderit. Sapiente consequatur qui molestiae ut aut consequuntur odio. Ut dolore autem.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"166 Don Dale\",\n                    \"address_2\": \"Apt #148\",\n                    \"address_3\": \"\",\n                    \"city\": \"West Kaciland\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"series_number\": \"2\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"eum quasi aliquam\",\n    \"reference_value_2\": \"suscipit sed sequi\",\n    \"reference_value_3\": \"non non laborum\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"New Lacy\",\n    \"budget_money\": \"415.00\",\n    \"budget_hours\": \"945.00\",\n    \"expense_total\": \"0.00\",\n    \"expense_hour_total\": \"0.00\",\n    \"expense_budget_hour_total\": \"0.00\",\n    \"invoice_estimate\": \"0.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Eos voluptates ullam rerum aspernatur.\",\n    \"notes\": \"Unde illum veritatis quis cupiditate consequatur. Eveniet repudiandae possimus repudiandae enim sed est praesentium. Odio reprehenderit aut et reprehenderit laboriosam. Et occaecati amet voluptatem dolores. Accusamus quam at ea neque saepe aut maxime recusandae itaque.\",\n    \"scheduling_notes\": \"Iusto enim ut architecto at cum tempore.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:33:48\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 21:33:48\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:33:48\",\n    \"last_update_at\": \"2026-02-02 21:33:48\",\n    \"rating_average\": null,\n    \"case_number\": \"00002WC-01\",\n    \"case_or_request_number\": \"00002WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\"\n    },\n    \"PrimaryInvestigator\": null,\n    \"PrimaryManager\": null,\n    \"PrimarySalesperson\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"4\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"},{"id":"293e54ba-8c1f-4125-8cea-a4378e8edf08","name":"Create a case with custom fields","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n      \"case_type_id\": \"<integer>\",\n      \"client_id\": \"<integer>\",\n      \"primary_contact_id\": \"<integer>\",\n      \"case_region_id\": \"<integer>\",\n      \"created_on\": \"<datestamp>\",\n      \"company_location_id\": \"<integer>\",\n      \"reference_value_1\": \"magnam molestiae soluta\",\n      \"reference_value_2\": \"fugit qui corrupti\",\n      \"reference_value_3\": \"at veniam dolore\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"South Aniya\",\n      \"budget_money\": \"280\",\n      \"budget_hours\": \"77\",\n      \"notes\": \"Veniam tempora odit rerum. Nulla quasi illo. Ex aperiam nostrum perferendis aut corporis. Dolorem rerum repellendus possimus excepturi excepturi. Qui quia et doloremque.\",\n      \"scheduling_notes\": \"Similique voluptatem qui officiis voluptatum nemo dolores quae aut quisquam.}\",\n      \"admin_notes\": \"Nihil quo fugit voluptatem odio perspiciatis sapiente voluptatem maiores velit.\",\n      \"case_services_list\": [<integer>,<integer>],\n      \"case_flags_list\": [<integer>,<integer>],\n      \"custom_fields\": [\n    \t{\n    \t\t\"id\": \"<integer>\",\n    \t\t\"value\": \"suscipit nisi qui\"\n    \t}\n  \t  ],\n      \"subjects\": [\n        {\n            \"subject_type_id\": \"<integer>\",\n            \"is_primary\": true,\n            \"is_pinned\": true,\n            \"custom_fields\": [\n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"first_name\": \"Kiley\",\n                    \"middle_name\": \"Sammie\",\n                    \"last_name\": \"Graham\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Excepturi nostrum modi quia nesciunt esse blanditiis corporis.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Omnis iusto non in. Inventore nihil vitae est tempora hic et id dicta. Aperiam unde sunt in architecto.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"39201 Kristofer Stream\",\n                    \"address_2\": \"Apt #621\",\n                    \"address_3\": \"\",\n                    \"city\": \"Champlinstad\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"series_number\": \"3\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-02\",\n    \"due_on\": \"2026-02-09\",\n    \"reference_value_1\": \"tenetur vero quae\",\n    \"reference_value_2\": \"aut earum qui\",\n    \"reference_value_3\": \"est aut laborum\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"East Reanna\",\n    \"budget_money\": \"445.00\",\n    \"budget_hours\": \"191.00\",\n    \"expense_total\": \"0.00\",\n    \"expense_hour_total\": \"0.00\",\n    \"expense_budget_hour_total\": \"0.00\",\n    \"invoice_estimate\": \"0.00\",\n    \"invoice_total\": \"0.00\",\n    \"admin_notes\": \"Fuga voluptate consequatur reprehenderit doloremque.\",\n    \"notes\": \"Non esse alias sit voluptas tenetur. Voluptates quia aperiam. Fugit ut harum distinctio ad doloremque ut commodi ea.\",\n    \"scheduling_notes\": \"Et eos velit maiores dignissimos amet quod.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-02 21:38:18\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 21:38:18\",\n    \"opened_at\": null,\n    \"completed_at\": null,\n    \"closed_at\": null,\n    \"updated_at\": \"2026-02-02 21:38:18\",\n    \"last_update_at\": \"2026-02-02 21:38:18\",\n    \"rating_average\": null,\n    \"case_number\": \"00003WC-01\",\n    \"case_or_request_number\": \"00003WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"account_code\": null,\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"1\",\n        \"name\": \"New\",\n        \"case_status_category\": \"1\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_office\": \"\",\n        \"account_code\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\"\n    },\n    \"PrimaryInvestigator\": null,\n    \"PrimaryManager\": null,\n    \"PrimarySalesperson\": null,\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"5\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"sequi expedita culpa\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e74d81a0-b3a9-41cd-9afc-6c805ac001f5"},{"name":"Update a case","id":"00ba831d-9b78-4613-b6b5-9e2455f67227","protocolProfileBehavior":{"disableBodyPruning":true,"disabledSystemHeaders":{},"protocolVersion":"auto"},"request":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"reference_value_1\": \"dicta praesentium repellat\",\n    \"reference_value_2\": \"officia nihil sunt\",\n    \"reference_value_3\": \"ea qui harum\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Albany\",\n    \"notes\": \"Quia in voluptate autem laudantium. Quis consectetur dolores amet qui. Et velit porro quaerat praesentium.\",\n    \"scheduling_notes\": \"Veritatis iste consectetur dolorum in.}\",\n    \"admin_notes\": \"Ipsam enim rem iusto quidem tenetur.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/cases/:case_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["cases",":case_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the case</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"case_id"}]}},"response":[{"id":"ef46dd7b-0bfe-4dbe-93fa-6c06398ad788","name":"Update a case","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"casefile\": {\n    \"case_region_id\": \"<integer>\",\n    \"created_on\": \"<datestamp>\",\n    \"company_location_id\": \"<integer>\",\n    \"reference_value_1\": \"velit omnis aliquam\",\n    \"reference_value_2\": \"rerum aut deleniti\",\n    \"reference_value_3\": \"nihil reprehenderit ea\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Sauerfurt\",\n    \"notes\": \"Necessitatibus ullam aliquam minima veniam. Nisi sed eos voluptas incidunt est quia consequatur consequatur. Labore quo tenetur quisquam. Placeat est tempore dolore et eos recusandae. Cumque illo ut. Excepturi sint saepe.\",\n    \"scheduling_notes\": \"Itaque qui deleniti nostrum inventore distinctio libero dolorem.}\",\n    \"admin_notes\": \"Nihil facere ullam fuga quas distinctio voluptatum est dolorem.\",\n    \"case_services_list\": [<integer>,<integer>],\n    \"case_flags_list\": [<integer>,<integer>]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/cases/:case_id","host":["/api/v1"],"path":["cases",":case_id"],"variable":[{"key":"case_id","value":"<integer>","description":"ID of the case"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"series_number\": \"1\",\n    \"case_type_tag\": \"WC\",\n    \"series_instance\": \"1\",\n    \"created_on\": \"2026-02-03\",\n    \"due_on\": \"2026-02-10\",\n    \"reference_value_1\": \"natus voluptatem dolorem\",\n    \"reference_value_2\": \"blanditiis ea ea\",\n    \"reference_value_3\": \"beatae nam eligendi\",\n    \"case_country\": \"US\",\n    \"case_state\": \"CO\",\n    \"case_location\": \"Paucekmouth\",\n    \"budget_money\": \"1000.00\",\n    \"budget_hours\": \"24.00\",\n    \"expense_total\": \"1154933.01\",\n    \"expense_hour_total\": \"1424.00\",\n    \"expense_budget_hour_total\": \"1424.00\",\n    \"invoice_estimate\": \"107366.00\",\n    \"invoice_total\": \"537.50\",\n    \"admin_notes\": \"Ipsum ullam ab.\",\n    \"notes\": \"Vel hic impedit eos voluptatem qui earum. Voluptates occaecati officiis quaerat dolorem deleniti. Et molestiae quia assumenda sit libero dignissimos tenetur et. Consequatur officia voluptates asperiores tempore nihil voluptatem. Est laboriosam voluptatem et qui voluptatibus ipsum. Sunt non porro velit in quia dolores tempore ut laudantium.\",\n    \"scheduling_notes\": \"Nesciunt aut sit minima non nesciunt.}\",\n    \"is_request\": false,\n    \"last_status_change_at\": \"2026-02-03 16:11:02\",\n    \"referral_source_id\": \"1\",\n    \"company_location_id\": \"2\",\n    \"workflow_id\": \"1\",\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"opened_at\": \"2026-02-03 16:10:30\",\n    \"completed_at\": \"2026-02-03 16:10:30\",\n    \"closed_at\": \"2026-02-03 16:11:02\",\n    \"updated_at\": \"2026-02-03 18:22:03\",\n    \"last_update_at\": \"2026-02-02 21:25:12\",\n    \"rating_average\": null,\n    \"case_number\": \"00001WC-01\",\n    \"case_or_request_number\": \"00001WC-01\",\n    \"route_prefix\": \"case\",\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"CaseType\": {\n        \"id\": \"1\",\n        \"name\": \"Workers' Compensation\",\n        \"reference_id\": \"\"\n    },\n    \"CaseRegion\": {\n        \"id\": \"1\",\n        \"name\": \"Local\",\n        \"reference_id\": \"local\"\n    },\n    \"CaseStatus\": {\n        \"id\": \"7\",\n        \"name\": \"Closed\",\n        \"case_status_category\": \"4\",\n        \"is_readonly\": false\n    },\n    \"PrimaryContact\": {\n        \"id\": \"2\",\n        \"first_name\": \"Virginia\",\n        \"last_name\": \"Kuhn\",\n        \"email\": \"Wallace61@example.net\",\n        \"phone_home\": \"896-830-8304\",\n        \"phone_mobile\": \"206-795-4505\",\n        \"phone_office\": \"223-637-5881 99-636-381-8566\",\n        \"account_code\": \"velit-soluta-ut\",\n        \"name\": \"Kuhn, Virginia\",\n        \"proper_name\": \"Virginia Kuhn\"\n    },\n    \"PrimarySubject\": {\n        \"id\": \"6\",\n        \"name\": \"Terry, Mona Lauretta\"\n    },\n    \"PrimaryInvestigator\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_office\": \"555-555-5555\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"PrimaryManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"phone_home\": \"271-735-9609\",\n        \"phone_mobile\": \"775-495-5387\",\n        \"phone_office\": \"546-505-4894 x952\",\n        \"account_code\": \"nobis-quibusdam-omnis\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"PrimarySalesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"phone_home\": \"271-735-9609\",\n        \"phone_mobile\": \"775-495-5387\",\n        \"phone_office\": \"546-505-4894 x952\",\n        \"account_code\": \"nobis-quibusdam-omnis\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"CaseFlags\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Rush\",\n            \"reference_id\": \"rush\"\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Suspected Fraud\",\n            \"reference_id\": \"fraud\"\n        }\n    ],\n    \"CaseServices\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\",\n            \"reference_id\": null\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Background Check\",\n            \"reference_id\": null\n        }\n    ],\n    \"CaseFieldGroup\": {\n        \"61\": {\n            \"casefile_id\": \"3\",\n            \"field_id\": \"61\",\n            \"case_field_rank\": \"1\",\n            \"value\": \"Hill Valley University\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"61\",\n                \"name\": \"Insured\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"00ba831d-9b78-4613-b6b5-9e2455f67227"}],"id":"afd1c3ac-adb1-40d2-83e3-5216fe8c5f4b","description":"<p>Cases are the core objects that store the majority of data throughout the system. Other objects, such as subjects, cannot exist on their own without a case.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338303-How-to-Create-a-New-Case\">How to Create a New Case</a></p>\n","_postman_id":"afd1c3ac-adb1-40d2-83e3-5216fe8c5f4b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Contacts","item":[{"name":"Client Contact Notes","item":[{"name":"List client contact notes","id":"19a4dd77-c763-41b2-9dc8-1bd72be15356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"053b610c-16d7-4ba3-9f20-95d39ef1a748","name":"List client contact notes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"body\": \"- Reviewed contract with client.\",\n        \"note_date\": \"2026-02-02\",\n        \"is_pinned\": true,\n        \"created_at\": \"2026-02-02 21:40:05\",\n        \"updated_at\": \"2026-02-02 21:40:05\",\n        \"User\": {\n            \"id\": \"2\",\n            \"account_code\": null,\n            \"first_name\": \"Sample\",\n            \"last_name\": \"Contact\",\n            \"email\": null,\n            \"name\": \"Contact, Sample\",\n            \"proper_name\": \"Sample Contact\",\n            \"Location\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"19a4dd77-c763-41b2-9dc8-1bd72be15356"},{"name":"Get a client contact note","id":"933d5bb2-39aa-4231-bbb8-15a61a617dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contact/notes/:client_contact_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes",":client_contact_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_note_id"}]}},"response":[{"id":"21535d0b-2079-4329-8e6f-2bd0546c9ef2","name":"Get a client contact note","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contact/notes/:client_contact_note_id","host":["/api/v1"],"path":["client","contact","notes",":client_contact_note_id"],"variable":[{"key":"client_contact_note_id","value":"<integer>","description":"ID of the client contact note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"body\": \"- Reviewed contract with client.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:40:05\",\n    \"updated_at\": \"2026-02-02 21:40:05\",\n    \"User\": {\n        \"id\": \"2\",\n        \"account_code\": null,\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"933d5bb2-39aa-4231-bbb8-15a61a617dad"},{"name":"Create a client contact note","id":"9204272a-f962-4d46-95b6-f032dd3887f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact_note\": {\n     \"user_id\": \"<integer>\",\n     \"author_id\": \"<integer>\",\n     \"access_group_id\": \"<integer>\",\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Id sed necessitatibus expedita in mollitia eum. Hic nemo eos distinctio ea minus dolorem.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"406902c8-11c6-4d53-9911-71c4f2c164ab","name":"Create a client contact note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact_note\": {\n     \"user_id\": \"<integer>\",\n     \"author_id\": \"<integer>\",\n     \"access_group_id\": \"<integer>\",\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Ut maiores hic dignissimos est et harum molestias amet ullam. Rem autem culpa harum magnam aliquam minima illo. Aliquid consectetur voluptatem omnis earum esse natus non voluptas ut. Et voluptates fugiat excepturi nesciunt quam rerum natus quod eos. Eos fugit sint aut est accusamus ut.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"body\": \"Fuga veritatis et molestiae excepturi et. Asperiores ab laudantium aperiam sint est. Iste natus et voluptatibus blanditiis quia. Officiis quaerat ut et dolorem. Quae id optio accusantium quam rem omnis. Illo quia laudantium enim sequi aut nesciunt adipisci.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:41:18\",\n    \"updated_at\": \"2026-02-02 21:41:18\",\n    \"User\": {\n        \"id\": \"2\",\n        \"account_code\": null,\n        \"first_name\": \"Sample\",\n        \"last_name\": \"Contact\",\n        \"email\": null,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"9204272a-f962-4d46-95b6-f032dd3887f9"}],"id":"7e7f208f-2a95-465a-ae1c-d0fde499734b","_postman_id":"7e7f208f-2a95-465a-ae1c-d0fde499734b","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Contact Policies","item":[{"name":"Get a client contact policy","id":"7172e252-0277-4ded-99d7-72a528230325","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/contact/policies/:policy_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","policies",":policy_id"],"host":["/api/v1"],"query":[],"variable":[{"type":"any","value":"<integer>","key":"policy_id"}]}},"response":[{"id":"65f4d4c6-3ab3-4b6f-9bd6-8402772ee8e3","name":"Get a client contact policy","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/contact/policies/:policy_id","host":["/api/v1"],"path":["client","contact","policies",":policy_id"],"variable":[{"key":"policy_id","value":"<integer>","description":"ID of the policy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"priority\": \"1\",\n    \"action_type\": \"5\",\n    \"title\": \"Stephen Harmony Case Setup Rules\",\n    \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n    \"has_acknowledgment\": true,\n    \"created_at\": \"2026-05-14 20:01:29\",\n    \"updated_at\": \"2026-05-14 20:01:29\",\n    \"Module\": {\n        \"id\": \"2\",\n        \"name\": \"Case\"\n    },\n    \"User\": {\n        \"id\": \"4\",\n        \"first_name\": \"Stephen\",\n        \"last_name\": \"Ferry\",\n        \"email\": \"Travon.Price99@example.org\",\n        \"name\": \"Ferry, Stephen\",\n        \"proper_name\": \"Stephen Ferry\"\n    },\n    \"action_type_label\": \"Create\"\n}"}],"_postman_id":"7172e252-0277-4ded-99d7-72a528230325"},{"name":"List client contact policies","id":"01cde889-5226-4a60-9d16-61413d1249a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/contact/policies","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","policies"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"94fc9a9e-08a0-4422-ab6f-5333424181cc","name":"List client contact policies","originalRequest":{"method":"GET","header":[],"url":"/api/v1/client/contact/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"priority\": \"1\",\n        \"action_type\": \"5\",\n        \"title\": \"Stephen Harmony Case Setup Rules\",\n        \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n        \"has_acknowledgment\": true,\n        \"created_at\": \"2026-05-14 20:01:29\",\n        \"updated_at\": \"2026-05-14 20:01:29\",\n        \"Module\": {\n            \"id\": \"2\",\n            \"name\": \"Case\"\n        },\n        \"User\": {\n            \"id\": \"4\",\n            \"first_name\": \"Stephen\",\n            \"last_name\": \"Ferry\",\n            \"email\": \"Travon.Price99@example.org\",\n            \"name\": \"Ferry, Stephen\",\n            \"proper_name\": \"Stephen Ferry\"\n        },\n        \"action_type_label\": \"Create\"\n    }\n]"}],"_postman_id":"01cde889-5226-4a60-9d16-61413d1249a2"},{"name":"Search client contact policies","id":"423f38e9-8605-4a19-bd23-9a068a07e17d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/contact/policies?id=<integer>&user=<integer>&module=<integer>&action_type=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contact","policies"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the policy</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the client contact</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the module (category) the policy belongs to</p>\n","type":"text/plain"},"key":"module","value":"<integer>"},{"description":{"content":"<p>ID of the type of action the policy is associated with</p>\n","type":"text/plain"},"key":"action_type","value":"<integer>"}],"variable":[]}},"response":[{"id":"481dac82-7fa1-4ae4-a62c-c23c9860ce2b","name":"Search client contact policies","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/contact/policies?id=<integer>&user=<integer>&module=<integer>&action_type=<integer>","host":["/api/v1"],"path":["client","contact","policies"],"query":[{"key":"id","value":"<integer>","description":"ID of the policy"},{"key":"user","value":"<integer>","description":"ID of the client contact"},{"key":"module","value":"<integer>","description":"ID of the module (category) the policy belongs to"},{"key":"action_type","value":"<integer>","description":"ID of the type of action the policy is associated with"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-18841f713ba2dc5653ac3fb76a577403' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"2"},{"key":"date","value":"Thu, 14 May 2026 20:21:36 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"priority\": \"1\",\n        \"action_type\": \"5\",\n        \"title\": \"Stephen Harmony Case Setup Rules\",\n        \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n        \"has_acknowledgment\": true,\n        \"created_at\": \"2026-05-14 20:01:29\",\n        \"updated_at\": \"2026-05-14 20:01:29\",\n        \"Module\": {\n            \"id\": \"2\",\n            \"name\": \"Case\"\n        },\n        \"User\": {\n            \"id\": \"4\",\n            \"first_name\": \"Stephen\",\n            \"last_name\": \"Ferry\",\n            \"email\": \"Travon.Price99@example.org\",\n            \"name\": \"Ferry, Stephen\",\n            \"proper_name\": \"Stephen Ferry\"\n        },\n        \"action_type_label\": \"Create\"\n    }\n]"}],"_postman_id":"423f38e9-8605-4a19-bd23-9a068a07e17d"}],"id":"efd4f1d3-a210-497e-b388-932705044e15","_postman_id":"efd4f1d3-a210-497e-b388-932705044e15","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a client contact","id":"9702f5ab-e891-4039-a724-287456bf0fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts/:client_contact_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts",":client_contact_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_id"}]}},"response":[{"id":"01976de5-482f-485d-b3a2-0bd5ab6603dd","name":"Get a client contact","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contacts/:client_contact_id","host":["/api/v1"],"path":["client","contacts",":client_contact_id"],"variable":[{"key":"client_contact_id","value":"<integer>","description":"ID of the client contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"first_name\": \"Sample\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Contact\",\n    \"title\": \"\",\n    \"email\": null,\n    \"phone_home\": \"\",\n    \"phone_mobile\": \"\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"\",\n    \"phone_fax\": \"\",\n    \"address_1\": null,\n    \"address_2\": null,\n    \"address_3\": null,\n    \"city\": null,\n    \"state\": null,\n    \"zip\": null,\n    \"country\": \"US\",\n    \"latitude\": null,\n    \"longitude\": null,\n    \"birthday\": null,\n    \"account_code\": null,\n    \"notes\": null,\n    \"admin_notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:30\",\n    \"updated_at\": \"2011-04-04 23:15:30\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": false,\n    \"is_login_active\": false,\n    \"name\": \"Contact, Sample\",\n    \"proper_name\": \"Sample Contact\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"9702f5ab-e891-4039-a724-287456bf0fd2"},{"name":"List client contacts","id":"17e33d3e-2d26-4919-acb5-c79a4490f723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2a4fcab3-ec7d-46e0-b991-7306e32aba68","name":"List client contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Contact\",\n        \"title\": \"\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": null,\n        \"address_2\": null,\n        \"address_3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"birthday\": null,\n        \"account_code\": null,\n        \"notes\": null,\n        \"admin_notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:30\",\n        \"updated_at\": \"2011-04-04 23:15:30\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            },\n            \"Salesperson\": null\n        },\n        \"Role\": {\n            \"id\": \"6\",\n            \"name\": \"Client User\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"17e33d3e-2d26-4919-acb5-c79a4490f723"},{"name":"Search client contacts","id":"01891c54-d2b0-4c61-8c80-48ce1a1090fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/contacts?id=<integer>&account_code=<string>&client=<integer>&client_location=<integer>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&with_tags=<boolean>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the contact</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the contact</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>ID of the client associated with the contact</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the contact</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>Email address associated with the contact</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>First name of the contact</p>\n","type":"text/plain"},"key":"first_name","value":"<string>"},{"description":{"content":"<p>Last name of the contact</p>\n","type":"text/plain"},"key":"last_name","value":"<string>"},{"description":{"content":"<p>ID of the user role associated with the contact</p>\n","type":"text/plain"},"key":"role","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Optionally includes user tags</p>\n","type":"text/plain"},"key":"with_tags","value":"<boolean>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"9ca9febb-00f9-4513-a478-1a20513da356","name":"Search client contacts","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/contacts?id=<integer>&account_code=<string>&client=<integer>&client_location=<integer>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&with_tags=<boolean>&expand_field_values=<boolean>","host":["/api/v1"],"path":["client","contacts"],"query":[{"key":"id","value":"<integer>","description":"ID of the contact"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the contact"},{"key":"client","value":"<integer>","description":"ID of the client associated with the contact"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the contact"},{"key":"email","value":"<string>","description":"Email address associated with the contact"},{"key":"first_name","value":"<string>","description":"First name of the contact"},{"key":"last_name","value":"<string>","description":"Last name of the contact"},{"key":"role","value":"<integer>","description":"ID of the user role associated with the contact"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"with_tags","value":"<boolean>","description":"Optionally includes user tags","type":"text"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"first_name\": \"Sample\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Contact\",\n        \"title\": \"\",\n        \"email\": null,\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": null,\n        \"address_2\": null,\n        \"address_3\": null,\n        \"city\": null,\n        \"state\": null,\n        \"zip\": null,\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"birthday\": null,\n        \"account_code\": null,\n        \"notes\": null,\n        \"admin_notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:30\",\n        \"updated_at\": \"2011-04-04 23:15:30\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Contact, Sample\",\n        \"proper_name\": \"Sample Contact\",\n        \"Location\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Sample Client\",\n                \"route_prefix\": \"client\"\n            },\n            \"Salesperson\": null\n        },\n        \"Role\": {\n            \"id\": \"6\",\n            \"name\": \"Client User\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"01891c54-d2b0-4c61-8c80-48ce1a1090fa"},{"name":"Create a client contact","id":"85987e25-38b6-4eb3-bdeb-ba8fa249048a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"case_manager_id\": \"<integer>\",\n     \"salesperson_id\": \"<integer>\",\n     \"first_name\": \"Otilia\",\n     \"middle_name\": \"Taylor\",\n     \"last_name\": \"Haley\",\n     \"title\": \"National Response Consultant\",\n     \"email\": \"Gail.Mosciski@example.net\",\n     \"phone_home\": \"517-977-9854\",\n     \"phone_mobile\": \"897-744-6397\",\n     \"phone_office\": \"445-554-7121 76-852-355-0792\",\n     \"phone_fax\": \"918-922-6923\",\n     \"address_1\": \"162 Boyer Pass\",\n     \"address_2\": \"STE 571\",\n     \"address_3\": \"\",\n     \"city\": \"Jasonside\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"quia-dolor-iste\",\n     \"notes\": \"Qui deleniti et occaecati ducimus alias quo dolorum. Nobis eum voluptatem accusamus. Voluptas omnis tenetur fuga. Voluptatem dolorem sed facilis officia aut similique incidunt ea. Debitis qui ratione quia. Nam dolor sed velit assumenda esse voluptas quisquam porro.\",\n     \"admin_notes\": \"Nesciunt dolorum quasi non fugiat. Alias dolorem veritatis ut. Ducimus quidem voluptatem fugit voluptatum sapiente. Omnis saepe veniam natus voluptatem beatae id sed. Distinctio consequatur voluptatem.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"sapiente\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"51eff0d9-69ec-40b6-a9de-6f414e9f20b5","name":"Create a client contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"case_manager_id\": \"<integer>\",\n     \"salesperson_id\": \"<integer>\",\n     \"first_name\": \"Oleta\",\n     \"middle_name\": \"Lucy\",\n     \"last_name\": \"Collins\",\n     \"title\": \"Regional Mobility Administrator\",\n     \"email\": \"Jamaal.McCullough40@example.org\",\n     \"phone_home\": \"605-428-5620\",\n     \"phone_mobile\": \"502-425-0518\",\n     \"phone_office\": \"490-761-7454 43-237-795-3623\",\n     \"phone_fax\": \"362-265-5897\",\n     \"address_1\": \"08255 Ondricka Pines\",\n     \"address_2\": \"STE 946\",\n     \"address_3\": \"\",\n     \"city\": \"Skilesfort\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"non-harum-qui\",\n     \"notes\": \"Odit aut quae quia accusamus. Quia id neque id rerum non praesentium quaerat. Aliquam voluptas et accusantium delectus sed sit aut occaecati eum.\",\n     \"admin_notes\": \"Voluptas mollitia distinctio eum animi esse. Quisquam ducimus vel ad temporibus dicta et dignissimos perspiciatis ratione. Soluta et eos ratione magnam est aperiam.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"ut\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"10\",\n    \"first_name\": \"Candace\",\n    \"middle_name\": \"Leonardo\",\n    \"last_name\": \"Bauch\",\n    \"title\": \"Product Program Designer\",\n    \"email\": \"Mack_Franecki60@example.net\",\n    \"phone_home\": \"287-818-2099\",\n    \"phone_mobile\": \"607-212-5528\",\n    \"phone_mobile_carrier\": null,\n    \"phone_office\": \"746-761-7945 98-484-627-5447\",\n    \"phone_fax\": \"769-601-8523\",\n    \"address_1\": \"833 Schinner Via\",\n    \"address_2\": \"STE 535\",\n    \"address_3\": \"\",\n    \"city\": \"Gloverport\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"tenetur-nostrum-eius\",\n    \"notes\": \"Maiores cupiditate quia vel et voluptas. Ipsa sint minima ut expedita a numquam minima et. Voluptate dolores possimus adipisci ipsum non illo aut qui. Ut nihil dolorem odit officiis et perspiciatis eveniet. Numquam cupiditate et totam voluptate nulla ad adipisci.\",\n    \"admin_notes\": \"Tenetur incidunt ut rerum vel praesentium odio ipsa. Facilis voluptas sit ut aut numquam ratione eveniet. Atque voluptatem et rerum quod deleniti. Soluta fugiat cum libero qui voluptatem ratione perspiciatis autem quae.\",\n    \"created_at\": \"2026-06-16 17:59:27\",\n    \"updated_at\": \"2026-06-16 17:59:27\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"Bauch, Candace Leonardo\",\n    \"proper_name\": \"Candace Leonardo Bauch\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"West Ed Office\",\n        \"address_1\": \"359 Judson Bypass\",\n        \"address_2\": \"STE 881\",\n        \"address_3\": \"\",\n        \"city\": \"Walterview\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": {\n        \"64\": {\n            \"user_id\": \"10\",\n            \"field_id\": \"64\",\n            \"value\": \"dolorum\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"64\",\n                \"name\": \"Department\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"85987e25-38b6-4eb3-bdeb-ba8fa249048a"},{"name":"Update a client contact","id":"f075d471-998c-491f-9ad3-21a003c849c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"case_manager_id\": \"<integer>\",\n     \"salesperson_id\": \"<integer>\",\n     \"first_name\": \"Jaunita\",\n     \"middle_name\": \"Keshaun\",\n     \"last_name\": \"Klocko\",\n     \"title\": \"Dynamic Factors Manager\",\n     \"email\": \"Jack.Daugherty82@example.net\",\n     \"phone_home\": \"659-278-8040\",\n     \"phone_mobile\": \"323-225-6320\",\n     \"phone_office\": \"246-338-4482 46-663-750-1223\",\n     \"phone_fax\": \"307-818-9429\",\n     \"address_1\": \"15794 Gene Estates\",\n     \"address_2\": \"STE 844\",\n     \"address_3\": \"\",\n     \"city\": \"Noelside\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"accusamus-totam-aut\",\n     \"notes\": \"Ut numquam nam. Et quasi blanditiis blanditiis hic et. Ipsa id est minima. Pariatur sunt atque nesciunt.\",\n     \"admin_notes\": \"Consectetur ipsum eius similique cumque deserunt. Autem doloremque eum voluptas quis nesciunt dolorum voluptatem veritatis. Quasi est mollitia consequatur sit repudiandae saepe et. Et est alias deleniti quia beatae praesentium placeat quibusdam. Ut et et sit voluptatum deleniti.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quia recusandae dolore\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contacts/:client_contact_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","contacts",":client_contact_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client contact</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_contact_id"}]}},"response":[{"id":"b5be99a1-620f-46a8-b44a-f1bcba206ef3","name":"Update a client contact","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"contact\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"case_manager_id\": \"<integer>\",\n     \"salesperson_id\": \"<integer>\",\n     \"first_name\": \"Keenan\",\n     \"middle_name\": \"Abagail\",\n     \"last_name\": \"Kiehn\",\n     \"title\": \"Principal Identity Representative\",\n     \"email\": \"Dario.Welch@example.com\",\n     \"phone_home\": \"854-702-8907\",\n     \"phone_mobile\": \"606-322-3003\",\n     \"phone_office\": \"647-338-4567 33-846-489-4705\",\n     \"phone_fax\": \"260-827-2267\",\n     \"address_1\": \"70448 Pfeffer Brooks\",\n     \"address_2\": \"STE 721\",\n     \"address_3\": \"\",\n     \"city\": \"Stoltenbergfort\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"et-nam-eveniet\",\n     \"notes\": \"Et eum explicabo dolor aut ut. Soluta iste eaque corporis. Sequi quo ut et eos et et facere iusto nam. Culpa aut illum aut voluptates ex. Tempora molestias voluptatem nihil eaque. Reiciendis tempore omnis est sed nesciunt sunt aliquid qui ad.\",\n     \"admin_notes\": \"Praesentium exercitationem doloribus. Nobis cumque sequi voluptatem voluptatem ipsa in minus officia sequi. Et ea ut. Id corporis repellat sint vel ab nemo. Sint velit eius accusamus deserunt voluptatem harum.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"est molestiae illo\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/client/contacts/:client_contact_id","host":["/api/v1"],"path":["client","contacts",":client_contact_id"],"variable":[{"key":"client_contact_id","value":"<integer>","description":"ID of the client contact"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"first_name\": \"Vanessa\",\n    \"middle_name\": \"Alanna\",\n    \"last_name\": \"White\",\n    \"title\": \"Global Quality Analyst\",\n    \"email\": \"Julien82@example.net\",\n    \"phone_home\": \"663-388-6485\",\n    \"phone_mobile\": \"818-751-2633\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"767-624-8704 73-973-233-7698\",\n    \"phone_fax\": \"271-396-5196\",\n    \"address_1\": \"56159 Catharine Coves\",\n    \"address_2\": \"STE 962\",\n    \"address_3\": \"\",\n    \"city\": \"Chayaville\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"nostrum-velit-sint\",\n    \"notes\": \"Sed labore non. Voluptatem nesciunt in laborum. Autem et sint aliquam ipsum. Officiis id nihil aut. Repellendus a labore consectetur omnis voluptas modi aut assumenda.\",\n    \"admin_notes\": \"Quis est quidem saepe repellat aut placeat qui molestiae. Et ab qui reprehenderit odit quia modi ad quo qui. Suscipit commodi assumenda optio debitis et voluptatem. Aut ut ut aut ab. Tempore adipisci ex omnis occaecati.\",\n    \"created_at\": \"2011-04-04 23:15:30\",\n    \"updated_at\": \"2026-06-16 18:01:57\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"White, Vanessa Alanna\",\n    \"proper_name\": \"Vanessa Alanna White\",\n    \"Location\": {\n        \"id\": \"4\",\n        \"name\": \"West Ed Office\",\n        \"address_1\": \"359 Judson Bypass\",\n        \"address_2\": \"STE 881\",\n        \"address_3\": \"\",\n        \"city\": \"Walterview\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    \"Role\": {\n        \"id\": \"6\",\n        \"name\": \"Client User\"\n    },\n    \"UserFieldGroup\": {\n        \"64\": {\n            \"user_id\": \"2\",\n            \"field_id\": \"64\",\n            \"value\": \"corrupti vel sequi\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"64\",\n                \"name\": \"Department\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f075d471-998c-491f-9ad3-21a003c849c9"}],"id":"b50ad3d2-bee5-4a40-9825-6d92480e8bd3","description":"<p>Client contacts are the individual client users who submit case referrals and receive case updates.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338603-Creating-a-New-Client-Contact\">Creating a New Client Contact</a></p>\n","_postman_id":"b50ad3d2-bee5-4a40-9825-6d92480e8bd3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Locations","item":[{"name":"Client Location Policies","item":[{"name":"Get a client location policy","id":"316de427-2bed-47a5-94fd-3f5f36bafe22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/location/policies/:policy_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","location","policies",":policy_id"],"host":["/api/v1"],"query":[],"variable":[{"type":"any","value":"<integer>","key":"policy_id"}]}},"response":[{"id":"2b0aa838-175b-4b66-a347-b029e0c3a46c","name":"Get a client location policy","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/location/policies/:policy_id","host":["/api/v1"],"path":["client","location","policies",":policy_id"],"variable":[{"key":"policy_id","value":"<integer>","description":"ID of the policy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"priority\": \"1\",\n    \"action_type\": \"5\",\n    \"title\": \"West Ed Office New Case Policy\",\n    \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n    \"has_acknowledgment\": true,\n    \"created_at\": \"2026-05-14 20:07:17\",\n    \"updated_at\": \"2026-05-14 20:07:17\",\n    \"Module\": {\n        \"id\": \"2\",\n        \"name\": \"Case\"\n    },\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"West Ed Office\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"action_type_label\": \"Create\"\n}"}],"_postman_id":"316de427-2bed-47a5-94fd-3f5f36bafe22"},{"name":"List client location policies","id":"d702662f-a534-42de-8149-5abb4854327f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/location/policies","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","location","policies"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"751adfd9-7238-40c7-9ad6-446df0743d84","name":"List client location policies","originalRequest":{"method":"GET","header":[],"url":"/api/v1/client/location/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"priority\": \"1\",\n        \"action_type\": \"5\",\n        \"title\": \"West Ed Office New Case Policy\",\n        \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n        \"has_acknowledgment\": true,\n        \"created_at\": \"2026-05-14 20:07:17\",\n        \"updated_at\": \"2026-05-14 20:07:17\",\n        \"Module\": {\n            \"id\": \"2\",\n            \"name\": \"Case\"\n        },\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"West Ed Office\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Homenick Group Location\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"action_type_label\": \"Create\"\n    }\n]"}],"_postman_id":"d702662f-a534-42de-8149-5abb4854327f"},{"name":"Search client location policies","id":"42c1837f-81cf-44e2-a537-eb710080297e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/location/policies?id=<integer>&client=<integer>&module=<integer>&action_type=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","location","policies"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the policy</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the module (category) the policy belongs to</p>\n","type":"text/plain"},"key":"module","value":"<integer>"},{"description":{"content":"<p>ID of the type of action the policy is associated with</p>\n","type":"text/plain"},"key":"action_type","value":"<integer>"}],"variable":[]}},"response":[{"id":"a1ece5cf-46b6-4004-a18c-f51dab442d8c","name":"Search client location policies","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/location/policies?id=<integer>&client=<integer>&module=<integer>&action_type=<integer>","host":["/api/v1"],"path":["client","location","policies"],"query":[{"key":"id","value":"<integer>","description":"ID of the policy"},{"key":"client","value":"<integer>","description":"ID of the client location"},{"key":"module","value":"<integer>","description":"ID of the module (category) the policy belongs to"},{"key":"action_type","value":"<integer>","description":"ID of the type of action the policy is associated with"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"priority\": \"1\",\n    \"action_type\": \"5\",\n    \"title\": \"West Ed Office New Case Policy\",\n    \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n    \"has_acknowledgment\": true,\n    \"created_at\": \"2026-05-14 20:07:17\",\n    \"updated_at\": \"2026-05-14 20:07:17\",\n    \"Module\": {\n        \"id\": \"2\",\n        \"name\": \"Case\"\n    },\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"West Ed Office\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"action_type_label\": \"Create\"\n}"}],"_postman_id":"42c1837f-81cf-44e2-a537-eb710080297e"}],"id":"69492405-48ae-444c-a428-9c25a312c1bb","_postman_id":"69492405-48ae-444c-a428-9c25a312c1bb","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a client location","id":"ee1dd33b-d7f9-4eaf-9be9-e15f448d20f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations/:client_location_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations",":client_location_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_location_id"}]}},"response":[{"id":"e364c66a-84d2-40b3-b398-1caf71f40316","name":"Get a client location","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/locations/:client_location_id","host":["/api/v1"],"path":["client","locations",":client_location_id"],"variable":[{"key":"client_location_id","value":"<integer>","description":"ID of the client location"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Main Location\",\n    \"account_code\": \"\",\n    \"address_1\": \"123 Main Street\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Beverly Hills\",\n    \"state\": \"CA\",\n    \"zip\": \"90210\",\n    \"country\": \"US\",\n    \"phone_primary\": \"555-555-5555\",\n    \"phone_secondary\": \"555-555-5556\",\n    \"phone_fax\": \"555-555-5557\",\n    \"email_invoice\": \"\",\n    \"website\": \"\",\n    \"notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:44:51\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"ee1dd33b-d7f9-4eaf-9be9-e15f448d20f7"},{"name":"List client locations","id":"fb8be3d5-0446-4d89-abb1-950fcb4d1b76","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"47a6eb04-fc94-40d1-8a44-21b89d87537c","name":"List client locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"4\",\n        \"root_id\": \"3\",\n        \"is_primary\": true,\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"phone_primary\": \"\",\n        \"phone_secondary\": \"\",\n        \"phone_fax\": \"\",\n        \"email_invoice\": \"\",\n        \"website\": \"\",\n        \"notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2024-03-14 20:20:28\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null,\n        \"CaseManager\": null\n    }\n]"}],"_postman_id":"fb8be3d5-0446-4d89-abb1-950fcb4d1b76"},{"name":"Search client locations","id":"07d92a86-4ae6-4100-b4a1-cadce28671d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/client/locations?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&client=<integer>&client_name=<string>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the client location</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Name of the client location</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case manager assigned to the client location</p>\n","type":"text/plain"},"key":"case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the client location</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>Name of the client associated with the client location</p>\n","type":"text/plain"},"key":"client_name","value":"<string>"},{"description":{"content":"<p>ID of the salesperson assigned to the client location</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"fc432496-1b92-4113-9722-790f1d509908","name":"Search client locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/client/locations?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&client=<integer>&client_name=<string>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["client","locations"],"query":[{"key":"id","value":"<integer>","description":"ID of the client location"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the client location"},{"key":"name","value":"<string>","description":"Name of the client location"},{"key":"case_manager","value":"<integer>","description":"ID of the case manager assigned to the client location"},{"key":"client","value":"<integer>","description":"ID of the client associated with the client location"},{"key":"client_name","value":"<string>","description":"Name of the client associated with the client location"},{"key":"salesperson","value":"<integer>","description":"ID of the salesperson assigned to the client location"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"4\",\n        \"root_id\": \"3\",\n        \"is_primary\": true,\n        \"name\": \"Main Location\",\n        \"account_code\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"phone_primary\": \"\",\n        \"phone_secondary\": \"\",\n        \"phone_fax\": \"\",\n        \"email_invoice\": \"\",\n        \"website\": \"\",\n        \"notes\": \"\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2024-03-14 20:20:28\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"route_prefix\": \"client\"\n        },\n        \"Salesperson\": null,\n        \"CaseManager\": null\n    }\n]"}],"_postman_id":"07d92a86-4ae6-4100-b4a1-cadce28671d4"},{"name":"Create a client location","id":"d736d13f-1fa6-46c1-b0db-ff4cd18de1f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"salesperson_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"Corvallis Office\",\n    \"email_invoice\": \"Jaylan_Prosacco@example.com\",\n    \"phone_primary\": \"719-924-2825\",\n    \"phone_secondary\": \"737-353-0227\",\n    \"phone_fax\": \"269-537-5573\",\n    \"address_1\": \"97922 Hackett Road\",\n    \"address_2\": \"STE 824\",\n    \"address_3\": \"\",\n    \"city\": \"Port Brannon\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"118ae3af-f054-4e68-9d70-3d32d099abde","name":"Create a client location","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": <integer>,\n    \"is_primary\": true,\n    \"name\": \"Azusa Office\",\n    \"email_invoice\": \"Laron56@example.net\",\n    \"phone_primary\": \"794-262-3650\",\n    \"phone_secondary\": \"916-983-6694\",\n    \"phone_fax\": \"667-795-1985\",\n    \"address_1\": \"35394 Wilhelmine Springs\",\n    \"address_2\": \"STE 94\",\n    \"address_3\": \"\",\n    \"city\": \"Port Sofiatown\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Rutheshire Office\",\n    \"account_code\": \"\",\n    \"address_1\": \"22840 Bahringer Dale\",\n    \"address_2\": \"STE 745\",\n    \"address_3\": \"\",\n    \"city\": \"New Anderson\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"phone_primary\": \"801-474-9794\",\n    \"phone_secondary\": \"841-542-6273\",\n    \"phone_fax\": \"557-332-3139\",\n    \"email_invoice\": \"Kali_Bechtelar12@example.net\",\n    \"website\": null,\n    \"notes\": \"\",\n    \"created_at\": \"2026-02-02 21:45:15\",\n    \"updated_at\": \"2026-02-02 21:45:15\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": null,\n    \"CaseManager\": null\n}"}],"_postman_id":"d736d13f-1fa6-46c1-b0db-ff4cd18de1f3"},{"name":"Update a client location","id":"f411f8cf-a3e5-4a03-805b-2a4e0b5b8369","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"Cynthiaton Office\",\n    \"email_invoice\": \"Brianne_Kuhn22@example.com\",\n    \"phone_primary\": \"570-638-2901\",\n    \"phone_secondary\": \"353-652-6299\",\n    \"phone_fax\": \"281-314-2100\",\n    \"address_1\": \"106 Gunner Landing\",\n    \"address_2\": \"STE 660\",\n    \"city\": \"Denton\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/locations/:client_location_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","locations",":client_location_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client location</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_location_id"}]}},"response":[{"id":"3fa2beea-0f9f-4d5d-969c-9e1f297d6502","name":"Update a client location","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client_location\": {\n    \"root_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"name\": \"Coryview Office\",\n    \"email_invoice\": \"Dwight_Smitham29@example.com\",\n    \"phone_primary\": \"377-500-0002\",\n    \"phone_secondary\": \"862-219-2679\",\n    \"phone_fax\": \"945-445-3434\",\n    \"address_1\": \"943 Mary Fall\",\n    \"address_2\": \"STE 156\",\n    \"city\": \"New Marley\",\n    \"state\": \"<string>\",\n    \"zip\": \"<string>\",\n    \"country\": \"<country-code>\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/client/locations/:client_location_id","host":["/api/v1"],"path":["client","locations",":client_location_id"],"variable":[{"key":"client_location_id","value":"<integer>","description":"ID of the client location"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-976ed80964da5407c7ddf70f528b62b6' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"content-type","value":"application/json"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"889"},{"key":"date","value":"Wed, 18 Mar 2026 17:36:34 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"root_id\": \"3\",\n    \"is_primary\": true,\n    \"name\": \"Aliyabury Office\",\n    \"account_code\": \"\",\n    \"address_1\": \"52244 Dibbert Parkways\",\n    \"address_2\": \"STE 845\",\n    \"address_3\": \"\",\n    \"city\": \"Wizafort\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"phone_primary\": \"838-859-7343\",\n    \"phone_secondary\": \"397-502-5603\",\n    \"phone_fax\": \"525-854-3161\",\n    \"email_invoice\": \"Alford.Hegmann45@example.net\",\n    \"website\": \"\",\n    \"notes\": \"\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-03-18 17:36:34\",\n    \"route_prefix\": \"client\",\n    \"RootClient\": {\n        \"id\": \"3\",\n        \"name\": \"Homenick Group Location\",\n        \"route_prefix\": \"client\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    }\n}"}],"_postman_id":"f411f8cf-a3e5-4a03-805b-2a4e0b5b8369"}],"id":"e4382008-e780-479d-977a-988c3a7b9adf","description":"<p>Client locations are the branches or offices (sub-clients) connected to a client. Cases, invoices and client contacts are always connected to a client location.</p>\n","_postman_id":"e4382008-e780-479d-977a-988c3a7b9adf","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Clients","item":[{"name":"Client Notes","item":[{"name":"Get a client note","id":"90848a63-5097-4881-91ec-42d1b9128d93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/notes/:client_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes",":client_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_note_id"}]}},"response":[{"id":"56fed307-d8e3-4ca5-a087-c476f8a2a5c7","name":"Get a client note","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/notes/:client_note_id","host":["/api/v1"],"path":["client","notes",":client_note_id"],"variable":[{"key":"client_note_id","value":"<integer>","description":"ID of the client note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"body\": \"- Received signed contract from Suzie B Jones\\r\\n- Received first referral with authoriztion to work.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": false,\n    \"created_at\": \"2026-02-02 21:48:42\",\n    \"updated_at\": \"2026-02-02 21:48:42\",\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"root_id\": null,\n        \"route_prefix\": \"client\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"90848a63-5097-4881-91ec-42d1b9128d93"},{"name":"List client notes","id":"0bc7146e-e025-41ff-a6f7-025652236992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"273ac40d-8ba5-4803-8243-a8b06b5defb4","name":"List client notes","originalRequest":{"method":"GET","header":[],"url":"/api/v1/client/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"body\": \"- Received signed contract from Suzie B Jones\\r\\n- Received first referral with authoriztion to work.\",\n        \"note_date\": \"2026-02-02\",\n        \"is_pinned\": false,\n        \"created_at\": \"2026-02-02 21:48:42\",\n        \"updated_at\": \"2026-02-02 21:48:42\",\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Sample Client\",\n            \"root_id\": null,\n            \"route_prefix\": \"client\"\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"0bc7146e-e025-41ff-a6f7-025652236992"},{"name":"Create a client note","id":"ec9c964c-9a1a-431c-a425-32968eab15ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_note\": {\n     \"client_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Exercitationem soluta qui aliquam at qui consequuntur cupiditate cupiditate laborum. Ea adipisci consequuntur porro temporibus. Esse placeat incidunt corrupti qui inventore eligendi error.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"26460901-ce6c-42ab-b15d-d40bbdc810d5","name":"Create a client note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client_note\": {\n     \"client_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Minima consectetur ex sit. Facilis dicta vel voluptas. Quis officia beatae sunt quod distinctio repellendus sit. In dolore vero nostrum aut. Minima eveniet et impedit maiores ullam esse dicta nesciunt. Ipsum ipsum dolorem ut accusantium in culpa omnis voluptatum.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"body\": \"Dicta ex veniam. Libero aut vel.\",\n    \"note_date\": \"2026-02-02\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-02 21:49:31\",\n    \"updated_at\": \"2026-02-02 21:49:31\",\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"root_id\": null,\n        \"route_prefix\": \"client\"\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"ec9c964c-9a1a-431c-a425-32968eab15ec"}],"id":"3a6df1e4-118b-4d9f-a715-6c30aac09577","description":"<p>Client notes store extra information, recent conversations, or other updates related to the client.</p>\n","_postman_id":"3a6df1e4-118b-4d9f-a715-6c30aac09577","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Client Policies","item":[{"name":"Get a client policy","id":"4dc2eb37-1171-4b22-b6b0-ec7a2f0d1bde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/policies/:policy_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","policies",":policy_id"],"host":["/api/v1"],"query":[],"variable":[{"type":"any","value":"<integer>","key":"policy_id"}]}},"response":[{"id":"548006ca-bd1d-445c-9ffe-f93afca60f76","name":"Get a client policy","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/policies/:policy_id","host":["/api/v1"],"path":["client","policies",":policy_id"],"variable":[{"key":"policy_id","value":"<integer>","description":"ID of the policy"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"priority\": \"1\",\n    \"action_type\": \"5\",\n    \"title\": \"Homenick Case Creation Rules\",\n    \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n    \"has_acknowledgment\": true,\n    \"created_at\": \"2026-05-14 19:58:07\",\n    \"updated_at\": \"2026-05-14 19:58:07\",\n    \"Module\": {\n        \"id\": \"2\",\n        \"name\": \"Case\"\n    },\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Homenick Group Location\",\n        \"route_prefix\": \"client\"\n    },\n    \"action_type_label\": \"Create\"\n}"}],"_postman_id":"4dc2eb37-1171-4b22-b6b0-ec7a2f0d1bde"},{"name":"List client policies","id":"0605a1a7-5b44-49a4-909a-ef64a1668eb3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/policies","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","policies"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6e57e8ba-9b32-4c1d-b814-88700021dd77","name":"List client policies","originalRequest":{"method":"GET","header":[],"url":"/api/v1/client/policies"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"priority\": \"1\",\n        \"action_type\": \"5\",\n        \"title\": \"Homenick Case Creation Rules\",\n        \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n        \"has_acknowledgment\": true,\n        \"created_at\": \"2026-05-14 19:58:07\",\n        \"updated_at\": \"2026-05-14 19:58:07\",\n        \"Module\": {\n            \"id\": \"2\",\n            \"name\": \"Case\"\n        },\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        },\n        \"action_type_label\": \"Create\"\n    }\n]"}],"_postman_id":"0605a1a7-5b44-49a4-909a-ef64a1668eb3"},{"name":"Search client policies","id":"4a7bd494-f1e7-420f-8fd7-a8f69638f9af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/policies?id=<integer>&client=<integer>&module=<integer>&action_type=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["client","policies"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the policy</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the module (category) the policy belongs to</p>\n","type":"text/plain"},"key":"module","value":"<integer>"},{"description":{"content":"<p>ID of the type of action the policy is associated with</p>\n","type":"text/plain"},"key":"action_type","value":"<integer>"}],"variable":[]}},"response":[{"id":"df794728-7e44-4419-9659-0a7e42ea223f","name":"Search client policies","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/policies?id=<integer>&client=<integer>&module=<integer>&action_type=<integer>","host":["/api/v1"],"path":["client","policies"],"query":[{"key":"id","value":"<integer>","description":"ID of the policy"},{"key":"client","value":"<integer>","description":"ID of the client"},{"key":"module","value":"<integer>","description":"ID of the module (category) the policy belongs to"},{"key":"action_type","value":"<integer>","description":"ID of the type of action the policy is associated with"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"priority\": \"1\",\n        \"action_type\": \"5\",\n        \"title\": \"Homenick Case Creation Rules\",\n        \"policy_rule\": \"\\\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\\\"\",\n        \"has_acknowledgment\": true,\n        \"created_at\": \"2026-05-14 19:58:07\",\n        \"updated_at\": \"2026-05-14 19:58:07\",\n        \"Module\": {\n            \"id\": \"2\",\n            \"name\": \"Case\"\n        },\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        },\n        \"action_type_label\": \"Create\"\n    }\n]"}],"_postman_id":"4a7bd494-f1e7-420f-8fd7-a8f69638f9af"}],"id":"2ed7c4e1-40f6-43b8-b40b-9bc8e0bb0c49","_postman_id":"2ed7c4e1-40f6-43b8-b40b-9bc8e0bb0c49","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a client","id":"29e2dc06-5034-42e9-a5f9-f11a98eae8b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients/:client_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients",":client_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_id"}]}},"response":[{"id":"495a0507-727f-4177-9dca-55c8d2bbd140","name":"Get a client","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/clients/:client_id","host":["/api/v1"],"path":["clients",":client_id"],"variable":[{"key":"client_id","value":"<integer>","description":"ID of the client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"Sample Client\",\n    \"account_code\": \"SAMPLE\",\n    \"email_invoice\": \"example@trackops.com\",\n    \"website\": \"\",\n    \"notes\": \"First case received 01/01/2026\",\n    \"location_count\": \"2\",\n    \"user_count\": \"2\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:43:59\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    }\n}"}],"_postman_id":"29e2dc06-5034-42e9-a5f9-f11a98eae8b9"},{"name":"List clients","id":"9d3eaa49-4b24-4bad-ad51-2f03d9c83395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42c831ce-c855-43ac-a832-8e2227f68f79","name":"List clients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"account_code\": \"SAMPLE\",\n        \"email_invoice\": \"example@trackops.com\",\n        \"website\": \"\",\n        \"notes\": \"First case received 01/01/2026\",\n        \"location_count\": \"2\",\n        \"user_count\": \"2\",\n        \"investigator_count\": \"0\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2026-02-02 21:43:59\",\n        \"route_prefix\": \"client\",\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"9d3eaa49-4b24-4bad-ad51-2f03d9c83395"},{"name":"Search clients","id":"2f2096a5-5834-468c-8d07-dd601ef0359c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/clients?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or lookup code for the client</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Name of the client</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the case manager assigned to the client</p>\n","type":"text/plain"},"key":"case_manager","value":"<integer>"},{"description":{"content":"<p>ID of the salesperson assigned to the client</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>ISO date of the date created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"a0fbd9bf-5a52-4d83-8b73-e58062e609e1","name":"Search clients","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/clients?id=<integer>&account_code=<string>&name=<string>&case_manager=<integer>&salesperson=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["clients"],"query":[{"key":"id","value":"<integer>","description":"ID of the client"},{"key":"account_code","value":"<string>","description":"Reference number or lookup code for the client"},{"key":"name","value":"<string>","description":"Name of the client"},{"key":"case_manager","value":"<integer>","description":"ID of the case manager assigned to the client"},{"key":"salesperson","value":"<integer>","description":"ID of the salesperson assigned to the client"},{"key":"created_from","value":"<datestamp>","description":"ISO date of the date created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date of the date created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date of the date updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date of the date updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"name\": \"Sample Client\",\n        \"account_code\": \"SAMPLE\",\n        \"email_invoice\": \"example@trackops.com\",\n        \"website\": \"\",\n        \"notes\": \"First case received 01/01/2026\",\n        \"location_count\": \"2\",\n        \"user_count\": \"2\",\n        \"investigator_count\": \"0\",\n        \"created_at\": \"2011-04-04 23:15:00\",\n        \"updated_at\": \"2026-02-02 21:43:59\",\n        \"route_prefix\": \"client\",\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"CaseManager\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        }\n    }\n]"}],"_postman_id":"2f2096a5-5834-468c-8d07-dd601ef0359c"},{"name":"Create a client","id":"d499764f-e5fc-47aa-8b40-59b55b65c1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Buckridge LLC\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"https://mark.name\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Porro eius quam voluptatem non voluptatem ullam nisi ut enim. Cum sunt aut omnis officia aperiam et earum. Nostrum ut esse in placeat qui et sunt ut. Soluta voluptatum accusantium dolorum minima odio aspernatur rerum rem. Consequatur optio ut alias eius.\",\n    \"primary_location\": {\n      \"name\": \"South Allan Location\",\n      \"email_invoice\": \"Amie_Romaguera@example.org\",\n      \"phone_primary\": \"975-880-0029\",\n      \"phone_secondary\": \"693-732-7728\",\n      \"phone_fax\": \"911-948-2164\",\n      \"address_1\": \"870 Frami Rapids\",\n      \"address_2\": \"STE 95\",\n      \"city\": \"Bowling Green\",\n      \"state\": \"<string>\",\n      \"zip\": <string>,\n      \"country\": \"<country-code>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"42d15f5a-3063-4fd3-8bb6-8e7738fb2e05","name":"Create a client","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Hamill, Huels and Bednar\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"http://cristopher.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Necessitatibus quo natus et voluptatem est. Optio est qui sed non. Sit consequuntur quam consequatur quis libero. Eveniet quis ullam alias eum. Culpa corrupti ullam.\",\n    \"primary_location\": {\n      \"name\": \"Beavercreek Location\",\n      \"email_invoice\": \"Damion82@example.org\",\n      \"phone_primary\": \"647-290-8220\",\n      \"phone_secondary\": \"862-717-4956\",\n      \"phone_fax\": \"520-668-7379\",\n      \"address_1\": \"2096 Schaden Via\",\n      \"address_2\": \"STE 404\",\n      \"city\": \"Deltona\",\n      \"state\": \"<string>\",\n      \"zip\": <string>,\n      \"country\": \"<country-code>\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Pfeffer, Gutkowski and Ziemann\",\n    \"account_code\": \"\",\n    \"email_invoice\": null,\n    \"website\": \"http://buddy.org\",\n    \"notes\": \"Rerum omnis eos ullam animi qui debitis nihil animi. Et aliquam vitae deserunt omnis rerum beatae similique officiis quia. Repudiandae ut non et dolore. Omnis sint repellat omnis fugiat. Rerum id voluptatibus officia et sunt enim. Esse voluptatem velit a rerum.\",\n    \"location_count\": \"1\",\n    \"user_count\": \"0\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2026-02-02 21:50:29\",\n    \"updated_at\": \"2026-02-02 21:50:29\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": null,\n    \"CaseManager\": null,\n    \"Locations\": [\n        {\n            \"id\": \"7\",\n            \"name\": \"Des Moines Location\",\n            \"email_invoice\": \"Verlie78@example.net\",\n            \"address_1\": \"65643 Oberbrunner Parkways\",\n            \"address_2\": \"STE 249\",\n            \"address_3\": \"\",\n            \"city\": \"Lake Colbyview\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"phone_primary\": \"569-763-5529\",\n            \"phone_secondary\": \"601-761-4404\",\n            \"phone_fax\": \"900-456-7469\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        }\n    ]\n}"}],"_postman_id":"d499764f-e5fc-47aa-8b40-59b55b65c1f6"},{"name":"Update a client","id":"75fe0c15-5e16-4962-9f6f-7b21534250a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Will - Considine Location\",\n    \"website\": \"https://aurore.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Ut commodi assumenda quam quo accusantium. Distinctio illo quam suscipit asperiores repellat. In sapiente rem est maxime sed consectetur doloribus eos dolores. Id et qui et tempora dolorem qui praesentium corrupti. Eaque quia quis totam.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/clients/:client_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["clients",":client_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the client</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"client_id"}]}},"response":[{"id":"2fc23591-5378-4ece-831d-d48c49f33aa9","name":"Update a client","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"client\": {\n    \"name\": \"Schuster - Jerde Location\",\n    \"website\": \"https://christelle.info\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Sit et fuga. Et dolore vel dicta voluptatibus ut autem est. Sint aut in ab fugit beatae alias soluta quas sed. Aut rerum tempore. Porro dolores quas explicabo voluptas molestiae.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/clients/:client_id","host":["/api/v1"],"path":["clients",":client_id"],"variable":[{"key":"client_id","value":"<integer>","description":"ID of the client"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"Homenick Group Location\",\n    \"account_code\": \"SAMPLE\",\n    \"email_invoice\": \"example@trackops.com\",\n    \"website\": \"https://timmy.info\",\n    \"notes\": \"Distinctio omnis consectetur praesentium est. Beatae placeat rerum. Architecto beatae et. Consequatur unde itaque sed vitae et libero dicta necessitatibus quia.\",\n    \"location_count\": \"2\",\n    \"user_count\": \"2\",\n    \"investigator_count\": \"0\",\n    \"created_at\": \"2011-04-04 23:15:00\",\n    \"updated_at\": \"2026-02-02 21:50:41\",\n    \"route_prefix\": \"client\",\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"CaseManager\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"Locations\": [\n        {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"phone_primary\": \"555-555-5555\",\n            \"phone_secondary\": \"555-555-5556\",\n            \"phone_fax\": \"555-555-5557\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        {\n            \"id\": \"5\",\n            \"name\": \"Rutheshire Office\",\n            \"email_invoice\": \"Kali_Bechtelar12@example.net\",\n            \"address_1\": \"22840 Bahringer Dale\",\n            \"address_2\": \"STE 745\",\n            \"address_3\": \"\",\n            \"city\": \"New Anderson\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"country\": \"US\",\n            \"phone_primary\": \"801-474-9794\",\n            \"phone_secondary\": \"841-542-6273\",\n            \"phone_fax\": \"557-332-3139\",\n            \"notes\": \"\",\n            \"route_prefix\": \"client\"\n        }\n    ]\n}"}],"_postman_id":"75fe0c15-5e16-4962-9f6f-7b21534250a9"}],"id":"1a302551-ac88-44c3-af03-511d85137278","description":"<p>Clients are parent organizations that contain client locations. Client specific settings that trickle down to client locations and client contacts are often defined at the client level.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBJcHqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJTaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzg1ODMtQ3JlYXRpbmctYS1OZXctQ2xpZW50BjsIVDoOc2VhcmNoX2lkSSIpYzNiYzE5MjQtMTlkOS00YmUxLWE3YzAtYjBiNDg4ZTU3Y2JmBjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSILY2xpZW50BjsIVDoScmVzdWx0c19jb3VudGkBhQ%3D%3D--4187ee1fffcc0a9a6fb751bc17c3e7db7804271c\">Creating a New Client</a></p>\n","_postman_id":"1a302551-ac88-44c3-af03-511d85137278","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Custom Fields","item":[{"name":"Get a custom field","id":"060cd096-f9cb-4a16-81e3-f3da1a42a4e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields/:custom_field_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields",":custom_field_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the custom field</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"custom_field_id"}]}},"response":[{"id":"a3a579c2-4400-48c1-84b7-1ff7057ae32c","name":"Get a custom field","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/fields/:custom_field_id","host":["/api/v1"],"path":["fields",":custom_field_id"],"variable":[{"key":"custom_field_id","value":"<integer>","description":"ID of the custom field"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"61\",\n    \"name\": \"Insured\",\n    \"choices\": \"\",\n    \"default_value\": \"\",\n    \"is_required\": false,\n    \"is_sensitive\": false,\n    \"FieldType\": {\n        \"id\": \"1\",\n        \"tag\": \"INPUT\",\n        \"name\": \"Input (Short Answer)\"\n    }\n}"}],"_postman_id":"060cd096-f9cb-4a16-81e3-f3da1a42a4e2"},{"name":"List custom fields","id":"870ddbe6-768e-49d9-a14d-b5ebce0c15a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"96e49a58-0c20-4eb3-8510-8b85cfe17270","name":"List custom fields","originalRequest":{"method":"GET","header":[],"url":"/api/v1/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": \"61\",\n        \"name\": \"Insured\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"60\",\n        \"name\": \"Evidence of Fraud\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"59\",\n        \"name\": \"Recommendations\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"58\",\n        \"name\": \"Opportunity for Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"13\",\n            \"tag\": \"YESNONA\",\n            \"name\": \"Yes, No or N/A\"\n        }\n    },\n    {\n        \"id\": \"57\",\n        \"name\": \"Weather\",\n        \"choices\": \"[\\\"Sunny\\\",\\\"Cloudy\\\",\\\"Rainy\\\",\\\"Snowy\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"56\",\n        \"name\": \"Minutes of Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"11\",\n            \"tag\": \"NUMBER\",\n            \"name\": \"Number\"\n        }\n    },\n    {\n        \"id\": \"55\",\n        \"name\": \"Employment Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"54\",\n        \"name\": \"Employer Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"53\",\n        \"name\": \"Employer Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"52\",\n        \"name\": \"Contact Employer?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"51\",\n        \"name\": \"Contact Claimant?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"50\",\n        \"name\": \"Vehicle Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"49\",\n        \"name\": \"Glasses\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"48\",\n        \"name\": \"Family\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"47\",\n        \"name\": \"Relationship Status\",\n        \"choices\": \"[\\\"\\\",\\\"Single\\\",\\\"Dating\\\",\\\"Divorced (Dating)\\\",\\\"Divorced (Single)\\\",\\\"Married\\\",\\\"Widowed\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"46\",\n        \"name\": \"Eyes\",\n        \"choices\": \"[\\\"\\\",\\\"Amber\\\",\\\"Blue\\\",\\\"Brown\\\",\\\"Gray\\\",\\\"Green\\\",\\\"Hazel\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"45\",\n        \"name\": \"Hair\",\n        \"choices\": \"[\\\"\\\",\\\"Bald\\\",\\\"Black\\\",\\\"Blonde\\\",\\\"Brown\\\",\\\"White\\\",\\\"Other\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"44\",\n        \"name\": \"Occupation\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"43\",\n        \"name\": \"Notes\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"42\",\n        \"name\": \"Other Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"41\",\n        \"name\": \"Injury Restrictions\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"40\",\n        \"name\": \"Date of Loss\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"4\",\n            \"tag\": \"DATE\",\n            \"name\": \"Date\"\n        }\n    },\n    {\n        \"id\": \"39\",\n        \"name\": \"Injury\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"38\",\n        \"name\": \"Claim Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"37\",\n        \"name\": \"Employer\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"36\",\n        \"name\": \"Contact Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"35\",\n        \"name\": \"Physical Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"34\",\n        \"name\": \"Email\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"21\",\n            \"tag\": \"EMAIL\",\n            \"name\": \"Email Address\"\n        }\n    },\n    {\n        \"id\": \"33\",\n        \"name\": \"Primary Contact\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"32\",\n        \"name\": \"Vehicle Description\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"31\",\n        \"name\": \"Registered To\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"30\",\n        \"name\": \"License Plate\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"29\",\n        \"name\": \"Office phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"28\",\n        \"name\": \"Weight\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"27\",\n        \"name\": \"Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"26\",\n        \"name\": \"Home Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"16\",\n        \"name\": \"Other Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"name\": \"Cell Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"11\",\n        \"name\": \"Build\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"name\": \"Height\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"name\": \"Race\",\n        \"choices\": \"[\\\"\\\",\\\"Asian\\\",\\\"Black\\\",\\\"Hispanic\\\",\\\"Middle Eastern\\\",\\\"White\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"name\": \"Sex\",\n        \"choices\": \"[\\\"Male\\\",\\\"Female\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"15\",\n            \"tag\": \"RADIO\",\n            \"name\": \"Multiple Choice (Radio)\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"SSN\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": true,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Alias\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Date of Birth\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"22\",\n            \"tag\": \"BIRTHDAY\",\n            \"name\": \"Date (Birthday)\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Full Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"17\",\n            \"tag\": \"NAME\",\n            \"name\": \"Name (First, Middle, Last)\"\n        }\n    }\n]"}],"_postman_id":"870ddbe6-768e-49d9-a14d-b5ebce0c15a6"},{"name":"Search custom fields","id":"cafb055e-d3a7-4122-b259-cda75d84305b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/fields?id=<integer>&name=<string>&field_type=<integer>&field_type_tag=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["fields"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the custom field</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the custom field</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the field type</p>\n","type":"text/plain"},"key":"field_type","value":"<integer>"},{"description":{"content":"<p>Tag associated with the field type</p>\n","type":"text/plain"},"key":"field_type_tag","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"e86f27d9-7cb1-44b0-a2b9-83532122162e","name":"Search custom fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/fields?id=<integer>&name=<string>&field_type=<integer>&field_type_tag=<string>&page=<integer>","host":["/api/v1"],"path":["fields"],"query":[{"key":"id","value":"<integer>","description":"ID of the custom field"},{"key":"name","value":"<string>","description":"Name of the custom field"},{"key":"field_type","value":"<integer>","description":"ID of the field type"},{"key":"field_type_tag","value":"<string>","description":"Tag associated with the field type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"61\",\n        \"name\": \"Insured\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"60\",\n        \"name\": \"Evidence of Fraud\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"59\",\n        \"name\": \"Recommendations\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"58\",\n        \"name\": \"Opportunity for Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"13\",\n            \"tag\": \"YESNONA\",\n            \"name\": \"Yes, No or N/A\"\n        }\n    },\n    {\n        \"id\": \"57\",\n        \"name\": \"Weather\",\n        \"choices\": \"[\\\"Sunny\\\",\\\"Cloudy\\\",\\\"Rainy\\\",\\\"Snowy\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"56\",\n        \"name\": \"Minutes of Video\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"11\",\n            \"tag\": \"NUMBER\",\n            \"name\": \"Number\"\n        }\n    },\n    {\n        \"id\": \"55\",\n        \"name\": \"Employment Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"54\",\n        \"name\": \"Employer Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"53\",\n        \"name\": \"Employer Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"52\",\n        \"name\": \"Contact Employer?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"51\",\n        \"name\": \"Contact Claimant?\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"50\",\n        \"name\": \"Vehicle Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"49\",\n        \"name\": \"Glasses\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"12\",\n            \"tag\": \"YESNO\",\n            \"name\": \"Yes or No\"\n        }\n    },\n    {\n        \"id\": \"48\",\n        \"name\": \"Family\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"47\",\n        \"name\": \"Relationship Status\",\n        \"choices\": \"[\\\"\\\",\\\"Single\\\",\\\"Dating\\\",\\\"Divorced (Dating)\\\",\\\"Divorced (Single)\\\",\\\"Married\\\",\\\"Widowed\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"46\",\n        \"name\": \"Eyes\",\n        \"choices\": \"[\\\"\\\",\\\"Amber\\\",\\\"Blue\\\",\\\"Brown\\\",\\\"Gray\\\",\\\"Green\\\",\\\"Hazel\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"45\",\n        \"name\": \"Hair\",\n        \"choices\": \"[\\\"\\\",\\\"Bald\\\",\\\"Black\\\",\\\"Blonde\\\",\\\"Brown\\\",\\\"White\\\",\\\"Other\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"44\",\n        \"name\": \"Occupation\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"43\",\n        \"name\": \"Notes\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"42\",\n        \"name\": \"Other Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"41\",\n        \"name\": \"Injury Restrictions\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"40\",\n        \"name\": \"Date of Loss\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"4\",\n            \"tag\": \"DATE\",\n            \"name\": \"Date\"\n        }\n    },\n    {\n        \"id\": \"39\",\n        \"name\": \"Injury\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"38\",\n        \"name\": \"Claim Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"37\",\n        \"name\": \"Employer\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"36\",\n        \"name\": \"Contact Information\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"35\",\n        \"name\": \"Physical Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"25\",\n            \"tag\": \"SECTION\",\n            \"name\": \"Section\"\n        }\n    },\n    {\n        \"id\": \"34\",\n        \"name\": \"Email\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"21\",\n            \"tag\": \"EMAIL\",\n            \"name\": \"Email Address\"\n        }\n    },\n    {\n        \"id\": \"33\",\n        \"name\": \"Primary Contact\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"32\",\n        \"name\": \"Vehicle Description\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"31\",\n        \"name\": \"Registered To\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"30\",\n        \"name\": \"License Plate\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"29\",\n        \"name\": \"Office phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"28\",\n        \"name\": \"Weight\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"27\",\n        \"name\": \"Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"26\",\n        \"name\": \"Home Address\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"16\",\n            \"tag\": \"ADDRESS\",\n            \"name\": \"Address (Address, City, State, Zip, Country)\"\n        }\n    },\n    {\n        \"id\": \"16\",\n        \"name\": \"Other Characteristics\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"6\",\n            \"tag\": \"LONG\",\n            \"name\": \"Input (Long Answer)\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"name\": \"Cell Phone\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"11\",\n        \"name\": \"Build\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"name\": \"Height\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"name\": \"Race\",\n        \"choices\": \"[\\\"\\\",\\\"Asian\\\",\\\"Black\\\",\\\"Hispanic\\\",\\\"Middle Eastern\\\",\\\"White\\\",\\\"Unknown\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"2\",\n            \"tag\": \"SELECT\",\n            \"name\": \"Multiple Choice (Dropdown)\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"name\": \"Sex\",\n        \"choices\": \"[\\\"Male\\\",\\\"Female\\\"]\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"15\",\n            \"tag\": \"RADIO\",\n            \"name\": \"Multiple Choice (Radio)\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"SSN\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": true,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Alias\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"1\",\n            \"tag\": \"INPUT\",\n            \"name\": \"Input (Short Answer)\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Date of Birth\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"22\",\n            \"tag\": \"BIRTHDAY\",\n            \"name\": \"Date (Birthday)\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Full Name\",\n        \"choices\": \"\",\n        \"default_value\": \"\",\n        \"is_required\": false,\n        \"is_sensitive\": false,\n        \"FieldType\": {\n            \"id\": \"17\",\n            \"tag\": \"NAME\",\n            \"name\": \"Name (First, Middle, Last)\"\n        }\n    }\n]"}],"_postman_id":"cafb055e-d3a7-4122-b259-cda75d84305b"}],"id":"4ac49f46-4eff-4661-af49-638826934777","description":"<p>Custom fields capture unique or business-specific information across various features in Trackops.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336843-How-to-Create-Custom-Fields\">How to Create Custom Fields</a></p>\n","_postman_id":"4ac49f46-4eff-4661-af49-638826934777","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Expense Entries","item":[{"name":"Get an expense entry","id":"5d4bf2e1-8206-410f-bed6-497cedf21291","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries/:expense_entry_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries",":expense_entry_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_entry_id"}]}},"response":[{"id":"0f4361d4-043d-45db-8c7a-fc568ef43330","name":"Get an expense entry","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/expense/entries/:expense_entry_id","host":["/api/v1"],"path":["expense","entries",":expense_entry_id"],"variable":[{"key":"expense_entry_id","value":"<integer>","description":"ID of the expense entry"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_number\": \"1\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-02 21:16:49\",\n    \"updated_at\": \"2026-02-03 15:32:49\",\n    \"hour_total\": \"662.00\",\n    \"wage_total\": \"467967.80\",\n    \"expense_total\": \"373800.48\",\n    \"entry_total\": \"841768.28\",\n    \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": \"1\",\n    \"entry_status\": \"paid\",\n    \"formatted_entry_number\": \"EXP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-03\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"13\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"706.900\",\n            \"quantity\": \"662.000\",\n            \"total\": \"467967.80\",\n            \"notes\": \"Perferendis voluptatem nihil veniam.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"753.630\",\n            \"quantity\": \"496.000\",\n            \"total\": \"373800.48\",\n            \"notes\": \"Aut provident reprehenderit nesciunt.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"5d4bf2e1-8206-410f-bed6-497cedf21291"},{"name":"List expense entries","id":"3b724d7b-b86a-4400-80ff-b77716fd45af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"7e704226-abf8-4a19-aeb9-eb122c503f5f","name":"List expense entries","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"entry_number\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"created_at\": \"2026-02-02 21:16:49\",\n        \"updated_at\": \"2026-02-02 21:16:49\",\n        \"hour_total\": \"5.00\",\n        \"wage_total\": \"225.00\",\n        \"expense_total\": \"25.00\",\n        \"entry_total\": \"250.00\",\n        \"notes\": \"\",\n        \"photo_file\": null,\n        \"expense_slip_id\": null,\n        \"entry_status\": \"pending\",\n        \"formatted_entry_number\": \"EXP-00001\",\n        \"User\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"TrackingCategory\": null,\n        \"ExpenseDetails\": [\n            {\n                \"id\": \"2\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"2\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"4.000\",\n                \"total\": \"200.00\",\n                \"notes\": \"On-site hours\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"expense_alias\": \"Work Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"4\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"4\",\n                \"rate\": \"0.500\",\n                \"quantity\": \"40.000\",\n                \"total\": \"20.00\",\n                \"notes\": \"Mileage to and from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"expense_alias\": \"Mileage\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"1\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"1\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel to claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"3\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"3\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel home from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"5\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"5\",\n                \"rate\": \"5.000\",\n                \"quantity\": \"1.000\",\n                \"total\": \"5.00\",\n                \"notes\": \"Tolls at the bridge\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"4\",\n                    \"name\": \"Miscellaneous\",\n                    \"expense_alias\": \"Miscellaneous\"\n                },\n                \"ItemCode\": null\n            }\n        ]\n    }\n]"}],"_postman_id":"3b724d7b-b86a-4400-80ff-b77716fd45af"},{"name":"Search expense entries","id":"22f0c108-3927-49f9-9722-dcbd2b9b8fa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/expense/entries?id=<integer>&entry_number=<integer>&expense_slip=<integer>&case=<integer>&status=<pending|approved|declined|committed|paid|voided>&tracking_category=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&date_from=<datestamp>&date_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Entry number of the expense entry</p>\n","type":"text/plain"},"key":"entry_number","value":"<integer>"},{"description":{"content":"<p>ID of the expense payment slip associated with the expense entry</p>\n","type":"text/plain"},"key":"expense_slip","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the expense entry</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>The status (enum) associated with the expense entry</p>\n","type":"text/plain"},"key":"status","value":"<pending|approved|declined|committed|paid|voided>"},{"description":{"content":"<p>ID of the tracking category associated with the expense entry</p>\n","type":"text/plain"},"key":"tracking_category","value":"<integer>"},{"description":{"content":"<p>ID of the user associated with the expense entry</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the expense entry was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry is for \"from\"</p>\n","type":"text/plain"},"key":"date_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry is for \"to\"</p>\n","type":"text/plain"},"key":"date_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of date_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of date_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the expense entry was created \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ddf36dc7-34c2-4042-a3b0-bace1b35c688","name":"Search expense entries","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/expense/entries?id=<integer>&entry_number=<integer>&expense_slip=<integer>&case=<integer>&status=<pending|approved|declined|committed|paid|voided>&tracking_category=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&date_from=<datestamp>&date_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["expense","entries"],"query":[{"key":"id","value":"<integer>","description":"ID of the expense entry"},{"key":"entry_number","value":"<integer>","description":"Entry number of the expense entry"},{"key":"expense_slip","value":"<integer>","description":"ID of the expense payment slip associated with the expense entry"},{"key":"case","value":"<integer>","description":"ID of the case associated with the expense entry"},{"key":"status","value":"<pending|approved|declined|committed|paid|voided>","description":"The status (enum) associated with the expense entry"},{"key":"tracking_category","value":"<integer>","description":"ID of the tracking category associated with the expense entry"},{"key":"user","value":"<integer>","description":"ID of the user associated with the expense entry"},{"key":"created_from","value":"<datestamp>","description":"ISO date the expense entry was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the expense entry was created \"to\""},{"key":"date_from","value":"<datestamp>","description":"ISO date the expense entry is for \"from\""},{"key":"date_to","value":"<datestamp>","description":"ISO date the expense entry is for \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of date_from"},{"key":"to","value":"<datestamp>","description":"Alias of date_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the expense entry was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the expense entry was created \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"entry_number\": \"1\",\n        \"entry_date\": \"2026-02-07\",\n        \"created_at\": \"2026-02-02 21:16:49\",\n        \"updated_at\": \"2026-02-02 21:16:49\",\n        \"hour_total\": \"5.00\",\n        \"wage_total\": \"225.00\",\n        \"expense_total\": \"25.00\",\n        \"entry_total\": \"250.00\",\n        \"notes\": \"\",\n        \"photo_file\": null,\n        \"expense_slip_id\": null,\n        \"entry_status\": \"pending\",\n        \"formatted_entry_number\": \"EXP-00001\",\n        \"User\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"TrackingCategory\": null,\n        \"ExpenseDetails\": [\n            {\n                \"id\": \"2\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"2\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"4.000\",\n                \"total\": \"200.00\",\n                \"notes\": \"On-site hours\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"expense_alias\": \"Work Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"4\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"4\",\n                \"rate\": \"0.500\",\n                \"quantity\": \"40.000\",\n                \"total\": \"20.00\",\n                \"notes\": \"Mileage to and from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"expense_alias\": \"Mileage\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"1\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"1\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel to claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"3\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"3\",\n                \"rate\": \"25.000\",\n                \"quantity\": \"0.500\",\n                \"total\": \"12.50\",\n                \"notes\": \"Travel home from claimant residence\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"expense_alias\": \"Travel Hours\"\n                },\n                \"ItemCode\": null\n            },\n            {\n                \"id\": \"5\",\n                \"expense_entry_id\": \"1\",\n                \"expense_detail_rank\": \"5\",\n                \"rate\": \"5.000\",\n                \"quantity\": \"1.000\",\n                \"total\": \"5.00\",\n                \"notes\": \"Tolls at the bridge\",\n                \"is_invoiced\": false,\n                \"invoice_id\": null,\n                \"FinanceItem\": {\n                    \"id\": \"4\",\n                    \"name\": \"Miscellaneous\",\n                    \"expense_alias\": \"Miscellaneous\"\n                },\n                \"ItemCode\": null\n            }\n        ]\n    }\n]"}],"_postman_id":"22f0c108-3927-49f9-9722-dcbd2b9b8fa4"},{"name":"Create an expense entry","id":"4eadb1f9-7b72-4dc9-a1b8-6655328000f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Vel aut expedita architecto consequatur vel sequi. Nam veritatis consequatur id cupiditate qui voluptatem aut facilis aut. Aut ratione doloribus recusandae non.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"961.57\",\n            \"quantity\": \"458\",\n            \"notes\": \"Labore et laboriosam magnam sunt officia in qui perspiciatis.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"14.78\",\n            \"quantity\": \"472\",\n            \"notes\": \"Ut omnis deleniti qui voluptatibus sint numquam perferendis eaque quam.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9cd3d6ec-917f-4697-a868-058601b0235d","name":"Create an expense entry","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Consequatur laudantium dolorem ullam. Magnam vel veritatis. A nulla cum voluptate quo atque at voluptatibus laboriosam doloremque.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"886.63\",\n            \"quantity\": \"643\",\n            \"notes\": \"Repellat iusto laudantium quia itaque et.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"520.85\",\n            \"quantity\": \"368\",\n            \"notes\": \"Ut unde sit quia praesentium voluptatibus dolor.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"entry_number\": \"2\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-03 15:32:11\",\n    \"updated_at\": \"2026-02-03 15:32:11\",\n    \"hour_total\": \"755.00\",\n    \"wage_total\": \"250078.65\",\n    \"expense_total\": \"62736.08\",\n    \"entry_total\": \"312814.73\",\n    \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": null,\n    \"entry_status\": \"pending\",\n    \"formatted_entry_number\": \"EXP-00002\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"11\",\n            \"expense_entry_id\": \"2\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"331.230\",\n            \"quantity\": \"755.000\",\n            \"total\": \"250078.65\",\n            \"notes\": \"Est vel minus quo fugit consectetur qui enim omnis.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"12\",\n            \"expense_entry_id\": \"2\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"259.240\",\n            \"quantity\": \"242.000\",\n            \"total\": \"62736.08\",\n            \"notes\": \"Sint numquam nulla nobis.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"4eadb1f9-7b72-4dc9-a1b8-6655328000f4"},{"name":"Update an expense entry","id":"06c37f3a-287d-49f9-a7dd-d28b2249ec63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Iure illo eum. Voluptas nesciunt quis dicta quia incidunt. Est cumque dignissimos optio assumenda quae. Expedita optio id ipsum omnis laboriosam error est. Cumque eius repellendus aut possimus iusto et dolores hic. Adipisci cum voluptate.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"198.02\",\n            \"quantity\": \"540\",\n            \"notes\": \"Qui tempore quia nesciunt impedit adipisci.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"561.06\",\n            \"quantity\": \"294\",\n            \"notes\": \"Aut dicta architecto consequatur minus ipsam enim.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries/:expense_entry_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries",":expense_entry_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_entry_id"}]}},"response":[{"id":"b9614ae5-77f1-414d-9f6b-11078c47c1c9","name":"Update an expense entry","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Inventore minus quia autem earum dolore nulla deserunt qui dolorem. Aut atque vero expedita mollitia. Vitae magni ipsum iure et voluptates in libero vitae sunt. Et aut quos velit ut dolor omnis dolore voluptas.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"206.44\",\n            \"quantity\": \"4\",\n            \"notes\": \"Magnam voluptatibus aliquid voluptatem ut et eveniet aliquam et sed.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"635.74\",\n            \"quantity\": \"673\",\n            \"notes\": \"Quas omnis magni consequatur saepe.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/expense/entries/:expense_entry_id","host":["/api/v1"],"path":["expense","entries",":expense_entry_id"],"variable":[{"key":"expense_entry_id","value":"<integer>","description":"ID of the expense entry"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"entry_number\": \"1\",\n    \"entry_date\": \"2026-02-03\",\n    \"created_at\": \"2026-02-02 21:16:49\",\n    \"updated_at\": \"2026-02-03 15:32:16\",\n    \"hour_total\": \"662.00\",\n    \"wage_total\": \"467967.80\",\n    \"expense_total\": \"373800.48\",\n    \"entry_total\": \"841768.28\",\n    \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\",\n    \"photo_file\": null,\n    \"expense_slip_id\": null,\n    \"entry_status\": \"pending\",\n    \"formatted_entry_number\": \"EXP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"TrackingCategory\": {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\"\n    },\n    \"ExpenseDetails\": [\n        {\n            \"id\": \"13\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"1\",\n            \"rate\": \"706.900\",\n            \"quantity\": \"662.000\",\n            \"total\": \"467967.80\",\n            \"notes\": \"Perferendis voluptatem nihil veniam.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"expense_alias\": \"Work Hours\"\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"expense_entry_id\": \"1\",\n            \"expense_detail_rank\": \"2\",\n            \"rate\": \"753.630\",\n            \"quantity\": \"496.000\",\n            \"total\": \"373800.48\",\n            \"notes\": \"Aut provident reprehenderit nesciunt.\",\n            \"is_invoiced\": false,\n            \"invoice_id\": null,\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"expense_alias\": \"Mileage\"\n            },\n            \"ItemCode\": null\n        }\n    ]\n}"}],"_postman_id":"06c37f3a-287d-49f9-a7dd-d28b2249ec63"}],"id":"3374b9bb-cbcc-4e2d-84f1-c1803d5a395e","description":"<p>Expense entries capture the time and expenses incurred by staff members working cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338283-Submitting-Case-Expenses\">Submitting Case Expenses</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"3374b9bb-cbcc-4e2d-84f1-c1803d5a395e","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Expense Payment Slips","item":[{"name":"Get an expense payment slip","id":"20cf29ce-2a3c-4638-9e8c-2ca3c06b5bca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips/:payment_slip_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips",":payment_slip_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the payment slip</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"payment_slip_id"}]}},"response":[{"id":"c6a8868e-ff1d-4985-94ee-19385b6ae690","name":"Get an expense payment slip","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/expense/slips/:payment_slip_id","host":["/api/v1"],"path":["expense","slips",":payment_slip_id"],"variable":[{"key":"payment_slip_id","value":"<integer>","description":"ID of the payment slip"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"slip_number\": \"1\",\n    \"reference_numbers\": \"00001WC-01\",\n    \"entry_count\": \"2\",\n    \"period_start\": null,\n    \"period_end\": null,\n    \"use_overtime\": true,\n    \"hour_total\": \"1417.00\",\n    \"overtime_hour_total\": \"1377.00\",\n    \"wage_total\": \"718046.45\",\n    \"overtime_wage_total\": \"348889.11\",\n    \"wage_grand_total\": \"1066935.56\",\n    \"expense_total\": \"436536.56\",\n    \"slip_total\": \"1503472.12\",\n    \"amount_paid\": \"1503472.12\",\n    \"amount_due\": \"0.00\",\n    \"closed_on\": \"2026-02-03\",\n    \"created_at\": \"2026-02-03 15:33:11\",\n    \"updated_at\": \"2026-02-03 15:34:16\",\n    \"slip_status\": \"paid\",\n    \"formatted_slip_number\": \"SLIP-00001\",\n    \"User\": {\n        \"id\": \"3\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"ExpenseEntries\": [\n        {\n            \"id\": \"1\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-02 21:16:49\",\n            \"updated_at\": \"2026-02-03 15:32:49\",\n            \"hour_total\": \"662.00\",\n            \"wage_total\": \"467967.80\",\n            \"expense_total\": \"373800.48\",\n            \"entry_total\": \"841768.28\",\n            \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n        },\n        {\n            \"id\": \"2\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-03 15:32:11\",\n            \"updated_at\": \"2026-02-03 15:33:00\",\n            \"hour_total\": \"755.00\",\n            \"wage_total\": \"250078.65\",\n            \"expense_total\": \"62736.08\",\n            \"entry_total\": \"312814.73\",\n            \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n        }\n    ],\n    \"ExpensePayments\": [\n        {\n            \"id\": \"1\",\n            \"paid_on\": \"2026-02-03\",\n            \"reference_number\": \"Check #123\",\n            \"payment_amount\": \"1503472.12\",\n            \"notes\": \"\"\n        }\n    ]\n}"}],"_postman_id":"20cf29ce-2a3c-4638-9e8c-2ca3c06b5bca"},{"name":"List expense payment slips","id":"7a575181-d296-4e1f-aaae-bca088e40c47","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"770978ad-c30a-4cfb-92bd-cfd3d045a7d6","name":"List expense payment slips","originalRequest":{"method":"GET","header":[],"url":"/api/v1/expense/slips"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"slip_number\": \"1\",\n        \"reference_numbers\": \"00001WC-01\",\n        \"entry_count\": \"2\",\n        \"period_start\": null,\n        \"period_end\": null,\n        \"use_overtime\": true,\n        \"hour_total\": \"1417.00\",\n        \"overtime_hour_total\": \"1377.00\",\n        \"wage_total\": \"718046.45\",\n        \"overtime_wage_total\": \"348889.11\",\n        \"wage_grand_total\": \"1066935.56\",\n        \"expense_total\": \"436536.56\",\n        \"slip_total\": \"1503472.12\",\n        \"amount_paid\": \"0.00\",\n        \"amount_due\": \"1503472.12\",\n        \"closed_on\": null,\n        \"created_at\": \"2026-02-03 15:33:11\",\n        \"updated_at\": \"2026-02-03 15:33:11\",\n        \"slip_status\": \"pending\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"ExpenseEntries\": [\n            {\n                \"id\": \"1\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-02 21:16:49\",\n                \"updated_at\": \"2026-02-03 15:32:49\",\n                \"hour_total\": \"662.00\",\n                \"wage_total\": \"467967.80\",\n                \"expense_total\": \"373800.48\",\n                \"entry_total\": \"841768.28\",\n                \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n            },\n            {\n                \"id\": \"2\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-03 15:32:11\",\n                \"updated_at\": \"2026-02-03 15:33:00\",\n                \"hour_total\": \"755.00\",\n                \"wage_total\": \"250078.65\",\n                \"expense_total\": \"62736.08\",\n                \"entry_total\": \"312814.73\",\n                \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n            }\n        ],\n        \"ExpensePayments\": []\n    }\n]"}],"_postman_id":"7a575181-d296-4e1f-aaae-bca088e40c47"},{"name":"Search expense payment slips","id":"830116a1-cd80-49c0-b6c8-c8780bb3ac5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slips?id=<integer>&slip_number=<integer>&status=<pending|partial_paid|paid|voided>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the payment slip</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Auto-generated slip number associated with the payment slip</p>\n","type":"text/plain"},"key":"slip_number","value":"<integer>"},{"description":{"content":"<p>Status (enum) of the payment slip</p>\n","type":"text/plain"},"key":"status","value":"<pending|partial_paid|paid|voided>"},{"description":{"content":"<p>ID of the user associated with the payment slip</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the payment slip was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment slip was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"df58084a-efca-4a4e-a3bd-6d6170652c84","name":"Search expense payment slips","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/expense/slips?id=<integer>&slip_number=<integer>&status=<pending|partial_paid|paid|voided>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["expense","slips"],"query":[{"key":"id","value":"<integer>","description":"ID of the payment slip"},{"key":"slip_number","value":"<integer>","description":"Auto-generated slip number associated with the payment slip"},{"key":"status","value":"<pending|partial_paid|paid|voided>","description":"Status (enum) of the payment slip"},{"key":"user","value":"<integer>","description":"ID of the user associated with the payment slip"},{"key":"created_from","value":"<datestamp>","description":"ISO date the payment slip was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the payment slip was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the payment slip was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the payment slip was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"slip_number\": \"1\",\n        \"reference_numbers\": \"00001WC-01\",\n        \"entry_count\": \"2\",\n        \"period_start\": null,\n        \"period_end\": null,\n        \"use_overtime\": true,\n        \"hour_total\": \"1417.00\",\n        \"overtime_hour_total\": \"1377.00\",\n        \"wage_total\": \"718046.45\",\n        \"overtime_wage_total\": \"348889.11\",\n        \"wage_grand_total\": \"1066935.56\",\n        \"expense_total\": \"436536.56\",\n        \"slip_total\": \"1503472.12\",\n        \"amount_paid\": \"0.00\",\n        \"amount_due\": \"1503472.12\",\n        \"closed_on\": null,\n        \"created_at\": \"2026-02-03 15:33:11\",\n        \"updated_at\": \"2026-02-03 15:33:11\",\n        \"slip_status\": \"pending\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"ExpenseEntries\": [\n            {\n                \"id\": \"1\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-02 21:16:49\",\n                \"updated_at\": \"2026-02-03 15:32:49\",\n                \"hour_total\": \"662.00\",\n                \"wage_total\": \"467967.80\",\n                \"expense_total\": \"373800.48\",\n                \"entry_total\": \"841768.28\",\n                \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n            },\n            {\n                \"id\": \"2\",\n                \"entry_date\": \"2026-02-03\",\n                \"created_at\": \"2026-02-03 15:32:11\",\n                \"updated_at\": \"2026-02-03 15:33:00\",\n                \"hour_total\": \"755.00\",\n                \"wage_total\": \"250078.65\",\n                \"expense_total\": \"62736.08\",\n                \"entry_total\": \"312814.73\",\n                \"notes\": \"Magnam omnis eveniet ut non. Est est ut rerum et voluptas totam ut harum nostrum.\"\n            }\n        ],\n        \"ExpensePayments\": []\n    }\n]"}],"_postman_id":"830116a1-cd80-49c0-b6c8-c8780bb3ac5f"},{"name":"Create an expense payment slip","id":"10b75886-9aff-4714-8bb3-a547a96d665b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_slip\": {\n    \"user_id\": \"<integer>\",\n    \"expense_entries_list\": [<integer>,<integer>],\n    \"use_overtime\": true\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slips","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slips"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c36e7a78-779d-4f10-87e2-0b3d50ab3b92","name":"Create an expense payment slip","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_slip\": {\n    \"user_id\": <integer>,\n    \"expense_entries_list\": [<integer>],\n    \"use_overtime\": true\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slips"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-2d52e1e4088319022f08deb040546d05' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"1097"},{"key":"date","value":"Thu, 02 Apr 2026 20:23:42 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"slip_number\": \"1\",\n    \"reference_numbers\": \"00001WC-01\",\n    \"entry_count\": \"1\",\n    \"period_start\": null,\n    \"period_end\": null,\n    \"use_overtime\": true,\n    \"hour_total\": \"662.00\",\n    \"overtime_hour_total\": \"622.00\",\n    \"wage_total\": \"467967.80\",\n    \"overtime_wage_total\": \"219845.90\",\n    \"wage_grand_total\": \"687813.70\",\n    \"expense_total\": \"373800.48\",\n    \"slip_total\": \"1061614.18\",\n    \"amount_paid\": \"0.00\",\n    \"amount_due\": \"1061614.18\",\n    \"closed_on\": null,\n    \"created_at\": \"2026-04-02 20:23:42\",\n    \"updated_at\": \"2026-04-02 20:23:42\",\n    \"slip_status\": \"pending\",\n    \"formatted_slip_number\": \"SLIP-00001\",\n    \"User\": {\n        \"id\": \"1\",\n        \"first_name\": \"Jefferey\",\n        \"last_name\": \"Lebsack\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    },\n    \"ExpenseEntries\": [\n        {\n            \"id\": \"1\",\n            \"entry_date\": \"2026-02-03\",\n            \"created_at\": \"2026-02-02 21:16:49\",\n            \"updated_at\": \"2026-02-03 15:32:49\",\n            \"hour_total\": \"662.00\",\n            \"wage_total\": \"467967.80\",\n            \"expense_total\": \"373800.48\",\n            \"entry_total\": \"841768.28\",\n            \"notes\": \"Deserunt autem quo consequatur eius asperiores est amet eos. Tempora suscipit accusantium iusto enim aut aut. Ex eaque quaerat ab. Sapiente veniam ea.\"\n        }\n    ],\n    \"ExpensePayments\": []\n}"}],"_postman_id":"10b75886-9aff-4714-8bb3-a547a96d665b"}],"id":"73b5c6d7-c928-4c32-8bcb-2fd0aa24cac3","description":"<p>Expense payment slips roll up expense entries into pay periods, allowing administrators to effectively track time and expenses that require reimbursement.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337823-Creating-Payment-Slips-from-Expenses\">Creating Payment Slips from Expenses</a></p>\n","_postman_id":"73b5c6d7-c928-4c32-8bcb-2fd0aa24cac3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Expense Payment Slip Payments","item":[{"name":"Get an expense payment slip payment","id":"b3f423c8-071b-4d75-a632-bb10a0d62345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slip/payments/:payment_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slip","payments",":payment_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense slip payment</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"payment_id"}]}},"response":[{"id":"92452fa0-fdfe-4940-9723-c63e26c74094","name":"Get an expense payment slip payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/expense/slip/payments/:payment_id","host":["/api/v1"],"path":["expense","slip","payments",":payment_id"],"variable":[{"key":"payment_id","value":"<integer>"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"paid_on\": \"2026-05-14\",\n    \"reference_number\": \"12345\",\n    \"payment_amount\": \"500.00\",\n    \"notes\": \"Partial payment\",\n    \"created_at\": \"2026-05-14 19:29:26\",\n    \"ExpenseSlip\": {\n        \"id\": \"3\",\n        \"slip_number\": \"1\",\n        \"slip_total\": \"1503472.12\",\n        \"created_at\": \"2026-05-14 19:28:30\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n}"}],"_postman_id":"b3f423c8-071b-4d75-a632-bb10a0d62345"},{"name":"List expense payment slip payments","id":"409b2e4a-4ac4-43ea-a58f-793c895e1159","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/expense/slip/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slip","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5fa4ac7a-f3b0-4d3f-a76b-64b87bc41580","name":"List expense payment slip payments","originalRequest":{"method":"GET","header":[],"url":"/api/v1/expense/slip/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"paid_on\": \"2026-05-14\",\n        \"reference_number\": \"12345\",\n        \"payment_amount\": \"500.00\",\n        \"notes\": \"Partial payment\",\n        \"created_at\": \"2026-05-14 19:29:26\",\n        \"ExpenseSlip\": {\n            \"id\": \"3\",\n            \"slip_number\": \"1\",\n            \"slip_total\": \"1503472.12\",\n            \"created_at\": \"2026-05-14 19:28:30\",\n            \"formatted_slip_number\": \"SLIP-00001\",\n            \"User\": {\n                \"id\": \"3\",\n                \"first_name\": \"Sam\",\n                \"last_name\": \"Spade\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        }\n    }\n]"}],"_postman_id":"409b2e4a-4ac4-43ea-a58f-793c895e1159"},{"name":"Search expense payment slip payments","id":"6a4f2389-2115-4ec9-8991-34047e40444a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_payment\": {\n    \"expense_slip_id\": \"<integer>\",\n    \"payment_amount\": \"944.34\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"maxime-dicta-placeat\",\n    \"notes\": \"voluptatem dolorem voluptatum\"\n  }\n}"},"url":"/api/v1/expense/slip/payments?id=<integer>&reference_number=<string>&slip=<integer>&slip_number=<integer>&user=<integer>&paid_from=<datestamp>&paid_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slip","payments"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the payment</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Reference number or check number of the payment</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ID of the expense payment slip</p>\n","type":"text/plain"},"key":"slip","value":"<integer>"},{"description":{"content":"<p>Slip number associated with the expense payment slip</p>\n","type":"text/plain"},"key":"slip_number","value":"<integer>"},{"description":{"content":"<p>ID of the user associated with the expense payment slip</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the payment was received \"from\"</p>\n","type":"text/plain"},"key":"paid_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was received \"to\"</p>\n","type":"text/plain"},"key":"paid_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"7c928148-5be3-4458-a40e-bfc9fea5beb4","name":"Search expense payment slip payments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_payment\": {\n    \"expense_slip_id\": \"<integer>\",\n    \"payment_amount\": \"242.30\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"nihil-dolorum-occaecati\",\n    \"notes\": \"dolorem consectetur hic\"\n  }\n}"},"url":{"raw":"/api/v1/expense/slip/payments?id=<integer>&reference_number=<string>&slip=<integer>&slip_number=<integer>&user=<integer>&paid_from=<datestamp>&paid_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>","host":["/api/v1"],"path":["expense","slip","payments"],"query":[{"key":"id","value":"<integer>","description":"ID of the payment"},{"key":"reference_number","value":"<string>","description":"Reference number or check number of the payment"},{"key":"slip","value":"<integer>","description":"ID of the expense payment slip"},{"key":"slip_number","value":"<integer>","description":"Slip number associated with the expense payment slip"},{"key":"user","value":"<integer>","description":"ID of the user associated with the expense payment slip"},{"key":"paid_from","value":"<datestamp>","description":"ISO date the payment was received \"from\""},{"key":"paid_to","value":"<datestamp>","description":"ISO date the payment was received \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the payment was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the payment was created \"to\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"paid_on\": \"2026-05-14\",\n        \"reference_number\": \"12345\",\n        \"payment_amount\": \"500.00\",\n        \"notes\": \"Partial payment\",\n        \"created_at\": \"2026-05-14 19:29:26\",\n        \"ExpenseSlip\": {\n            \"id\": \"3\",\n            \"slip_number\": \"1\",\n            \"slip_total\": \"1503472.12\",\n            \"created_at\": \"2026-05-14 19:28:30\",\n            \"formatted_slip_number\": \"SLIP-00001\",\n            \"User\": {\n                \"id\": \"3\",\n                \"first_name\": \"Sam\",\n                \"last_name\": \"Spade\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        }\n    }\n]"}],"_postman_id":"6a4f2389-2115-4ec9-8991-34047e40444a"},{"name":"Create an expense payment slip payment","id":"f4d7cd3c-a012-4172-ab30-9cfa87d2a119","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_payment\": {\n    \"expense_slip_id\": \"<integer>\",\n    \"payment_amount\": \"16.27\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"modi-molestiae-quas\",\n    \"notes\": \"reprehenderit dignissimos est\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slip/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","slip","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"bab88dfa-be71-4d3e-943d-d36eabc736d3","name":"Create an expense payment slip payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_payment\": {\n    \"expense_slip_id\": \"<integer>\",\n    \"payment_amount\": \"199.60\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"qui-dolorem-enim\",\n    \"notes\": \"molestias nostrum voluptas\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/slip/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"paid_on\": \"2026-05-14\",\n    \"reference_number\": \"4\",\n    \"payment_amount\": \"305.01\",\n    \"notes\": \"a repudiandae veniam\",\n    \"created_at\": \"2026-05-14 19:39:53\",\n    \"ExpenseSlip\": {\n        \"id\": \"3\",\n        \"slip_number\": \"1\",\n        \"slip_total\": \"1503472.12\",\n        \"created_at\": \"2026-05-14 19:28:30\",\n        \"formatted_slip_number\": \"SLIP-00001\",\n        \"User\": {\n            \"id\": \"3\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n}"}],"_postman_id":"f4d7cd3c-a012-4172-ab30-9cfa87d2a119"}],"id":"eba73aa6-28d2-44b9-ac1f-3d320a290973","description":"<p>Expense payment slip payments are the records that payment slips have been paid.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337823-Creating-Payment-Slips-from-Expenses\">Creating Payment Slips from Expenses</a></p>\n","_postman_id":"eba73aa6-28d2-44b9-ac1f-3d320a290973","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Files (Uploads)","item":[{"name":"Get a file","id":"96377bd5-3132-4722-bc1a-723221b4f527","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files/:file_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files",":file_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the file</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"file_id"}]}},"response":[{"id":"430eb5b5-74b1-46e8-a42c-94d769df7305","name":"Get a file","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/files/:file_id","host":["/api/v1"],"path":["files",":file_id"],"variable":[{"key":"file_id","value":"<integer>","description":"ID of the file"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"access_group_id\": \"2\",\n    \"casefile_id\": \"3\",\n    \"name\": \"00001WC-01 Final Report.pdf\",\n    \"filename\": \"00001wc-01_final_report.pdf\",\n    \"size\": \"38415\",\n    \"file_path\": \"/case/3\",\n    \"mime\": \"application/pdf\",\n    \"reference_number\": \"Marty McFly\",\n    \"notes\": \"Final Report on the Marty McFly case.\",\n    \"created_at\": \"2026-02-02 21:20:19\",\n    \"processed_at\": \"2026-02-02 21:20:46\",\n    \"updated_at\": \"2026-02-02 21:20:46\",\n    \"CreatedBy\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"updates_list\": [\n        \"3\"\n    ],\n    \"path\": \"/case/3\",\n    \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147484&Signature=kPXYfDSMC0JOypk6U4hs17O6AyLJZgoEidOWW3YZ69hIIQ611LHNtY88EKKeqXq1ZCXwaoQffGE6uw0yd9aGAw0hky34EUsOxVtlWp4tY6vLr7BTQbPqcJgfl7I7~pzNzGYtEnKEtuGJz7zjXp3d-XTmx4AugY9RkGDFNwYO62XsphvUFgM2bjw3Z9aHlpG8VfAMDWB5hbkQ42D3zX4BRob2mVs5J8~mi31R-sGNhoaFA~UdzHDPsX-qpvxKRT0v1iy7eXnfJRWKwD6cPi1mf33Rlc5QOrKEb5A1pnUQEaBnPKfl4-~l5TWS6N-vR8jZM~LdQh2Cz7RjLBPk2DYthA__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n    \"url_expiration\": \"2026-02-03 19:38:04\"\n}"}],"_postman_id":"96377bd5-3132-4722-bc1a-723221b4f527"},{"name":"List files","id":"1cad072c-6753-4321-a96c-d368bce304d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4fbc237f-b46c-493b-96a6-60c46981ef1c","name":"List files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"access_group_id\": \"2\",\n        \"casefile_id\": \"3\",\n        \"name\": \"00001WC-01 Final Report.pdf\",\n        \"filename\": \"00001wc-01_final_report.pdf\",\n        \"size\": \"38415\",\n        \"file_path\": \"/case/3\",\n        \"mime\": \"application/pdf\",\n        \"reference_number\": \"Marty McFly\",\n        \"notes\": \"Final Report on the Marty McFly case.\",\n        \"created_at\": \"2026-02-02 21:20:19\",\n        \"processed_at\": \"2026-02-02 21:20:46\",\n        \"updated_at\": \"2026-02-02 21:20:46\",\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"updates_list\": [\n            \"3\"\n        ],\n        \"path\": \"/case/3\",\n        \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147318&Signature=kpjpfATaaRFZjGyfhNO9eJcR7GW78CvHqN4plVDMCJDkdVI1y-72J6ajfNnS2H1utprw6o4f9omAu3d~pQ8HP28N~kZhDtsas8o18wwKVq9VKcJvEMLL1h2QJdg75RHJi6kb0OPhUMnD7elORODJFDsfDSfx0snFb0DWemYofi6ea13wjCgNAeGqeMXh7MtFJeYZIO-WXmfzpx9sxob4gPDGQsVPPv6sZVFyqKjhZPlGPtriI5Vcz-eeJZT7TqzscPozW16-JLm0mKsPN2k6-sooTNSspnt~LHjFephp2Xq8GrVH53QNQ-JaNL41gWXSw3HRylgJmTGFsBgl3WuF1A__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n        \"url_expiration\": \"2026-02-03 19:35:18\"\n    }\n]"}],"_postman_id":"1cad072c-6753-4321-a96c-d368bce304d3"},{"name":"Search files","id":"6ff89232-d5d5-4ede-b035-a70693282f6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/files?id=<integer>&access_group=<integer>&case=<integer>&filename=<string>&mime_type=<string>&name=<string>&reference_number=<string>&created_by=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["files"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the file</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the access group associated with the file</p>\n","type":"text/plain"},"key":"access_group","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the file</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>Filename of the file (i.e. filename.ext)</p>\n","type":"text/plain"},"key":"filename","value":"<string>"},{"description":{"content":"<p>Mime type of the file (i.e. video/mp4) </p>\n","type":"text/plain"},"key":"mime_type","value":"<string>"},{"description":{"content":"<p>Name of the file</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference number or lookup code for the file</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ID of the user who created the file</p>\n","type":"text/plain"},"key":"created_by","value":"<integer>"},{"description":{"content":"<p>ISO date the file was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the file was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"796ea1e7-d5b1-4e29-98d9-b3a1ed97200d","name":"Search files","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/files?id=<integer>&access_group=<integer>&case=<integer>&filename=<string>&mime_type=<string>&name=<string>&reference_number=<string>&created_by=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["files"],"query":[{"key":"id","value":"<integer>","description":"ID of the file"},{"key":"access_group","value":"<integer>","description":"ID of the access group associated with the file"},{"key":"case","value":"<integer>","description":"ID of the case associated with the file"},{"key":"filename","value":"<string>","description":"Filename of the file (i.e. filename.ext)"},{"key":"mime_type","value":"<string>","description":"Mime type of the file (i.e. video/mp4) "},{"key":"name","value":"<string>","description":"Name of the file"},{"key":"reference_number","value":"<string>","description":"Reference number or lookup code for the file"},{"key":"created_by","value":"<integer>","description":"ID of the user who created the file"},{"key":"created_from","value":"<datestamp>","description":"ISO date the file was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the file was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the file was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the file was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"access_group_id\": \"2\",\n        \"casefile_id\": \"3\",\n        \"name\": \"00001WC-01 Final Report.pdf\",\n        \"filename\": \"00001wc-01_final_report.pdf\",\n        \"size\": \"38415\",\n        \"file_path\": \"/case/3\",\n        \"mime\": \"application/pdf\",\n        \"reference_number\": \"Marty McFly\",\n        \"notes\": \"Final Report on the Marty McFly case.\",\n        \"created_at\": \"2026-02-02 21:20:19\",\n        \"processed_at\": \"2026-02-02 21:20:46\",\n        \"updated_at\": \"2026-02-02 21:20:46\",\n        \"CreatedBy\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"updates_list\": [\n            \"3\"\n        ],\n        \"path\": \"/case/3\",\n        \"url\": \"https://url_to_uploaded_file/00001wc-01_final_report.pdf?v=1&response-content-disposition=attachment&Expires=1770147318&Signature=kpjpfATaaRFZjGyfhNO9eJcR7GW78CvHqN4plVDMCJDkdVI1y-72J6ajfNnS2H1utprw6o4f9omAu3d~pQ8HP28N~kZhDtsas8o18wwKVq9VKcJvEMLL1h2QJdg75RHJi6kb0OPhUMnD7elORODJFDsfDSfx0snFb0DWemYofi6ea13wjCgNAeGqeMXh7MtFJeYZIO-WXmfzpx9sxob4gPDGQsVPPv6sZVFyqKjhZPlGPtriI5Vcz-eeJZT7TqzscPozW16-JLm0mKsPN2k6-sooTNSspnt~LHjFephp2Xq8GrVH53QNQ-JaNL41gWXSw3HRylgJmTGFsBgl3WuF1A__&Key-Pair-Id=APKAJDGTI5NCHZIQ7TYA\",\n        \"url_expiration\": \"2026-02-03 19:35:18\"\n    }\n]"}],"_postman_id":"6ff89232-d5d5-4ede-b035-a70693282f6a"}],"id":"b1d6be9e-990a-4a76-8cfa-2551352e1f62","description":"<p>Files (uploads) contain attachments of various types that are uploaded to cases and can be attached and shared via case updates.</p>\n<p><strong>Note:</strong> For uploading new files to existing cases or case requests, locate the <em>Files (Uploads)</em> subfolder under the respective <em>Cases</em> or <em>Case Requests</em> folder.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212338203-How-to-Upload-Files-to-Cases\">How to Upload Files to Cases</a></p>\n","_postman_id":"b1d6be9e-990a-4a76-8cfa-2551352e1f62","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoice & Expense Items","item":[{"name":"Get an invoice/expense item","id":"18011982-ded8-4896-98b1-3fa5fbd1e72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items/:finance_item_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items",":finance_item_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice or expense item</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"finance_item_id"}]}},"response":[{"id":"629e4aa3-994d-4071-a32a-9852db1c0182","name":"Get an invoice/expense item","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/finance_items/:finance_item_id","host":["/api/v1"],"path":["finance_items",":finance_item_id"],"variable":[{"key":"finance_item_id","value":"<integer>","description":"ID of the invoice or expense item"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Work Hours\",\n    \"expense_alias\": \"Work Hours\",\n    \"expense_unit_rate\": \"50.000\",\n    \"expense_unit_label\": \"hour\",\n    \"expense_description\": null,\n    \"invoice_alias\": \"Work Hours\",\n    \"invoice_unit_rate\": \"75.000\",\n    \"invoice_unit_discount\": \"0.00\",\n    \"invoice_description\": \"\",\n    \"tax_rate_id\": \"1\",\n    \"is_time\": true,\n    \"is_fixed\": true,\n    \"is_expense_item\": true,\n    \"is_invoice_item\": true,\n    \"is_budgetable\": true,\n    \"reference_id\": null,\n    \"item_code\": null,\n    \"created_at\": \"2010-12-16 19:33:16\",\n    \"updated_at\": \"2011-04-04 22:16:57\"\n}"}],"_postman_id":"18011982-ded8-4896-98b1-3fa5fbd1e72d"},{"name":"List invoice/expense items","id":"7a3ddb7b-a53f-4d07-9940-5bf3bc047f42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"d61dcbd9-23bb-409f-b09b-d71e190e5732","name":"List invoice/expense items","originalRequest":{"method":"GET","header":[],"url":"/api/v1/finance_items"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"4\",\n        \"name\": \"Miscellaneous\",\n        \"expense_alias\": \"Miscellaneous\",\n        \"expense_unit_rate\": \"0.000\",\n        \"expense_unit_label\": null,\n        \"expense_description\": null,\n        \"invoice_alias\": \"Miscellaneous\",\n        \"invoice_unit_rate\": null,\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": null,\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": false,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 15:10:41\",\n        \"updated_at\": \"2011-03-04 15:10:44\"\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Travel Hours\",\n        \"expense_alias\": \"Travel Hours\",\n        \"expense_unit_rate\": \"25.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Travel Hours\",\n        \"invoice_unit_rate\": \"50.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"travel time to and from investigation.\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 00:00:00\",\n        \"updated_at\": \"2011-03-04 00:00:00\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Mileage\",\n        \"expense_alias\": \"Mileage\",\n        \"expense_unit_rate\": \"0.500\",\n        \"expense_unit_label\": \"mile\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Mileage\",\n        \"invoice_unit_rate\": \"0.750\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-01-28 17:21:58\",\n        \"updated_at\": \"2011-04-04 22:17:35\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2010-12-16 19:33:16\",\n        \"updated_at\": \"2011-04-04 22:16:57\"\n    }\n]"}],"_postman_id":"7a3ddb7b-a53f-4d07-9940-5bf3bc047f42"},{"name":"Search invoice/expense items","id":"308038db-4b04-4a89-9d47-2d9a7939e356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/finance_items?id=<integer>&item_code=<integer>&expense_alias=<string>&invoice_alias=<string>&name=<string>&reference_id=<string>&is_budgetable=<boolean>&is_expense_item=<boolean>&is_fixed=<boolean>&is_invoice_item=<boolean>&is_time=<boolean>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["finance_items"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the finance item</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the item code associated with the finance item</p>\n","type":"text/plain"},"key":"item_code","value":"<integer>"},{"description":{"content":"<p>Name of the expense alias for the finance item</p>\n","type":"text/plain"},"key":"expense_alias","value":"<string>"},{"description":{"content":"<p>Name of the invoice alias for the finance item</p>\n","type":"text/plain"},"key":"invoice_alias","value":"<string>"},{"description":{"content":"<p>Name of the finance item</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the finance item</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Is the budget affected when this item is used</p>\n","type":"text/plain"},"key":"is_budgetable","value":"<boolean>"},{"description":{"content":"<p>Is the item available for use in expense entries</p>\n","type":"text/plain"},"key":"is_expense_item","value":"<boolean>"},{"description":{"content":"<p>Is the item a fixed rate item</p>\n","type":"text/plain"},"key":"is_fixed","value":"<boolean>"},{"description":{"content":"<p>Is the item available for use in invoices</p>\n","type":"text/plain"},"key":"is_invoice_item","value":"<boolean>"},{"description":{"content":"<p>Is the item a time based item</p>\n","type":"text/plain"},"key":"is_time","value":"<boolean>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"0d167207-6f88-4355-bb9c-204991f73a1b","name":"Search invoice/expense items","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/finance_items?id=<integer>&item_code=<integer>&expense_alias=<string>&invoice_alias=<string>&name=<string>&reference_id=<string>&is_budgetable=<boolean>&is_expense_item=<boolean>&is_fixed=<boolean>&is_invoice_item=<boolean>&is_time=<boolean>&page=<integer>","host":["/api/v1"],"path":["finance_items"],"query":[{"key":"id","value":"<integer>","description":"ID of the finance item"},{"key":"item_code","value":"<integer>","description":"ID of the item code associated with the finance item"},{"key":"expense_alias","value":"<string>","description":"Name of the expense alias for the finance item"},{"key":"invoice_alias","value":"<string>","description":"Name of the invoice alias for the finance item"},{"key":"name","value":"<string>","description":"Name of the finance item"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the finance item"},{"key":"is_budgetable","value":"<boolean>","description":"Is the budget affected when this item is used"},{"key":"is_expense_item","value":"<boolean>","description":"Is the item available for use in expense entries"},{"key":"is_fixed","value":"<boolean>","description":"Is the item a fixed rate item"},{"key":"is_invoice_item","value":"<boolean>","description":"Is the item available for use in invoices"},{"key":"is_time","value":"<boolean>","description":"Is the item a time based item"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"4\",\n        \"name\": \"Miscellaneous\",\n        \"expense_alias\": \"Miscellaneous\",\n        \"expense_unit_rate\": \"0.000\",\n        \"expense_unit_label\": null,\n        \"expense_description\": null,\n        \"invoice_alias\": \"Miscellaneous\",\n        \"invoice_unit_rate\": null,\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": null,\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": false,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 15:10:41\",\n        \"updated_at\": \"2011-03-04 15:10:44\"\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"Travel Hours\",\n        \"expense_alias\": \"Travel Hours\",\n        \"expense_unit_rate\": \"25.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Travel Hours\",\n        \"invoice_unit_rate\": \"50.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"travel time to and from investigation.\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-03-04 00:00:00\",\n        \"updated_at\": \"2011-03-04 00:00:00\"\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Mileage\",\n        \"expense_alias\": \"Mileage\",\n        \"expense_unit_rate\": \"0.500\",\n        \"expense_unit_label\": \"mile\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Mileage\",\n        \"invoice_unit_rate\": \"0.750\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": false,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2011-01-28 17:21:58\",\n        \"updated_at\": \"2011-04-04 22:17:35\"\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\",\n        \"expense_unit_label\": \"hour\",\n        \"expense_description\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\",\n        \"invoice_unit_discount\": \"0.00\",\n        \"invoice_description\": \"\",\n        \"tax_rate_id\": \"1\",\n        \"is_time\": true,\n        \"is_fixed\": true,\n        \"is_expense_item\": true,\n        \"is_invoice_item\": true,\n        \"is_budgetable\": true,\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"created_at\": \"2010-12-16 19:33:16\",\n        \"updated_at\": \"2011-04-04 22:16:57\"\n    }\n]"}],"_postman_id":"308038db-4b04-4a89-9d47-2d9a7939e356"}],"id":"45011fe0-31c8-4e97-ba40-8ac38a87b796","description":"<p>Invoice and expense items (finance items) are the products and services you offer. These items are used in expense entries and invoices.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336803-How-to-set-up-your-Invoice-and-Expense-Items\">How to set up your Invoice and Expense Items</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"45011fe0-31c8-4e97-ba40-8ac38a87b796","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoice Payments","item":[{"name":"Get an invoice payment","id":"0994338d-fc0d-4a3f-a457-e9981656ef02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments/:invoice_payment_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments",":invoice_payment_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice payment</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"invoice_payment_id"}]}},"response":[{"id":"6a91025e-383c-41ea-a2ac-e79af2b598dc","name":"Get an invoice payment","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoice/payments/:invoice_payment_id","host":["/api/v1"],"path":["invoice","payments",":invoice_payment_id"],"variable":[{"key":"invoice_payment_id","value":"<integer>","description":"ID of the invoice payment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"paid_on\": \"2026-02-03\",\n    \"reference_number\": \"Check #123\",\n    \"payment_amount\": \"537.50\",\n    \"notes\": \"\",\n    \"created_at\": \"2026-02-03 16:11:02\",\n    \"updated_at\": \"2026-02-03 16:11:02\",\n    \"PaymentMethod\": {\n        \"id\": \"2\",\n        \"name\": \"Check\",\n        \"is_credit\": false,\n        \"reference_id\": null\n    },\n    \"Invoice\": {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"casefile_id\": \"3\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"is_retainer\": false,\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"537.50\",\n        \"amount_outstanding\": \"0.00\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        }\n    }\n}"}],"_postman_id":"0994338d-fc0d-4a3f-a457-e9981656ef02"},{"name":"List invoice payments","id":"bd3b99ec-597e-4f38-bc2d-6931001d9cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a8572132-7c18-4122-b5a5-6ecc54d95f71","name":"List invoice payments","originalRequest":{"method":"GET","header":[],"url":"/api/v1/invoice/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"paid_on\": \"2026-02-03\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"537.50\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-02-03 16:11:02\",\n        \"updated_at\": \"2026-02-03 16:11:02\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"is_credit\": false,\n            \"reference_id\": null\n        },\n        \"Invoice\": {\n            \"id\": \"1\",\n            \"invoice_number\": \"1\",\n            \"reference_number\": \"ABC-123\",\n            \"reference_number_2\": \"SIU-234\",\n            \"reference_number_3\": \"\",\n            \"casefile_id\": \"3\",\n            \"created_on\": \"2026-02-03\",\n            \"due_on\": \"2026-03-05\",\n            \"is_retainer\": false,\n            \"grand_total\": \"537.50\",\n            \"amount_paid\": \"537.50\",\n            \"amount_outstanding\": \"0.00\",\n            \"formatted_invoice_number\": \"INV-00001\",\n            \"route_prefix\": \"invoice\",\n            \"Client\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"email_invoice\": \"\",\n                \"route_prefix\": \"client\"\n            },\n            \"User\": {\n                \"id\": \"2\",\n                \"first_name\": \"Virginia\",\n                \"last_name\": \"Kuhn\",\n                \"email\": \"Wallace61@example.net\",\n                \"name\": \"Kuhn, Virginia\",\n                \"proper_name\": \"Virginia Kuhn\"\n            }\n        }\n    }\n]"}],"_postman_id":"bd3b99ec-597e-4f38-bc2d-6931001d9cde"},{"name":"Search invoice payments","id":"b3c9ebae-8bd2-4bd4-a76a-15b3e935efaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoice/payments?id=<integer>&invoice=<integer>&invoice_number=<integer>&invoice_reference_number=<string>&reference_number=<string>&invoice_created_from=<datestamp>&invoice_created_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&paid_to=<datestamp>&paid_from=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the invoice payment</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the invoice associated with the payment</p>\n","type":"text/plain"},"key":"invoice","value":"<integer>"},{"description":{"content":"<p>Numerical invoice number associated with the payment</p>\n","type":"text/plain"},"key":"invoice_number","value":"<integer>"},{"description":{"content":"<p>Reference number 1 for the associated invoice</p>\n","type":"text/plain"},"key":"invoice_reference_number","value":"<string>"},{"description":{"content":"<p>Reference number (check number, transaction number, etc...) for the invoice payment</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ISO date of the assoicated invoice \"from\"</p>\n","type":"text/plain"},"key":"invoice_created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the assoicated invoice \"to\"</p>\n","type":"text/plain"},"key":"invoice_created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of paid_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of paid_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date  of the invoice payment date \"to\"</p>\n","type":"text/plain"},"key":"paid_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date  of the invoice payment date \"from\"</p>\n","type":"text/plain"},"key":"paid_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"7dffa7fd-dbd4-41e4-b48d-2ce7b8ce6c71","name":"Search invoice payments","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoice/payments?id=<integer>&invoice=<integer>&invoice_number=<integer>&invoice_reference_number=<string>&reference_number=<string>&invoice_created_from=<datestamp>&invoice_created_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&paid_to=<datestamp>&paid_from=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["invoice","payments"],"query":[{"key":"id","value":"<integer>","description":"ID of the invoice payment"},{"key":"invoice","value":"<integer>","description":"ID of the invoice associated with the payment"},{"key":"invoice_number","value":"<integer>","description":"Numerical invoice number associated with the payment"},{"key":"invoice_reference_number","value":"<string>","description":"Reference number 1 for the associated invoice"},{"key":"reference_number","value":"<string>","description":"Reference number (check number, transaction number, etc...) for the invoice payment"},{"key":"invoice_created_from","value":"<datestamp>","description":"ISO date of the assoicated invoice \"from\""},{"key":"invoice_created_to","value":"<datestamp>","description":"ISO date of the assoicated invoice \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the payment was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the payment was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of paid_from"},{"key":"to","value":"<datestamp>","description":"Alias of paid_to"},{"key":"paid_to","value":"<datestamp>","description":"ISO date  of the invoice payment date \"to\""},{"key":"paid_from","value":"<datestamp>","description":"ISO date  of the invoice payment date \"from\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the payment was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the payment was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"paid_on\": \"2026-02-03\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"537.50\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-02-03 16:11:02\",\n        \"updated_at\": \"2026-02-03 16:11:02\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"is_credit\": false,\n            \"reference_id\": null\n        },\n        \"Invoice\": {\n            \"id\": \"1\",\n            \"invoice_number\": \"1\",\n            \"reference_number\": \"ABC-123\",\n            \"reference_number_2\": \"SIU-234\",\n            \"reference_number_3\": \"\",\n            \"casefile_id\": \"3\",\n            \"created_on\": \"2026-02-03\",\n            \"due_on\": \"2026-03-05\",\n            \"is_retainer\": false,\n            \"grand_total\": \"537.50\",\n            \"amount_paid\": \"537.50\",\n            \"amount_outstanding\": \"0.00\",\n            \"formatted_invoice_number\": \"INV-00001\",\n            \"route_prefix\": \"invoice\",\n            \"Client\": {\n                \"id\": \"4\",\n                \"name\": \"Main Location\",\n                \"email_invoice\": \"\",\n                \"route_prefix\": \"client\"\n            },\n            \"User\": {\n                \"id\": \"2\",\n                \"first_name\": \"Virginia\",\n                \"last_name\": \"Kuhn\",\n                \"email\": \"Wallace61@example.net\",\n                \"name\": \"Kuhn, Virginia\",\n                \"proper_name\": \"Virginia Kuhn\"\n            }\n        }\n    }\n]"}],"_postman_id":"b3c9ebae-8bd2-4bd4-a76a-15b3e935efaa"},{"name":"Create an invoice payment","id":"55b325dd-f12a-4359-9b9c-a66c20a362bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_payment\": {\n    \"invoice_id\": \"<integer>\",\n    \"payment_method_id\": \"<integer>\",\n    \"paid_on\": \"<datestamp>\",\n    \"payment_amount\": \"125\",\n    \"reference_number\": \"22f450e0-bee8-417e-8696-8511966649b1\",\n    \"notes\": \"Vitae et est.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/invoice/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoice","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"2110878d-82e5-4718-91fc-240de98eab24","name":"Create an invoice payment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"invoice_payment\": {\n    \"invoice_id\": \"<integer>\",\n    \"payment_method_id\": \"<integer>\",\n    \"paid_on\": \"<datestamp>\",\n    \"payment_amount\": \"982\",\n    \"reference_number\": \"ff370641-8a87-473f-a4cd-770805277bf1\",\n    \"notes\": \"Vitae tempore quam et omnis sint consequatur vel.\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/invoice/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"paid_on\": \"2026-02-03\",\n    \"reference_number\": \"68ecce4f-fca3-4f0e-aad6-9a413ed09fe5\",\n    \"payment_amount\": \"424.00\",\n    \"notes\": \"Doloremque est qui aspernatur qui soluta beatae.\",\n    \"created_at\": \"2026-02-03 16:12:42\",\n    \"updated_at\": \"2026-02-03 16:12:42\",\n    \"PaymentMethod\": {\n        \"id\": \"1\",\n        \"name\": \"Cash\",\n        \"is_credit\": false,\n        \"reference_id\": null\n    },\n    \"Invoice\": {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"casefile_id\": \"3\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"is_retainer\": false,\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"email_invoice\": \"\",\n            \"route_prefix\": \"client\"\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        }\n    }\n}"}],"_postman_id":"55b325dd-f12a-4359-9b9c-a66c20a362bc"}],"id":"ad8af6d2-bb20-4ad5-9d50-ceb46e71508f","description":"<p>Invoice payments capture payment details.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRsKwiN3U354B46D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJpaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8zMzk1MTYwNDEzNzM1Ny1BY2NlcHRpbmctSW52b2ljZS1QYXltZW50cy13aXRoLVN0cmlwZQY7CFQ6DnNlYXJjaF9pZEkiKWRjYmVlYTY5LTUwNGItNGM5OS1hYzg5LTVhZWVkYzI2ZjQ1ZQY7CEY6CXJhbmtpBzoLbG9jYWxlSSIKZW4tdXMGOwhUOgpxdWVyeUkiFGludm9pY2UgcGF5bWVudAY7CFQ6EnJlc3VsdHNfY291bnRpUg%3D%3D--7a5fd4f05525cb1b42e30c5193725d77e83765f1\">Accepting Invoice Payments with Stripe</a></p>\n","_postman_id":"ad8af6d2-bb20-4ad5-9d50-ceb46e71508f","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Invoices","item":[{"name":"Get an invoice","id":"7256246e-df79-4e0e-8eba-e436f7b6f85d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices/:invoice_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices",":invoice_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the invoice</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"invoice_id"}]}},"response":[{"id":"6cff295a-06c7-40b2-a9fc-affd3dece44a","name":"Get an invoice","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoices/:invoice_id","host":["/api/v1"],"path":["invoices",":invoice_id"],"variable":[{"key":"invoice_id","value":"<integer>","description":"ID of the invoice"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"invoice_number\": \"1\",\n    \"reference_number\": \"ABC-123\",\n    \"reference_number_2\": \"SIU-234\",\n    \"reference_number_3\": \"\",\n    \"is_retainer\": false,\n    \"subtotal\": \"537.50\",\n    \"tax_total\": \"0.00\",\n    \"tax_detail\": [\n        {\n            \"tax_component_id\": \"1\",\n            \"label\": \"No Tax\",\n            \"tax_rate\": \"0.000\",\n            \"is_compound\": false,\n            \"tax_amount\": \"0.00\"\n        }\n    ],\n    \"discount\": \"0.00\",\n    \"grand_total\": \"537.50\",\n    \"amount_paid\": \"424.00\",\n    \"amount_outstanding\": \"113.50\",\n    \"created_on\": \"2026-02-03\",\n    \"due_on\": \"2026-03-05\",\n    \"closed_on\": null,\n    \"public_notes\": \"Thank you for your business!\",\n    \"internal_notes\": \"\",\n    \"invoice_terms\": \"DUE NET 30\",\n    \"last_sent_at\": null,\n    \"created_at\": \"2026-02-03 16:10:30\",\n    \"updated_at\": \"2026-02-03 16:10:30\",\n    \"invoice_status\": \"partial_paid\",\n    \"billing_email\": \"example@trackops.com\",\n    \"formatted_invoice_number\": \"INV-00001\",\n    \"route_prefix\": \"invoice\",\n    \"CompanyLocation\": {\n        \"id\": \"2\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"route_prefix\": \"client\"\n    },\n    \"Client\": {\n        \"id\": \"4\",\n        \"name\": \"Main Location\",\n        \"address_1\": \"123 Main Street\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Beverly Hills\",\n        \"state\": \"CA\",\n        \"zip\": \"90210\",\n        \"country\": \"US\",\n        \"account_code\": \"\",\n        \"billing_email\": \"\",\n        \"route_prefix\": \"client\",\n        \"RootClient\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"billing_email\": \"example@trackops.com\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"User\": {\n        \"id\": \"2\",\n        \"first_name\": \"Virginia\",\n        \"last_name\": \"Kuhn\",\n        \"email\": \"Wallace61@example.net\",\n        \"phone_home\": \"896-830-8304\",\n        \"phone_mobile\": \"206-795-4505\",\n        \"phone_office\": \"223-637-5881 99-636-381-8566\",\n        \"phone_fax\": \"312-391-5409\",\n        \"account_code\": \"velit-soluta-ut\",\n        \"name\": \"Kuhn, Virginia\",\n        \"proper_name\": \"Virginia Kuhn\"\n    },\n    \"Salesperson\": {\n        \"id\": \"1\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"account_code\": \"\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_country\": \"US\",\n        \"case_state\": \"CO\",\n        \"case_location\": \"Elveraburgh\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\",\n        \"PrimarySubject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        }\n    },\n    \"TrackingCategory\": null,\n    \"InvoiceDetails\": [\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"1\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"50.000\",\n            \"quantity\": \"1.000\",\n            \"subtotal\": \"50.00\",\n            \"discount\": \"0.00\",\n            \"total\": \"50.00\",\n            \"notes\": \"travel time to and from investigation.\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"3\",\n                \"name\": \"Travel Hours\",\n                \"invoice_alias\": \"Travel Hours\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": {\n                \"id\": \"1\",\n                \"code\": \"E109\",\n                \"name\": \"Local travel\",\n                \"reference_id\": \"\"\n            },\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        },\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"2\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"75.000\",\n            \"quantity\": \"6.000\",\n            \"subtotal\": \"450.00\",\n            \"discount\": \"0.00\",\n            \"total\": \"450.00\",\n            \"notes\": \"\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"1\",\n                \"name\": \"Work Hours\",\n                \"invoice_alias\": \"Work Hours\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": null,\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        },\n        {\n            \"invoice_id\": \"1\",\n            \"invoice_detail_rank\": \"3\",\n            \"user_id\": \"1\",\n            \"service_date\": \"2026-02-03\",\n            \"rate\": \"0.750\",\n            \"quantity\": \"50.000\",\n            \"subtotal\": \"37.50\",\n            \"discount\": \"0.00\",\n            \"total\": \"37.50\",\n            \"notes\": \"\",\n            \"created_at\": \"2026-02-03 16:10:30\",\n            \"FinanceItem\": {\n                \"id\": \"2\",\n                \"name\": \"Mileage\",\n                \"invoice_alias\": \"Mileage\",\n                \"reference_id\": null,\n                \"item_code\": null\n            },\n            \"ItemCode\": null,\n            \"TaxRate\": {\n                \"id\": \"1\",\n                \"name\": \"Tax Exempt\",\n                \"effective_rate\": \"0.00000\",\n                \"reference_id\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"7256246e-df79-4e0e-8eba-e436f7b6f85d"},{"name":"List invoices","id":"68b3076d-9aef-45f8-920d-c3c017dfe1b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6cd469eb-0a3a-48d6-aed6-dd3fae1e0ac0","name":"List invoices","originalRequest":{"method":"GET","header":[],"url":"/api/v1/invoices"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"is_retainer\": false,\n        \"subtotal\": \"537.50\",\n        \"tax_total\": \"0.00\",\n        \"tax_detail\": [\n            {\n                \"tax_component_id\": \"1\",\n                \"label\": \"No Tax\",\n                \"tax_rate\": \"0.000\",\n                \"is_compound\": false,\n                \"tax_amount\": \"0.00\"\n            }\n        ],\n        \"discount\": \"0.00\",\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"closed_on\": null,\n        \"public_notes\": \"Thank you for your business!\",\n        \"internal_notes\": \"\",\n        \"invoice_terms\": \"DUE NET 30\",\n        \"last_sent_at\": null,\n        \"created_at\": \"2026-02-03 16:10:30\",\n        \"updated_at\": \"2026-02-03 16:10:30\",\n        \"invoice_status\": \"partial_paid\",\n        \"billing_email\": \"example@trackops.com\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"CompanyLocation\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\"\n        },\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"account_code\": \"\",\n            \"billing_email\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Homenick Group Location\",\n                \"account_code\": \"SAMPLE\",\n                \"billing_email\": \"example@trackops.com\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"phone_home\": \"896-830-8304\",\n            \"phone_mobile\": \"206-795-4505\",\n            \"phone_office\": \"223-637-5881 99-636-381-8566\",\n            \"phone_fax\": \"312-391-5409\",\n            \"account_code\": \"velit-soluta-ut\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_country\": \"US\",\n            \"case_state\": \"CO\",\n            \"case_location\": \"Elveraburgh\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\",\n            \"PrimarySubject\": {\n                \"id\": \"3\",\n                \"name\": \"McFly, Marty Seamus\"\n            }\n        },\n        \"TrackingCategory\": null,\n        \"InvoiceDetails\": [\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"1\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"1.000\",\n                \"subtotal\": \"50.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"50.00\",\n                \"notes\": \"travel time to and from investigation.\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"invoice_alias\": \"Travel Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": {\n                    \"id\": \"1\",\n                    \"code\": \"E109\",\n                    \"name\": \"Local travel\",\n                    \"reference_id\": \"\"\n                },\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"2\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"75.000\",\n                \"quantity\": \"6.000\",\n                \"subtotal\": \"450.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"450.00\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"invoice_alias\": \"Work Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"3\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"0.750\",\n                \"quantity\": \"50.000\",\n                \"subtotal\": \"37.50\",\n                \"discount\": \"0.00\",\n                \"total\": \"37.50\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"invoice_alias\": \"Mileage\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"68b3076d-9aef-45f8-920d-c3c017dfe1b1"},{"name":"Search Invoices","id":"7d8b2998-a5b0-43a2-ab43-197252f5d98e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/invoices?id=<integer>&case=<integer>&client=<integer>&client_location=<integer>&contact=<integer>&invoice_number=<integer>&reference_number=<string>&salesperson=<integer>&status=<draft|open|sent|partial_paid|paid>&tracking_category=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&due_from=<datestamp>&due_to=<datestamp>&closed_from=<datestamp>&closed_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["invoices"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the invoice</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the invoice</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the invoice</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the client location associated with the invoice</p>\n","type":"text/plain"},"key":"client_location","value":"<integer>"},{"description":{"content":"<p>ID of the client contact associated with the invoice</p>\n","type":"text/plain"},"key":"contact","value":"<integer>"},{"description":{"content":"<p>Numeric invoice number</p>\n","type":"text/plain"},"key":"invoice_number","value":"<integer>"},{"description":{"content":"<p>Reference or PO number</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>ID of the salsperson associated with the invoice</p>\n","type":"text/plain"},"key":"salesperson","value":"<integer>"},{"description":{"content":"<p>Status of the invoice (enum)</p>\n","type":"text/plain"},"key":"status","value":"<draft|open|sent|partial_paid|paid>"},{"description":{"content":"<p>ID of the tracking category associated with the invoice</p>\n","type":"text/plain"},"key":"tracking_category","value":"<integer>"},{"description":{"content":"<p>ISO date the invoice was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"from\" (immutable)</p>\n","type":"text/plain"},"key":"created_from_system","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was created \"to\" (immutable)</p>\n","type":"text/plain"},"key":"created_to_system","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice is due \"from\"</p>\n","type":"text/plain"},"key":"due_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice is due \"to\"</p>\n","type":"text/plain"},"key":"due_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was closed \"from\"</p>\n","type":"text/plain"},"key":"closed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the invoice was closed \"to\"</p>\n","type":"text/plain"},"key":"closed_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"3036e805-e37c-4498-8c01-e19214b4eca3","name":"Search Invoices","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/invoices?id=<integer>&case=<integer>&client=<integer>&client_location=<integer>&contact=<integer>&invoice_number=<integer>&reference_number=<string>&salesperson=<integer>&status=<draft|open|sent|partial_paid|paid>&tracking_category=<integer>&created_from=<datestamp>&created_to=<datestamp>&created_from_system=<datestamp>&created_to_system=<datestamp>&from=<datestamp>&to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&due_from=<datestamp>&due_to=<datestamp>&closed_from=<datestamp>&closed_to=<datestamp>","host":["/api/v1"],"path":["invoices"],"query":[{"key":"id","value":"<integer>","description":"ID of the invoice"},{"key":"case","value":"<integer>","description":"ID of the case associated with the invoice"},{"key":"client","value":"<integer>","description":"ID of the client associated with the invoice"},{"key":"client_location","value":"<integer>","description":"ID of the client location associated with the invoice"},{"key":"contact","value":"<integer>","description":"ID of the client contact associated with the invoice"},{"key":"invoice_number","value":"<integer>","description":"Numeric invoice number"},{"key":"reference_number","value":"<string>","description":"Reference or PO number"},{"key":"salesperson","value":"<integer>","description":"ID of the salsperson associated with the invoice"},{"key":"status","value":"<draft|open|sent|partial_paid|paid>","description":"Status of the invoice (enum)"},{"key":"tracking_category","value":"<integer>","description":"ID of the tracking category associated with the invoice"},{"key":"created_from","value":"<datestamp>","description":"ISO date the invoice was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the invoice was created \"to\""},{"key":"created_from_system","value":"<datestamp>","description":"ISO date the invoice was created \"from\" (immutable)"},{"key":"created_to_system","value":"<datestamp>","description":"ISO date the invoice was created \"to\" (immutable)"},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"updated_from","value":"<datestamp>","description":"ISO date the invoice was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the invoice was updated \"to\""},{"key":"due_from","value":"<datestamp>","description":"ISO date the invoice is due \"from\""},{"key":"due_to","value":"<datestamp>","description":"ISO date the invoice is due \"to\""},{"key":"closed_from","value":"<datestamp>","description":"ISO date the invoice was closed \"from\""},{"key":"closed_to","value":"<datestamp>","description":"ISO date the invoice was closed \"to\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"invoice_number\": \"1\",\n        \"reference_number\": \"ABC-123\",\n        \"reference_number_2\": \"SIU-234\",\n        \"reference_number_3\": \"\",\n        \"is_retainer\": false,\n        \"subtotal\": \"537.50\",\n        \"tax_total\": \"0.00\",\n        \"tax_detail\": [\n            {\n                \"tax_component_id\": \"1\",\n                \"label\": \"No Tax\",\n                \"tax_rate\": \"0.000\",\n                \"is_compound\": false,\n                \"tax_amount\": \"0.00\"\n            }\n        ],\n        \"discount\": \"0.00\",\n        \"grand_total\": \"537.50\",\n        \"amount_paid\": \"424.00\",\n        \"amount_outstanding\": \"113.50\",\n        \"created_on\": \"2026-02-03\",\n        \"due_on\": \"2026-03-05\",\n        \"closed_on\": null,\n        \"public_notes\": \"Thank you for your business!\",\n        \"internal_notes\": \"\",\n        \"invoice_terms\": \"DUE NET 30\",\n        \"last_sent_at\": null,\n        \"created_at\": \"2026-02-03 16:10:30\",\n        \"updated_at\": \"2026-02-03 16:10:30\",\n        \"invoice_status\": \"partial_paid\",\n        \"billing_email\": \"example@trackops.com\",\n        \"formatted_invoice_number\": \"INV-00001\",\n        \"route_prefix\": \"invoice\",\n        \"CompanyLocation\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"\",\n            \"state\": \"\",\n            \"zip\": \"\",\n            \"country\": \"US\",\n            \"route_prefix\": \"client\"\n        },\n        \"Client\": {\n            \"id\": \"4\",\n            \"name\": \"Main Location\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Beverly Hills\",\n            \"state\": \"CA\",\n            \"zip\": \"90210\",\n            \"country\": \"US\",\n            \"account_code\": \"\",\n            \"billing_email\": \"\",\n            \"route_prefix\": \"client\",\n            \"RootClient\": {\n                \"id\": \"3\",\n                \"name\": \"Homenick Group Location\",\n                \"account_code\": \"SAMPLE\",\n                \"billing_email\": \"example@trackops.com\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"User\": {\n            \"id\": \"2\",\n            \"first_name\": \"Virginia\",\n            \"last_name\": \"Kuhn\",\n            \"email\": \"Wallace61@example.net\",\n            \"phone_home\": \"896-830-8304\",\n            \"phone_mobile\": \"206-795-4505\",\n            \"phone_office\": \"223-637-5881 99-636-381-8566\",\n            \"phone_fax\": \"312-391-5409\",\n            \"account_code\": \"velit-soluta-ut\",\n            \"name\": \"Kuhn, Virginia\",\n            \"proper_name\": \"Virginia Kuhn\"\n        },\n        \"Salesperson\": {\n            \"id\": \"1\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"account_code\": \"\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_country\": \"US\",\n            \"case_state\": \"CO\",\n            \"case_location\": \"Elveraburgh\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\",\n            \"PrimarySubject\": {\n                \"id\": \"3\",\n                \"name\": \"McFly, Marty Seamus\"\n            }\n        },\n        \"TrackingCategory\": null,\n        \"InvoiceDetails\": [\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"1\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"50.000\",\n                \"quantity\": \"1.000\",\n                \"subtotal\": \"50.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"50.00\",\n                \"notes\": \"travel time to and from investigation.\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"3\",\n                    \"name\": \"Travel Hours\",\n                    \"invoice_alias\": \"Travel Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": {\n                    \"id\": \"1\",\n                    \"code\": \"E109\",\n                    \"name\": \"Local travel\",\n                    \"reference_id\": \"\"\n                },\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"2\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"75.000\",\n                \"quantity\": \"6.000\",\n                \"subtotal\": \"450.00\",\n                \"discount\": \"0.00\",\n                \"total\": \"450.00\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"1\",\n                    \"name\": \"Work Hours\",\n                    \"invoice_alias\": \"Work Hours\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            },\n            {\n                \"invoice_id\": \"1\",\n                \"invoice_detail_rank\": \"3\",\n                \"user_id\": \"1\",\n                \"service_date\": \"2026-02-03\",\n                \"rate\": \"0.750\",\n                \"quantity\": \"50.000\",\n                \"subtotal\": \"37.50\",\n                \"discount\": \"0.00\",\n                \"total\": \"37.50\",\n                \"notes\": \"\",\n                \"created_at\": \"2026-02-03 16:10:30\",\n                \"FinanceItem\": {\n                    \"id\": \"2\",\n                    \"name\": \"Mileage\",\n                    \"invoice_alias\": \"Mileage\",\n                    \"reference_id\": null,\n                    \"item_code\": null\n                },\n                \"ItemCode\": null,\n                \"TaxRate\": {\n                    \"id\": \"1\",\n                    \"name\": \"Tax Exempt\",\n                    \"effective_rate\": \"0.00000\",\n                    \"reference_id\": null\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"7d8b2998-a5b0-43a2-ab43-197252f5d98e"}],"id":"49e21e25-3217-4072-9b97-829cdd8d7a9b","description":"<p>Invoices create a bill of sale of products and services performed.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337803-Converting-your-Expenses-into-Invoices\">Converting your Expenses into Invoices</a></p>\n","_postman_id":"49e21e25-3217-4072-9b97-829cdd8d7a9b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Item Codes","item":[{"name":"Get an item code","id":"39563b7d-9fef-43bd-bda6-6a7d71508ba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes/:item_code_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes",":item_code_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the item code</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"item_code_id"}]}},"response":[{"id":"0e8c5e90-7188-4970-8e92-029f2ace41e5","name":"Get an item code","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/item_codes/:item_code_id","host":["/api/v1"],"path":["item_codes",":item_code_id"],"variable":[{"key":"item_code_id","value":"<integer>","description":"ID of the item code"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Local travel\",\n    \"code\": \"E109\",\n    \"notes\": \"\",\n    \"reference_id\": \"\",\n    \"description\": \"\"\n}"}],"_postman_id":"39563b7d-9fef-43bd-bda6-6a7d71508ba2"},{"name":"List item codes","id":"d9fb7dab-f345-46f1-9658-fa955ddf50a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c729ab10-56c5-40c1-803c-9e62d8e6239c","name":"List item codes","originalRequest":{"method":"GET","header":[],"url":"/api/v1/item_codes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Local travel\",\n        \"code\": \"E109\",\n        \"notes\": \"\",\n        \"reference_id\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"d9fb7dab-f345-46f1-9658-fa955ddf50a9"},{"name":"Search item codes","id":"787c57c5-a052-4cca-a3bd-0989b8ff530b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/item_codes?id=<integer>&name=<string>&code=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["item_codes"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the item code</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the item code</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Item code</p>\n","type":"text/plain"},"key":"code","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"75b1b70a-98af-4cc4-a014-1b29686441d0","name":"Search item codes","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/item_codes?id=<integer>&name=<string>&code=<string>&page=<integer>","host":["/api/v1"],"path":["item_codes"],"query":[{"key":"id","value":"<integer>","description":"ID of the item code"},{"key":"name","value":"<string>","description":"Name of the item code"},{"key":"code","value":"<string>","description":"Item code"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Local travel\",\n        \"code\": \"E109\",\n        \"notes\": \"\",\n        \"reference_id\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"787c57c5-a052-4cca-a3bd-0989b8ff530b"}],"id":"a444e91c-a176-47da-8438-a5739e9a51b8","description":"<p>Item codes categorize line items for expense entries and invoices. Item codes can be exported along with invoices for LEDES compatiblity.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360050098832-Managing-Item-Codes-for-your-Expenses-and-Invoices\">Managing Item Codes for your Expenses and Invoices</a></p>\n","_postman_id":"a444e91c-a176-47da-8438-a5739e9a51b8","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Licenses","item":[{"name":"Get a license","id":"0a85ec5a-19c1-4103-a256-bdfe9fe8abb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses/:license_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses",":license_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"license_id"}]}},"response":[{"id":"c1368d73-bc68-489b-bf81-12976a8b6173","name":"Get a license","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/licenses/:license_id","host":["/api/v1"],"path":["licenses",":license_id"],"variable":[{"key":"license_id","value":"<integer>","description":"ID of the license"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"California PI License\",\n    \"license\": \"CA-123456789\",\n    \"state\": \"CA\",\n    \"country\": \"US\",\n    \"expires_on\": \"2030-02-28\",\n    \"renewed_on\": null,\n    \"notes\": \"\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:15:50\",\n    \"updated_at\": \"2026-02-03 16:15:50\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"0a85ec5a-19c1-4103-a256-bdfe9fe8abb7"},{"name":"List licenses","id":"d0369d8d-aaac-4851-92fa-21cf3169010a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"6514241d-00a6-4867-92b3-648036010119","name":"List licenses","originalRequest":{"method":"GET","header":[],"url":"/api/v1/licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"California PI License\",\n        \"license\": \"CA-123456789\",\n        \"state\": \"CA\",\n        \"country\": \"US\",\n        \"expires_on\": \"2030-02-28\",\n        \"renewed_on\": null,\n        \"notes\": \"\",\n        \"is_recommendable\": true,\n        \"created_at\": \"2026-02-03 16:15:50\",\n        \"updated_at\": \"2026-02-03 16:15:50\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n]"}],"_postman_id":"d0369d8d-aaac-4851-92fa-21cf3169010a"},{"name":"Search licenses","id":"8a0ea74d-d632-4c66-9083-0d9d8c8d8279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/licenses?id=<integer>&license=<string>&name=<string>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&expiration_to=<datestamp>&expiration_from=<datestamp>&from=<datestamp>&to=<datestamp>&renewed_from=<datestamp>&renewed_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>License number</p>\n","type":"text/plain"},"key":"license","value":"<string>"},{"description":{"content":"<p>Name of the license</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>ID of the user associated with the license</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the license was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license expires \"to\"</p>\n","type":"text/plain"},"key":"expiration_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license expires \"from\"</p>\n","type":"text/plain"},"key":"expiration_from","value":"<datestamp>"},{"description":{"content":"<p>Alias of expiration_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of expiration_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was renewed \"from\"</p>\n","type":"text/plain"},"key":"renewed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was renewed \"to\"</p>\n","type":"text/plain"},"key":"renewed_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the license was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ef5c09e9-6dba-42b7-9db7-4d3cb1bf3974","name":"Search licenses","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/licenses?id=<integer>&license=<string>&name=<string>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&expiration_to=<datestamp>&expiration_from=<datestamp>&from=<datestamp>&to=<datestamp>&renewed_from=<datestamp>&renewed_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["licenses"],"query":[{"key":"id","value":"<integer>","description":"ID of the license"},{"key":"license","value":"<string>","description":"License number"},{"key":"name","value":"<string>","description":"Name of the license"},{"key":"user","value":"<integer>","description":"ID of the user associated with the license"},{"key":"created_from","value":"<datestamp>","description":"ISO date the license was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the license was created \"to\""},{"key":"expiration_to","value":"<datestamp>","description":"ISO date the license expires \"to\""},{"key":"expiration_from","value":"<datestamp>","description":"ISO date the license expires \"from\""},{"key":"from","value":"<datestamp>","description":"Alias of expiration_from"},{"key":"to","value":"<datestamp>","description":"Alias of expiration_to"},{"key":"renewed_from","value":"<datestamp>","description":"ISO date the license was renewed \"from\""},{"key":"renewed_to","value":"<datestamp>","description":"ISO date the license was renewed \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the license was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the license was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"California PI License\",\n        \"license\": \"CA-123456789\",\n        \"state\": \"CA\",\n        \"country\": \"US\",\n        \"expires_on\": \"2030-02-28\",\n        \"renewed_on\": null,\n        \"notes\": \"\",\n        \"is_recommendable\": true,\n        \"created_at\": \"2026-02-03 16:15:50\",\n        \"updated_at\": \"2026-02-03 16:15:50\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"middle_name\": \"\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    }\n]"}],"_postman_id":"8a0ea74d-d632-4c66-9083-0d9d8c8d8279"},{"name":"Create a license","id":"1a6f7a96-1813-4af9-a9fc-54a145f6aa00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"La Mirada License\",\n     \"license\": \"cd955081-2695-4dea-a2ce-cf7062c47582\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Deleniti corporis autem dolores natus nobis ut sint sit. Ducimus excepturi et sapiente aut distinctio. Ullam maiores eveniet. Ipsum blanditiis quidem. Qui cumque eum debitis. Accusantium in in quia.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"fc2d2208-f310-4daa-903e-71118579ab58","name":"Create a license","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"Jaleelstad License\",\n     \"license\": \"2950adbd-eb2e-4fd1-878f-c41cd417e9c4\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Perferendis rerum magni veniam labore expedita voluptatum est praesentium id. Est voluptates mollitia architecto voluptas perspiciatis eligendi. Atque eos laudantium fugiat vel molestiae voluptatem quasi corrupti quibusdam. Eaque dolorem possimus.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"East Nicola License\",\n    \"license\": \"db79d362-c018-4407-b0fc-61366e1ef30d\",\n    \"state\": \"CO\",\n    \"country\": \"US\",\n    \"expires_on\": \"2026-02-10\",\n    \"renewed_on\": null,\n    \"notes\": \"Amet repudiandae quia. Sit laudantium error cumque inventore aliquam.\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:18:21\",\n    \"updated_at\": \"2026-02-03 16:18:21\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"1a6f7a96-1813-4af9-a9fc-54a145f6aa00"},{"name":"Update a license","id":"54706931-76e4-4775-9471-088c17001a8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"Lake Lindsey License\",\n     \"license\": \"7820dd75-865f-49f7-a872-5a9db92c8939\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Magnam nam dolorum sed ipsam dolorem. Aut aut placeat ullam sed voluptas. Id ut ipsam rerum.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/licenses/:license_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["licenses",":license_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the license</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"license_id"}]}},"response":[{"id":"0f909f40-53bc-41ba-94f4-ff4b615469e5","name":"Update a license","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"license\": {\n     \"user_id\": \"<integer>\",\n     \"name\": \"Dinofort License\",\n     \"license\": \"b54adc76-4a8d-4f57-ac8e-e048921d76e0\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Vel odio eos blanditiis excepturi perspiciatis quo sunt et et. Provident quibusdam architecto sit. Neque eaque aliquam dicta ea. Molestiae consequuntur totam rerum consequatur sequi dicta possimus in quo. Alias suscipit nihil.\",\n     \"is_recommendable\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/licenses/:license_id","host":["/api/v1"],"path":["licenses",":license_id"],"variable":[{"key":"license_id","value":"<integer>","description":"ID of the license"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"West Dustinland License\",\n    \"license\": \"d8dd528a-e483-4c4f-9ce1-b26315c6ba07\",\n    \"state\": \"CO\",\n    \"country\": \"US\",\n    \"expires_on\": \"2026-02-10\",\n    \"renewed_on\": null,\n    \"notes\": \"Aut totam error itaque exercitationem aut qui aut enim. Sed similique cupiditate et. Quaerat harum quo sit iste sunt eum soluta sed. Tempore quis laborum aut ab perspiciatis autem soluta. Eum officiis vero saepe numquam vitae optio.\",\n    \"is_recommendable\": true,\n    \"created_at\": \"2026-02-03 16:15:50\",\n    \"updated_at\": \"2026-02-03 16:19:01\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    }\n}"}],"_postman_id":"54706931-76e4-4775-9471-088c17001a8e"}],"id":"8eb64d79-4c33-46ca-8466-e7a7ee77b980","description":"<p>Licenses track business documents and certifications required for field work and other investigative activities.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337363-Managing-Employee-Licenses\">Managing Employee Licenses</a></p>\n","_postman_id":"8eb64d79-4c33-46ca-8466-e7a7ee77b980","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Referral Sources","item":[{"name":"Get a referral source","id":"185c612f-0242-4aeb-8da1-fcb741dc3978","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources/:referral_source_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources",":referral_source_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the referral source</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"referral_source_id"}]}},"response":[{"id":"cc072af6-43a7-4654-ab81-8ed65b87ef9e","name":"Get a referral source","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/referral_sources/:referral_source_id","host":["/api/v1"],"path":["referral_sources",":referral_source_id"],"variable":[{"key":"referral_source_id","value":"<integer>","description":"ID of the referral source"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Personal Referral\",\n    \"notes\": \"Referred by a friend or colleague\",\n    \"description\": \"Referred by a friend or colleague\"\n}"}],"_postman_id":"185c612f-0242-4aeb-8da1-fcb741dc3978"},{"name":"List referral sources","id":"40bfc6b5-f4ba-4d6d-9cad-8eeb3d8a5fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"ef10af4d-a4c3-42bc-8ce6-ae0822306abd","name":"List referral sources","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Personal Referral\",\n        \"notes\": \"Referred by a friend or colleague\",\n        \"description\": \"Referred by a friend or colleague\"\n    }\n]"}],"_postman_id":"40bfc6b5-f4ba-4d6d-9cad-8eeb3d8a5fe5"},{"name":"Search referral sources","id":"0320e891-a262-44d4-b240-ca56c528b8a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/referral_sources?id=<integer>&name=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["referral_sources"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the referral source</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the referral source</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"ee9ca2a8-4c76-4f3f-9071-9dad3f22a6fc","name":"Search referral sources","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/referral_sources?id=<integer>&name=<string>&page=<integer>","host":["/api/v1"],"path":["referral_sources"],"query":[{"key":"id","value":"<integer>","description":"ID of the referral source"},{"key":"name","value":"<string>","description":"Name of the referral source"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Personal Referral\",\n        \"notes\": \"Referred by a friend or colleague\",\n        \"description\": \"Referred by a friend or colleague\"\n    }\n]"}],"_postman_id":"0320e891-a262-44d4-b240-ca56c528b8a1"}],"id":"30be59c8-d39f-4296-9f8b-c0ee1d6552fa","description":"<p>Referral sources capture the origin of new case referrals, often used for marketing, statistics, and other referral related matters.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360002153632-Tracking-Case-Referrals\">Tracking Case Referrals</a></p>\n","_postman_id":"30be59c8-d39f-4296-9f8b-c0ee1d6552fa","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Retainer Payments","item":[{"name":"List retainer payments","id":"53d028f1-965b-4de1-99dc-8289f70b1f21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/retainer/payments","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainer","payments"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"8d81cc7f-9e49-43d6-90e9-bf09ccba2de8","name":"List retainer payments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/retainer/payments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"paid_on\": \"2026-05-20\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"1000.00\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-05-20 20:07:42\",\n        \"updated_at\": \"2026-05-20 20:07:42\",\n        \"retainer_id\": \"2\",\n        \"retainer_number\": \"1\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"reference_id\": null\n        }\n    }\n]"}],"_postman_id":"53d028f1-965b-4de1-99dc-8289f70b1f21"},{"name":"Get a retainer payment","id":"88b128eb-b973-4fca-a002-e77d38722c60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/retainer/payments/:payment_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainer","payments",":payment_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the retainer payment</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"payment_id"}]}},"response":[{"id":"f81d4db8-eb2e-479b-8ba1-1db23b238035","name":"Get a retainer payment","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/retainer/payments/:payment_id","host":["/api/v1"],"path":["retainer","payments",":payment_id"],"variable":[{"key":"payment_id","value":"<integer>","description":"ID of the retainer payment"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"paid_on\": \"2026-05-20\",\n    \"reference_number\": \"Check #123\",\n    \"payment_amount\": \"1000.00\",\n    \"notes\": \"\",\n    \"created_at\": \"2026-05-20 20:07:42\",\n    \"updated_at\": \"2026-05-20 20:07:42\",\n    \"retainer_id\": \"2\",\n    \"retainer_number\": \"1\",\n    \"PaymentMethod\": {\n        \"id\": \"2\",\n        \"name\": \"Check\",\n        \"reference_id\": null\n    }\n}"}],"_postman_id":"88b128eb-b973-4fca-a002-e77d38722c60"},{"name":"Search retainer payments","id":"965d5710-8f16-4fb1-80a5-168b1e844f4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/retainer/payments?id=<integer>&case=<integer>&client=<integer>&retainer_id=<integer>&retainer_number=<integer>&retainer_reference_number=<string>&reference_number=<string>&from=<datestamp>&to=<datestamp>&paid_from=<datestamp>&paid_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainer","payments"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the retainer payment</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the retainer </p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the retainer</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>ID of the retainer</p>\n","type":"text/plain"},"key":"retainer_id","value":"<integer>"},{"description":{"content":"<p>Numeric retainer number</p>\n","type":"text/plain"},"key":"retainer_number","value":"<integer>"},{"description":{"content":"<p>Reference or PO number of the retainer</p>\n","type":"text/plain"},"key":"retainer_reference_number","value":"<string>"},{"description":{"content":"<p>Reference or check number of the retainer payment</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>Alias of \"paid_from\"</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of \"paid_to\"</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"from\"</p>\n","type":"text/plain"},"key":"paid_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the payment was created \"to\"</p>\n","type":"text/plain"},"key":"paid_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"73d34043-b75c-4b14-b769-948844159835","name":"Search retainer payments","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/retainer/payments?id=<integer>&case=<integer>&client=<integer>&retainer_id=<integer>&retainer_number=<integer>&retainer_reference_number=<string>&reference_number=<string>&from=<datestamp>&to=<datestamp>&paid_from=<datestamp>&paid_to=<datestamp>","host":["/api/v1"],"path":["retainer","payments"],"query":[{"key":"id","value":"<integer>","description":"ID of the retainer payment"},{"key":"case","value":"<integer>","description":"ID of the case associated with the retainer "},{"key":"client","value":"<integer>","description":"ID of the client associated with the retainer"},{"key":"retainer_id","value":"<integer>","description":"ID of the retainer"},{"key":"retainer_number","value":"<integer>","description":"Numeric retainer number"},{"key":"retainer_reference_number","value":"<string>","description":"Reference or PO number of the retainer"},{"key":"reference_number","value":"<string>","description":"Reference or check number of the retainer payment"},{"key":"from","value":"<datestamp>","description":"Alias of \"paid_from\""},{"key":"to","value":"<datestamp>","description":"Alias of \"paid_to\""},{"key":"paid_from","value":"<datestamp>","description":"ISO date the payment was created \"from\""},{"key":"paid_to","value":"<datestamp>","description":"ISO date the payment was created \"to\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":":status","value":200},{"key":"content-security-policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-f31ca139ced5481dfa6286480cce5eca' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"strict-transport-security","value":"max-age=31536000; includeSubDomains"},{"key":"x-frame-options","value":"DENY"},{"key":"x-powered-by","value":"PHP/8.3.28"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"content-length","value":"277"},{"key":"date","value":"Wed, 20 May 2026 20:37:25 GMT"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"paid_on\": \"2026-05-20\",\n        \"reference_number\": \"Check #123\",\n        \"payment_amount\": \"1000.00\",\n        \"notes\": \"\",\n        \"created_at\": \"2026-05-20 20:07:42\",\n        \"updated_at\": \"2026-05-20 20:07:42\",\n        \"retainer_id\": \"2\",\n        \"retainer_number\": \"1\",\n        \"PaymentMethod\": {\n            \"id\": \"2\",\n            \"name\": \"Check\",\n            \"reference_id\": null\n        }\n    }\n]"}],"_postman_id":"965d5710-8f16-4fb1-80a5-168b1e844f4f"}],"id":"887e912d-99f1-45cc-9787-28cc4a8b4307","description":"<p>Retainer payments are applied to retainers, which contain funds used to pay future invoices.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337863-Adding-a-Retainer-to-a-Client\">Adding a Retainer to a Client</a></p>\n","_postman_id":"887e912d-99f1-45cc-9787-28cc4a8b4307","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Retainers","item":[{"name":"List retainers","id":"9502601d-02c8-4b45-bd04-c750d5cb9f8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/retainers","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainers"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9f42efb4-6d2e-4b6e-abda-c984be102aca","name":"List retainers","originalRequest":{"method":"GET","header":[],"url":"/api/v1/retainers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"created_on\": \"2026-05-15\",\n        \"reference_number\": \"ACME-123\",\n        \"amount_paid\": \"0.00\",\n        \"amount_credited\": \"0.00\",\n        \"created_at\": \"2026-05-15 17:54:01\",\n        \"updated_at\": \"2026-05-15 17:54:01\",\n        \"retainer_number\": \"1\",\n        \"notes\": \"Amet laudantium odio. Molestiae dolore et. Repellendus quae quo. Minima sunt id. Id cumque labore. Dolorem quia quaerat. Non enim ut.\",\n        \"available_balance\": \"0.00\",\n        \"billing_email\": \"example@trackops.com\",\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"billing_email\": \"example@trackops.com\",\n            \"route_prefix\": \"client\"\n        }\n    }\n]"}],"_postman_id":"9502601d-02c8-4b45-bd04-c750d5cb9f8e"},{"name":"Get a retainer","id":"668f449d-493b-449d-abc8-be38e64bb223","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/retainers/:retainer_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainers",":retainer_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the retainer</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"retainer_id"}]}},"response":[{"id":"1f0adcaa-78c8-450f-9c33-3383d9e35124","name":"Get a retainer","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/retainers/:retainer_id","host":["/api/v1"],"path":["retainers",":retainer_id"],"variable":[{"key":"retainer_id","value":"<integer>","description":"ID of the retainer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"2\",\n    \"created_on\": \"2026-05-15\",\n    \"reference_number\": \"ACME-123\",\n    \"amount_paid\": \"0.00\",\n    \"amount_credited\": \"0.00\",\n    \"created_at\": \"2026-05-15 17:54:01\",\n    \"updated_at\": \"2026-05-15 17:54:01\",\n    \"retainer_number\": \"1\",\n    \"notes\": \"Amet laudantium odio. Molestiae dolore et. Repellendus quae quo. Minima sunt id. Id cumque labore. Dolorem quia quaerat. Non enim ut.\",\n    \"available_balance\": \"0.00\",\n    \"billing_email\": \"example@trackops.com\",\n    \"Client\": {\n        \"id\": \"3\",\n        \"name\": \"Homenick Group Location\",\n        \"account_code\": \"SAMPLE\",\n        \"billing_email\": \"example@trackops.com\",\n        \"route_prefix\": \"client\"\n    }\n}"}],"_postman_id":"668f449d-493b-449d-abc8-be38e64bb223"},{"name":"Search retainers","id":"3f2155f5-3daa-4540-a08a-a8309423ffe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/retainers?id=<integer>&case=<integer>&client=<integer>&reference_number=<string>&retainer_number=<integer>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["retainers"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the retainer</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the retainer</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the client associated with the retainer</p>\n","type":"text/plain"},"key":"client","value":"<integer>"},{"description":{"content":"<p>Reference or PO number</p>\n","type":"text/plain"},"key":"reference_number","value":"<string>"},{"description":{"content":"<p>Numeric retainer number</p>\n","type":"text/plain"},"key":"retainer_number","value":"<integer>"},{"description":{"content":"<p>Alias of \"created_from\"</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of \"created_to\"</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the retainer was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the retainer was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the retainer was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the retainer was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"}],"variable":[]}},"response":[{"id":"38d026d2-d8ab-48e5-b04d-b11a6b7204d5","name":"Search retainers","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/retainers?id=<integer>&case=<integer>&client=<integer>&reference_number=<string>&retainer_number=<integer>&from=<datestamp>&to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>","host":["/api/v1"],"path":["retainers"],"query":[{"key":"id","value":"<integer>","description":"ID of the retainer"},{"key":"case","value":"<integer>","description":"ID of the case associated with the retainer"},{"key":"client","value":"<integer>","description":"ID of the client associated with the retainer"},{"key":"reference_number","value":"<string>","description":"Reference or PO number"},{"key":"retainer_number","value":"<integer>","description":"Numeric retainer number"},{"key":"from","value":"<datestamp>","description":"Alias of \"created_from\""},{"key":"to","value":"<datestamp>","description":"Alias of \"created_to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the retainer was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the retainer was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the retainer was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the retainer was updated \"to\""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"created_on\": \"2026-05-15\",\n        \"reference_number\": \"ACME-123\",\n        \"amount_paid\": \"1000.00\",\n        \"amount_credited\": \"0.00\",\n        \"created_at\": \"2026-05-15 17:54:01\",\n        \"updated_at\": \"2026-05-15 17:54:01\",\n        \"retainer_number\": \"1\",\n        \"notes\": \"Amet laudantium odio. Molestiae dolore et. Repellendus quae quo. Minima sunt id. Id cumque labore. Dolorem quia quaerat. Non enim ut.\",\n        \"available_balance\": \"1000.00\",\n        \"billing_email\": \"example@trackops.com\",\n        \"Client\": {\n            \"id\": \"3\",\n            \"name\": \"Homenick Group Location\",\n            \"account_code\": \"SAMPLE\",\n            \"billing_email\": \"example@trackops.com\",\n            \"route_prefix\": \"client\"\n        }\n    }\n]"}],"_postman_id":"3f2155f5-3daa-4540-a08a-a8309423ffe2"}],"id":"6ac015a0-0a23-4430-9403-5d3eb7207e41","description":"<p>Retainers track advance payments used to fund future services.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337863-Adding-a-Retainer-to-a-Client\">Adding a Retainer to a Client</a></p>\n","_postman_id":"6ac015a0-0a23-4430-9403-5d3eb7207e41","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff","item":[{"name":"Employees","item":[{"name":"Create an employee","id":"9090881f-4ee5-4a60-b9f9-c353830bfe5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"manager_id\": \"<integer>\",\n     \"first_name\": \"Kurtis\",\n     \"middle_name\": \"Loren\",\n     \"last_name\": \"Kilback\",\n     \"title\": \"Customer Operations Analyst\",\n     \"email\": \"Kiana_Satterfield@example.org\",\n     \"phone_home\": \"273-207-8444\",\n     \"phone_mobile\": \"970-501-7244\",\n     \"phone_office\": \"507-421-9800 x261\",\n     \"phone_fax\": \"290-628-4956\",\n     \"address_1\": \"770 Tabitha Rue\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Duaneville\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"dignissimos-nulla-fugiat\",\n     \"notes\": \"Et necessitatibus atque. Et consequatur expedita excepturi dicta in nihil officia facere dolore. Ut saepe aut eaque.\",\n     \"admin_notes\": \"Aut at dolores quis excepturi nisi similique rerum reiciendis. Placeat debitis laudantium. Quis est vel expedita corporis asperiores. Doloremque quisquam architecto voluptatum. Dolor nesciunt quia totam provident quisquam ducimus.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"eaque\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","employees"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"9b742b63-b93b-4c39-9901-4da5f6d6dd0c","name":"Create an employee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"manager_id\": \"<integer>\",\n     \"first_name\": \"Hilma\",\n     \"middle_name\": \"Emilie\",\n     \"last_name\": \"McDermott\",\n     \"title\": \"Direct Interactions Director\",\n     \"email\": \"Deja41@example.org\",\n     \"phone_home\": \"892-621-5137\",\n     \"phone_mobile\": \"747-416-6243\",\n     \"phone_office\": \"345-363-5712 x766\",\n     \"phone_fax\": \"337-449-0346\",\n     \"address_1\": \"9982 Sauer Bypass\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Ismaelberg\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"labore-quisquam-aut\",\n     \"notes\": \"Voluptatem quasi ut ducimus nemo id neque. Corrupti totam tempora officiis ducimus doloremque ex nulla dicta.\",\n     \"admin_notes\": \"Explicabo aut enim omnis dolorem natus ut. Corrupti et fugit voluptatem et fuga. Iste et dolorum veniam ad quia quibusdam dolor. Quia ea est ex aut neque tempore est libero aliquam.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"recusandae\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"8\",\n    \"manager_id\": \"1\",\n    \"first_name\": \"Candace\",\n    \"middle_name\": \"Ida\",\n    \"last_name\": \"Ledner\",\n    \"title\": \"International Optimization Officer\",\n    \"email\": \"Hulda.Schaefer@example.org\",\n    \"phone_home\": \"730-876-6899\",\n    \"phone_mobile\": \"831-250-5530\",\n    \"phone_mobile_carrier\": null,\n    \"phone_office\": \"844-435-7666 x809\",\n    \"phone_fax\": \"916-297-2416\",\n    \"address_1\": \"8314 Gerry Roads\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Plainfield\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"37.325157\",\n    \"longitude\": \"-105.307512\",\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"molestiae-unde-fuga\",\n    \"class_code\": null,\n    \"rating_average\": null,\n    \"signature\": \"\",\n    \"notes\": \"Accusamus ea quaerat quisquam deleniti animi est voluptatem. Modi deserunt maiores enim veritatis cum excepturi. Sed occaecati quis dolor quia velit provident. Aperiam incidunt excepturi provident repellat sit architecto.\",\n    \"admin_notes\": \"Expedita et praesentium. Tempora qui veniam repudiandae sequi molestiae repellendus animi nihil. Repellendus iure ab nobis sed atque molestiae in repudiandae. Sit quis minima nulla sapiente omnis maiores occaecati.\",\n    \"created_at\": \"2026-06-16 17:49:04\",\n    \"updated_at\": \"2026-06-16 17:49:04\",\n    \"last_login_at\": null,\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"0\",\n    \"name\": \"Ledner, Candace Ida\",\n    \"proper_name\": \"Candace Ida Ledner\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": {\n        \"63\": {\n            \"user_id\": \"8\",\n            \"field_id\": \"63\",\n            \"value\": \"nihil\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"63\",\n                \"name\": \"Employee Number\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"9090881f-4ee5-4a60-b9f9-c353830bfe5c"},{"name":"Update an employee","id":"6a0bd3c4-963c-41e5-b4c3-4284a4522cfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"manager_id\": \"<integer>\",\n     \"first_name\": \"Billie\",\n     \"middle_name\": \"Annie\",\n     \"last_name\": \"Hamill\",\n     \"title\": \"Forward Metrics Representative\",\n     \"email\": \"Esteban.OReilly@example.org\",\n     \"phone_home\": \"236-739-5306\",\n     \"phone_mobile\": \"200-980-4849\",\n     \"phone_office\": \"272-780-7346 x134\",\n     \"phone_fax\": \"349-726-2762\",\n     \"address_1\": \"9954 Purdy Crossroad\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"North Kaleighville\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"ea-doloremque-neque\",\n     \"notes\": \"Dolorem eum deserunt ea earum eius modi ipsam ut. Voluptatem qui qui qui rerum et facere. Fugit soluta nihil quia voluptate facere itaque corrupti autem rem. Et quas ut molestiae. Magni et error veniam temporibus neque ducimus quia. Ut incidunt quod eum.\",\n     \"admin_notes\": \"Dolorem quos et ducimus vel et aut quibusdam quasi. Voluptatibus rem asperiores ab veniam deleniti vero quaerat sequi repudiandae. Facilis voluptas quia et recusandae omnis aut blanditiis sunt.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quia\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/employees/:employee_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","employees",":employee_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the employee</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"employee_id"}]}},"response":[{"id":"0263c6b6-8848-4044-8cc0-707fcd2dec0b","name":"Update an employee","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"employee\": {\n     \"client_id\": \"<integer>\",\n     \"role_id\": \"<integer>\",\n     \"manager_id\": \"<integer>\",\n     \"first_name\": \"Grayce\",\n     \"middle_name\": \"Micaela\",\n     \"last_name\": \"Funk\",\n     \"title\": \"Dynamic Functionality Liaison\",\n     \"email\": \"Roslyn.Leffler@example.net\",\n     \"phone_home\": \"351-315-4954\",\n     \"phone_mobile\": \"970-754-3355\",\n     \"phone_office\": \"906-584-4021 x230\",\n     \"phone_fax\": \"996-382-4117\",\n     \"address_1\": \"4573 Baylee Lane\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Colinton\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"neque-voluptates-in\",\n     \"notes\": \"Neque aut et est eos est itaque. Vel provident omnis sit placeat adipisci omnis minima. Accusamus quia fuga dolore. Minus repellendus quis.\",\n     \"admin_notes\": \"Dolorum molestiae ipsam eius quidem. Ullam expedita non suscipit quisquam reiciendis doloremque.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"nihil\"\n    \t}\n     ]\n  },\n  \"allow_duplicates\": false\n}      ","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/staff/employees/:employee_id","host":["/api/v1"],"path":["staff","employees",":employee_id"],"variable":[{"key":"employee_id","value":"<integer>","description":"ID of the employee"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"manager_id\": \"1\",\n    \"first_name\": \"Cortez\",\n    \"middle_name\": \"Katrine\",\n    \"last_name\": \"Cormier\",\n    \"title\": \"Corporate Functionality Manager\",\n    \"email\": \"Ezequiel.Stroman11@example.org\",\n    \"phone_home\": \"492-962-5591\",\n    \"phone_mobile\": \"429-253-6089\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"842-438-3625 x583\",\n    \"phone_fax\": \"261-798-9288\",\n    \"address_1\": \"87611 Alexane Forges\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"Kianfort\",\n    \"state\": \"CO\",\n    \"zip\": \"80202\",\n    \"country\": \"US\",\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": \"1976-07-04\",\n    \"account_code\": \"qui-quia-provident\",\n    \"class_code\": \"\",\n    \"rating_average\": null,\n    \"signature\": \"This is a test\\n of the \\n signature!!!!\",\n    \"notes\": \"Eaque consequatur et tempora expedita reiciendis repellat dicta. Est iure quisquam. Ex sit quia ad perferendis. Est qui tempora et magni ut sunt quia. Fugit vel quia aperiam praesentium veniam quis ullam.\",\n    \"admin_notes\": \"Tempore eos vitae. Quaerat voluptas reprehenderit nobis sapiente et ex omnis veritatis qui. Velit vel corrupti alias molestiae. Fuga iure consequatur perferendis id placeat dolore laboriosam. Harum et architecto rerum asperiores aut voluptatem earum et. Harum dignissimos cum quod facilis ea quaerat dolor.\",\n    \"created_at\": \"2009-01-28 13:58:09\",\n    \"updated_at\": \"2026-06-16 17:51:08\",\n    \"last_login_at\": \"2026-06-16 17:41:58\",\n    \"mfa_enabled\": \"0\",\n    \"is_login_active\": \"1\",\n    \"name\": \"Cormier, Cortez Katrine\",\n    \"proper_name\": \"Cortez Katrine Cormier\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": {\n        \"63\": {\n            \"user_id\": \"1\",\n            \"field_id\": \"63\",\n            \"value\": \"autem\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"63\",\n                \"name\": \"Employee Number\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"6a0bd3c4-963c-41e5-b4c3-4284a4522cfa"}],"id":"c2c74eb6-a96a-44c2-b2b0-aeffe80fb49b","description":"<p>Employees refers to your in-house staff. Some features in Trackops are restricted to employees only.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360016467652-Creating-a-New-Employee\">Creating a New Employee</a></p>\n","_postman_id":"c2c74eb6-a96a-44c2-b2b0-aeffe80fb49b","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff Notes","item":[{"name":"Get a staff note","id":"028679a1-564a-4b65-8130-852a472261da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes/:staff_note_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes",":staff_note_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff note</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_note_id"}]}},"response":[{"id":"a7e2ece6-fc58-4d72-8677-c881e1092b82","name":"Get a staff note","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/notes/:staff_note_id","host":["/api/v1"],"path":["staff","notes",":staff_note_id"],"variable":[{"key":"staff_note_id","value":"<integer>","description":"ID of the staff note"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"body\": \"**Feb 3, 2026**\\r\\n\\r\\n - Performed annual review.  Increased base bay 5%.\",\n    \"note_date\": \"2026-02-03\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-03 16:27:38\",\n    \"updated_at\": \"2026-02-03 16:27:38\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Location\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"028679a1-564a-4b65-8130-852a472261da"},{"name":"List staff notes","id":"693d568c-3a73-41f2-b9f2-04e375c59a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"fd6990a6-faeb-4807-b70a-f44213c805f9","name":"List staff notes","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"5\",\n        \"body\": \"**Feb 3, 2026**\\r\\n\\r\\n - Performed annual review.  Increased base bay 5%.\",\n        \"note_date\": \"2026-02-03\",\n        \"is_pinned\": true,\n        \"created_at\": \"2026-02-03 16:27:38\",\n        \"updated_at\": \"2026-02-03 16:27:38\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\",\n            \"Location\": {\n                \"id\": \"2\",\n                \"name\": \"Main Location\",\n                \"route_prefix\": \"client\"\n            }\n        },\n        \"AccessGroup\": {\n            \"id\": \"2\",\n            \"name\": \"Public\"\n        },\n        \"Author\": {\n            \"id\": \"1\",\n            \"account_code\": \"\",\n            \"first_name\": \"Chief\",\n            \"last_name\": \"Operator\",\n            \"email\": \"support@trackops.com\",\n            \"name\": \"Operator, Chief\",\n            \"proper_name\": \"Chief Operator\"\n        },\n        \"url\": null\n    }\n]"}],"_postman_id":"693d568c-3a73-41f2-b9f2-04e375c59a99"},{"name":"Create a staff note","id":"0c6c4fd9-a5ac-4d02-9509-2236188d5ccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"staff_note\": {\n     \"user_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Eius et magni nulla ducimus. Accusamus nemo cumque voluptas ab ipsa.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/notes","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","notes"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"429fe45e-004c-42c2-b255-02c0867f5e5a","name":"Create a staff note","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"staff_note\": {\n     \"user_id\": <integer>,\n     \"author_id\": <integer>,\n     \"access_group_id\": <integer>,\n     \"note_date\": \"<datestamp>\",\n     \"body\": \"Perferendis provident praesentium assumenda exercitationem labore. Recusandae sed fuga voluptatibus asperiores. Et quia saepe ab inventore voluptatem repudiandae eius molestiae autem. Officiis necessitatibus et et veniam possimus ut aliquam et nobis. Cupiditate possimus magni ex eius. Earum ut accusamus qui non perferendis ipsum temporibus est id.\",\n     \"is_pinned\": true\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"body\": \"Sed eius at molestias voluptatem. Quibusdam aspernatur vitae dolores modi perspiciatis dignissimos facere.\",\n    \"note_date\": \"2026-02-03\",\n    \"is_pinned\": true,\n    \"created_at\": \"2026-02-03 16:29:12\",\n    \"updated_at\": \"2026-02-03 16:29:12\",\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Location\": {\n            \"id\": \"2\",\n            \"name\": \"Main Location\",\n            \"route_prefix\": \"client\"\n        }\n    },\n    \"AccessGroup\": {\n        \"id\": \"2\",\n        \"name\": \"Public\"\n    },\n    \"Author\": {\n        \"id\": \"1\",\n        \"account_code\": \"\",\n        \"first_name\": \"Chief\",\n        \"last_name\": \"Operator\",\n        \"email\": \"support@trackops.com\",\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\"\n    },\n    \"url\": null\n}"}],"_postman_id":"0c6c4fd9-a5ac-4d02-9509-2236188d5ccc"}],"id":"c7c80c76-085b-41d3-bb6b-d8a3bde29c86","description":"<p>Staff notes store extra information, recent conversations, or other updates related to the staff member.</p>\n","_postman_id":"c7c80c76-085b-41d3-bb6b-d8a3bde29c86","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Staff Price Lists","item":[{"name":"Get a staff price list adjustment","id":"e08637f4-3018-422b-90fb-f9b511ef8725","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist/:staff_id/:expense_item_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist",":staff_id",":expense_item_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff member (user)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_id"},{"description":{"content":"<p>ID of the expense item (finance item)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_item_id"}]}},"response":[{"id":"a290185e-cc48-40b9-8c6e-ca6b48a4baa9","name":"Get a staff price list adjustment","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/pricelist/:staff_id/:expense_item_id","host":["/api/v1"],"path":["staff","pricelist",":staff_id",":expense_item_id"],"variable":[{"key":"staff_id","value":"<integer>","description":"ID of the staff member (user)"},{"key":"expense_item_id","value":"<integer>","description":"ID of the expense item (finance item)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"user_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"expense_unit_rate\": \"55.000\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\"\n    }\n}"}],"_postman_id":"e08637f4-3018-422b-90fb-f9b511ef8725"},{"name":"List staff price list adjustments","id":"7b77c60a-6379-48db-85d4-c85e02319fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f420e39e-a0ca-4ec1-86ac-863ab57fe48e","name":"List staff price list adjustments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/pricelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"user_id\": \"3\",\n        \"finance_item_id\": \"1\",\n        \"expense_unit_rate\": \"55.000\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"FinanceItem\": {\n            \"id\": \"1\",\n            \"name\": \"Work Hours\",\n            \"reference_id\": null,\n            \"item_code\": null,\n            \"expense_alias\": \"Work Hours\",\n            \"expense_unit_rate\": \"50.000\"\n        }\n    },\n    {\n        \"user_id\": \"3\",\n        \"finance_item_id\": \"2\",\n        \"expense_unit_rate\": \"0.600\",\n        \"User\": {\n            \"id\": \"3\",\n            \"account_code\": \"EMPLOYEE-001\",\n            \"first_name\": \"Sam\",\n            \"last_name\": \"Spade\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        },\n        \"FinanceItem\": {\n            \"id\": \"2\",\n            \"name\": \"Mileage\",\n            \"reference_id\": null,\n            \"item_code\": null,\n            \"expense_alias\": \"Mileage\",\n            \"expense_unit_rate\": \"0.500\"\n        }\n    }\n]"}],"_postman_id":"7b77c60a-6379-48db-85d4-c85e02319fb5"},{"name":"Create a staff price list adjustment","id":"662eb3c3-3544-4da4-8fad-1ff7faf1bf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"staff_price_list\": {\n        \"user_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"expense_unit_rate\": \"390.23\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/pricelist","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"243d2034-9688-4422-b72c-3b55ac982e17","name":"Create a staff price list adjustment","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"staff_price_list\": {\n        \"user_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"expense_unit_rate\": \"314.58\" \n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/pricelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"user_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"expense_unit_rate\": \"350.460\",\n    \"User\": {\n        \"id\": \"3\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"first_name\": \"Sam\",\n        \"last_name\": \"Spade\",\n        \"email\": \"example@trackops.com\",\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"expense_alias\": \"Work Hours\",\n        \"expense_unit_rate\": \"50.000\"\n    }\n}"}],"_postman_id":"662eb3c3-3544-4da4-8fad-1ff7faf1bf67"}],"id":"91b66b9a-b742-49c4-bee3-d3dc099351ae","description":"<p>Staff price lists allow granular customization of expense rates on a per-user basis.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336823-Customizing-your-Price-Lists\">Customizing your Price Lists</a></p>\n","_postman_id":"91b66b9a-b742-49c4-bee3-d3dc099351ae","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Get a staff member","id":"55da9efc-bd7a-4f92-8788-92f21f162e9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff/:staff_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff",":staff_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the staff member (employee or vendor)</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"staff_id"}]}},"response":[{"id":"a71c9c13-fab0-4e82-af2d-8672802bfd95","name":"Get a staff member","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff/:staff_id","host":["/api/v1"],"path":["staff",":staff_id"],"variable":[{"key":"staff_id","value":"<integer>","description":"ID of the staff member (employee or vendor)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"manager_id\": null,\n    \"first_name\": \"Chief\",\n    \"middle_name\": \"\",\n    \"last_name\": \"Operator\",\n    \"title\": \"\",\n    \"email\": \"support@trackops.com\",\n    \"phone_home\": \"\",\n    \"phone_mobile\": \"\",\n    \"phone_mobile_carrier\": \"\",\n    \"phone_office\": \"\",\n    \"phone_fax\": \"\",\n    \"address_1\": \"\",\n    \"address_2\": \"\",\n    \"address_3\": \"\",\n    \"city\": \"\",\n    \"state\": \"\",\n    \"zip\": \"\",\n    \"country\": \"US\",\n    \"latitude\": null,\n    \"longitude\": null,\n    \"last_latitude\": null,\n    \"last_longitude\": null,\n    \"last_location_update_at\": null,\n    \"last_event_checkin_at\": null,\n    \"birthday\": null,\n    \"account_code\": \"\",\n    \"class_code\": \"\",\n    \"rating_average\": null,\n    \"notes\": \"\",\n    \"admin_notes\": \"\",\n    \"created_at\": \"2009-01-28 13:58:09\",\n    \"updated_at\": \"2026-02-03 15:28:03\",\n    \"last_login_at\": \"2026-02-03 15:28:03\",\n    \"mfa_enabled\": false,\n    \"is_login_active\": true,\n    \"name\": \"Operator, Chief\",\n    \"proper_name\": \"Chief Operator\",\n    \"Role\": {\n        \"id\": \"1\",\n        \"name\": \"Chief Operator\"\n    },\n    \"UserFieldGroup\": []\n}"}],"_postman_id":"55da9efc-bd7a-4f92-8788-92f21f162e9d"},{"name":"List staff","id":"31171cad-6f1f-4c45-9928-492d8464a30c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5b5d7bbd-f038-4bbc-a390-94988cece533","name":"List staff","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"manager_id\": \"1\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"title\": \"Lead Investigator\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_mobile_carrier\": \"vtext.com\",\n        \"phone_office\": \"555-555-5555\",\n        \"phone_fax\": \"555-555-5558\",\n        \"address_1\": \"123 Anywhere\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": \"1980-01-15\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"Hired on 01/01/2019\",\n        \"admin_notes\": \"5% Raise given on 01/01/2024 due to excellent performance.\",\n        \"created_at\": \"2026-02-02 20:58:17\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Role\": {\n            \"id\": \"7\",\n            \"name\": \"Investigator\"\n        },\n        \"UserFieldGroup\": []\n    },\n    {\n        \"id\": \"1\",\n        \"manager_id\": null,\n        \"first_name\": \"Chief\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Operator\",\n        \"title\": \"\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": null,\n        \"account_code\": \"\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"\",\n        \"admin_notes\": \"\",\n        \"created_at\": \"2009-01-28 13:58:09\",\n        \"updated_at\": \"2026-02-03 15:28:03\",\n        \"last_login_at\": \"2026-02-03 15:28:03\",\n        \"mfa_enabled\": false,\n        \"is_login_active\": true,\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Role\": {\n            \"id\": \"1\",\n            \"name\": \"Chief Operator\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"31171cad-6f1f-4c45-9928-492d8464a30c"},{"name":"Search staff","id":"d0592a58-7742-4679-b076-0e20c1d1aa37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/staff?id=<integer>&account_code=<string>&class_code=<string>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&with_tags=<integer>&with_work_preferences=<boolean>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["staff"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the staff member</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Account code (employee number, lookup code, etc...) of the staff member</p>\n","type":"text/plain"},"key":"account_code","value":"<string>"},{"description":{"content":"<p>Timekeeper classification code of the staff member (LEDES)</p>\n","type":"text/plain"},"key":"class_code","value":"<string>"},{"description":{"content":"<p>Email address of the staff member</p>\n","type":"text/plain"},"key":"email","value":"<string>"},{"description":{"content":"<p>First name of the staff member</p>\n","type":"text/plain"},"key":"first_name","value":"<string>"},{"description":{"content":"<p>Last name of the staff member</p>\n","type":"text/plain"},"key":"last_name","value":"<string>"},{"description":{"content":"<p>ID of the user role associated with the staff member</p>\n","type":"text/plain"},"key":"role","value":"<integer>"},{"description":{"content":"<p>ISO date the staff member was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the staff member was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Optionally includes user tags</p>\n","type":"text/plain"},"key":"with_tags","value":"<integer>"},{"description":{"content":"<p>Optionally includes \"CaseRegions \"and/or \"CaseServices\" as defined in staff work preferences</p>\n","type":"text/plain"},"key":"with_work_preferences","value":"<boolean>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"40a6dcbf-8ca9-41a4-b0d3-dedf8d4bddd6","name":"Search staff","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/staff?id=<integer>&account_code=<string>&class_code=<string>&email=<string>&first_name=<string>&last_name=<string>&role=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&with_tags=<boolean<>&with_work_preferences=<boolean>&expand_field_values=<boolean>","host":["/api/v1"],"path":["staff"],"query":[{"key":"id","value":"<integer>","description":"ID of the staff member"},{"key":"account_code","value":"<string>","description":"Account code (employee number, lookup code, etc...) of the staff member"},{"key":"class_code","value":"<string>","description":"Timekeeper classification code of the staff member (LEDES)"},{"key":"email","value":"<string>","description":"Email address of the staff member"},{"key":"first_name","value":"<string>","description":"First name of the staff member"},{"key":"last_name","value":"<string>","description":"Last name of the staff member"},{"key":"role","value":"<integer>","description":"ID of the user role associated with the staff member"},{"key":"created_from","value":"<datestamp>","description":"ISO date the staff member was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the staff member was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the staff member was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the staff member was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"with_tags","value":"<boolean<>","description":"Optionally includes user tags","type":"text"},{"key":"with_work_preferences","value":"<boolean>","description":"Optionally includes \"CaseRegions \"and/or \"CaseServices\" as defined in staff work preferences","type":"text"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"manager_id\": \"1\",\n        \"first_name\": \"Sam\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Spade\",\n        \"title\": \"Lead Investigator\",\n        \"email\": \"example@trackops.com\",\n        \"phone_home\": \"555-555-5557\",\n        \"phone_mobile\": \"555-555-5556\",\n        \"phone_mobile_carrier\": \"vtext.com\",\n        \"phone_office\": \"555-555-5555\",\n        \"phone_fax\": \"555-555-5558\",\n        \"address_1\": \"123 Anywhere\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Denver\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"country\": \"US\",\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": \"1980-01-15\",\n        \"account_code\": \"EMPLOYEE-001\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"Hired on 01/01/2019\",\n        \"admin_notes\": \"5% Raise given on 01/01/2024 due to excellent performance.\",\n        \"created_at\": \"2026-02-02 20:58:17\",\n        \"updated_at\": \"2026-02-02 21:02:29\",\n        \"last_login_at\": null,\n        \"mfa_enabled\": false,\n        \"is_login_active\": false,\n        \"name\": \"Spade, Sam\",\n        \"proper_name\": \"Sam Spade\",\n        \"Role\": {\n            \"id\": \"7\",\n            \"name\": \"Investigator\"\n        },\n        \"UserFieldGroup\": []\n    },\n    {\n        \"id\": \"1\",\n        \"manager_id\": null,\n        \"first_name\": \"Chief\",\n        \"middle_name\": \"\",\n        \"last_name\": \"Operator\",\n        \"title\": \"\",\n        \"email\": \"support@trackops.com\",\n        \"phone_home\": \"\",\n        \"phone_mobile\": \"\",\n        \"phone_mobile_carrier\": \"\",\n        \"phone_office\": \"\",\n        \"phone_fax\": \"\",\n        \"address_1\": \"\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"\",\n        \"state\": \"\",\n        \"zip\": \"\",\n        \"country\": \"US\",\n        \"latitude\": null,\n        \"longitude\": null,\n        \"last_latitude\": null,\n        \"last_longitude\": null,\n        \"last_location_update_at\": null,\n        \"last_event_checkin_at\": null,\n        \"birthday\": null,\n        \"account_code\": \"\",\n        \"class_code\": \"\",\n        \"rating_average\": null,\n        \"notes\": \"\",\n        \"admin_notes\": \"\",\n        \"created_at\": \"2009-01-28 13:58:09\",\n        \"updated_at\": \"2026-02-03 15:28:03\",\n        \"last_login_at\": \"2026-02-03 15:28:03\",\n        \"mfa_enabled\": false,\n        \"is_login_active\": true,\n        \"name\": \"Operator, Chief\",\n        \"proper_name\": \"Chief Operator\",\n        \"Role\": {\n            \"id\": \"1\",\n            \"name\": \"Chief Operator\"\n        },\n        \"UserFieldGroup\": []\n    }\n]"}],"_postman_id":"d0592a58-7742-4679-b076-0e20c1d1aa37"}],"id":"5282e6e4-93f9-403a-a273-9e22b1c47f80","description":"<p>Staff encompases employees, vendors, and vendor contacts, all of which can be allowed to log into the system and be assigned to cases.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360016467652-Creating-a-New-Employee\">Creating a New Employee</a>, <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRsKwiNgwuW3Bw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJfaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8zMTczMzczNTcxOTgyMS1Xb3JraW5nLXdpdGgtVmVuZG9yLUNvbnRhY3RzBjsIVDoOc2VhcmNoX2lkSSIpYzQ4OWE4YzMtNDU3Ni00ZjIyLTlmZTUtY2QzN2E5NTZlMTM2BjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSILdmVuZG9yBjsIVDoScmVzdWx0c19jb3VudGke--b8072040b66ddbc4d4e03d5dda4058080d977294\">Working with Vendor Contacts</a></p>\n","_postman_id":"5282e6e4-93f9-403a-a273-9e22b1c47f80","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Subject Types","item":[{"name":"Get a subject type","id":"52cdd81d-0104-4ee5-9104-e01411bee493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types/:subject_type_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types",":subject_type_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject type</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_type_id"}]}},"response":[{"id":"6dfeb38c-00a0-4382-9801-c7d4d5ea74d8","name":"Get a subject type","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/subject_types/:subject_type_id","host":["/api/v1"],"path":["subject_types",":subject_type_id"],"variable":[{"key":"subject_type_id","value":"<integer>","description":"ID of the subject type"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Claimant\",\n    \"reference_id\": null,\n    \"notes\": \"Claimant intake form\",\n    \"description\": \"Claimant intake form\",\n    \"Fields\": [\n        {\n            \"id\": \"1\",\n            \"name\": \"Full Name\",\n            \"FieldType\": {\n                \"id\": \"17\",\n                \"tag\": \"NAME\",\n                \"name\": \"Name (First, Middle, Last)\"\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"name\": \"Date of Birth\",\n            \"FieldType\": {\n                \"id\": \"22\",\n                \"tag\": \"BIRTHDAY\",\n                \"name\": \"Date (Birthday)\"\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"name\": \"Alias\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"name\": \"SSN\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"name\": \"Sex\",\n            \"FieldType\": {\n                \"id\": \"15\",\n                \"tag\": \"RADIO\",\n                \"name\": \"Multiple Choice (Radio)\"\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"name\": \"Race\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"name\": \"Height\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"11\",\n            \"name\": \"Build\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"name\": \"Cell Phone\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"16\",\n            \"name\": \"Other Characteristics\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"26\",\n            \"name\": \"Home Address\",\n            \"FieldType\": {\n                \"id\": \"16\",\n                \"tag\": \"ADDRESS\",\n                \"name\": \"Address (Address, City, State, Zip, Country)\"\n            }\n        },\n        {\n            \"id\": \"28\",\n            \"name\": \"Weight\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"30\",\n            \"name\": \"License Plate\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"31\",\n            \"name\": \"Registered To\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"32\",\n            \"name\": \"Vehicle Description\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"34\",\n            \"name\": \"Email\",\n            \"FieldType\": {\n                \"id\": \"21\",\n                \"tag\": \"EMAIL\",\n                \"name\": \"Email Address\"\n            }\n        },\n        {\n            \"id\": \"35\",\n            \"name\": \"Physical Characteristics\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"36\",\n            \"name\": \"Contact Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"37\",\n            \"name\": \"Employer\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"38\",\n            \"name\": \"Claim Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"39\",\n            \"name\": \"Injury\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"40\",\n            \"name\": \"Date of Loss\",\n            \"FieldType\": {\n                \"id\": \"4\",\n                \"tag\": \"DATE\",\n                \"name\": \"Date\"\n            }\n        },\n        {\n            \"id\": \"41\",\n            \"name\": \"Injury Restrictions\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"42\",\n            \"name\": \"Other Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"43\",\n            \"name\": \"Notes\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"44\",\n            \"name\": \"Occupation\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"45\",\n            \"name\": \"Hair\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"46\",\n            \"name\": \"Eyes\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"47\",\n            \"name\": \"Relationship Status\",\n            \"FieldType\": {\n                \"id\": \"2\",\n                \"tag\": \"SELECT\",\n                \"name\": \"Multiple Choice (Dropdown)\"\n            }\n        },\n        {\n            \"id\": \"48\",\n            \"name\": \"Family\",\n            \"FieldType\": {\n                \"id\": \"6\",\n                \"tag\": \"LONG\",\n                \"name\": \"Input (Long Answer)\"\n            }\n        },\n        {\n            \"id\": \"49\",\n            \"name\": \"Glasses\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"50\",\n            \"name\": \"Vehicle Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        },\n        {\n            \"id\": \"51\",\n            \"name\": \"Contact Claimant?\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"52\",\n            \"name\": \"Contact Employer?\",\n            \"FieldType\": {\n                \"id\": \"12\",\n                \"tag\": \"YESNO\",\n                \"name\": \"Yes or No\"\n            }\n        },\n        {\n            \"id\": \"53\",\n            \"name\": \"Employer Address\",\n            \"FieldType\": {\n                \"id\": \"16\",\n                \"tag\": \"ADDRESS\",\n                \"name\": \"Address (Address, City, State, Zip, Country)\"\n            }\n        },\n        {\n            \"id\": \"54\",\n            \"name\": \"Employer Phone\",\n            \"FieldType\": {\n                \"id\": \"1\",\n                \"tag\": \"INPUT\",\n                \"name\": \"Input (Short Answer)\"\n            }\n        },\n        {\n            \"id\": \"55\",\n            \"name\": \"Employment Information\",\n            \"FieldType\": {\n                \"id\": \"25\",\n                \"tag\": \"SECTION\",\n                \"name\": \"Section\"\n            }\n        }\n    ]\n}"}],"_postman_id":"52cdd81d-0104-4ee5-9104-e01411bee493"},{"name":"List subject types","id":"253d5b25-2115-47cf-809b-4abf99c4bcc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5815e3ea-cc39-4acd-90d2-ca092fb503f0","name":"List subject types","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"frame-ancestors 'none';object-src 'self' https://d1ssnvhbal8zta.cloudfront.net;media-src 'self' https://d1ssnvhbal8zta.cloudfront.net;script-src 'self' 'nonce-9dc20631689776c8fd6ecce340c597b2' https://js.stripe.com;upgrade-insecure-requests;block-all-mixed-content;"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains"},{"key":"X-Frame-Options","value":"DENY"},{"key":"X-Powered-By","value":"PHP/8.3.28"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Date","value":"Tue, 17 Feb 2026 18:26:43 GMT"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"reference_id\": null,\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\",\n        \"Fields\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\",\n                    \"name\": \"Name (First, Middle, Last)\"\n                }\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\",\n                    \"name\": \"Date (Birthday)\"\n                }\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\",\n                    \"name\": \"Multiple Choice (Radio)\"\n                }\n            },\n            {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\",\n                    \"name\": \"Email Address\"\n                }\n            },\n            {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\",\n                    \"name\": \"Date\"\n                }\n            },\n            {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"is_required\": false,\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"253d5b25-2115-47cf-809b-4abf99c4bcc8"},{"name":"Search subject types","id":"97df7954-4edc-44bd-ae76-5943e9f1c17f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/subject_types?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subject_types"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the subject type</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the subject type</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Reference or lookup code associated with the subject type</p>\n","type":"text/plain"},"key":"reference_id","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"3f1c13c9-9242-4347-9d17-42581e31fe46","name":"Save subject types","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/subject_types?id=<integer>&name=<string>&reference_id=<string>&page=<integer>","host":["/api/v1"],"path":["subject_types"],"query":[{"key":"id","value":"<integer>","description":"ID of the subject type"},{"key":"name","value":"<string>","description":"Name of the subject type"},{"key":"reference_id","value":"<string>","description":"Reference or lookup code associated with the subject type"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"reference_id\": null,\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\",\n        \"Fields\": [\n            {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\",\n                    \"name\": \"Name (First, Middle, Last)\"\n                }\n            },\n            {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\",\n                    \"name\": \"Date (Birthday)\"\n                }\n            },\n            {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\",\n                    \"name\": \"Multiple Choice (Radio)\"\n                }\n            },\n            {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\",\n                    \"name\": \"Email Address\"\n                }\n            },\n            {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\",\n                    \"name\": \"Date\"\n                }\n            },\n            {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\",\n                    \"name\": \"Multiple Choice (Dropdown)\"\n                }\n            },\n            {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\",\n                    \"name\": \"Input (Long Answer)\"\n                }\n            },\n            {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            },\n            {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\",\n                    \"name\": \"Yes or No\"\n                }\n            },\n            {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\",\n                    \"name\": \"Address (Address, City, State, Zip, Country)\"\n                }\n            },\n            {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\",\n                    \"name\": \"Input (Short Answer)\"\n                }\n            },\n            {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\",\n                    \"name\": \"Section\"\n                }\n            }\n        ]\n    }\n]"}],"_postman_id":"97df7954-4edc-44bd-ae76-5943e9f1c17f"}],"id":"657e9d0c-3276-4b8b-b640-5e09dfe9d9de","description":"<p>Subject types define the forms that are used to capture subject data across various types of cases. Forms are largely made up of <a href=\"https://support.trackops.com/hc/en-us/articles/212336843-How-to-Create-Custom-Fields\">custom fields</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336623-How-to-Create-a-New-Subject-Type\">How to Create a New Subject Type</a></p>\n","_postman_id":"657e9d0c-3276-4b8b-b640-5e09dfe9d9de","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Subjects","item":[{"name":"Get a subject","id":"894621f5-1635-4f76-8d2a-2bf4d79955d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects/:subject_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects",":subject_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_id"}]}},"response":[{"id":"fc14814a-c1c0-461f-8523-af52e5b0f573","name":"Get a subject","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/subjects/:subject_id","host":["/api/v1"],"path":["subjects",":subject_id"],"variable":[{"key":"subject_id","value":"<integer>","description":"ID of the subject"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"name\": \"McFly, Marty Seamus\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-02 20:49:46\",\n    \"updated_at\": \"2026-02-02 20:49:46\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"McFly, Marty Seamus\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1968-06-12\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"Calvin Klein\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"555-55-5555\",\n            \"is_encrypted\": true,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": \"Male\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": \"White\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"5'10\\\"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"Slender\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"555-555-5555\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"None\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"123 Main Street Hill Valley, CA 95420\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"165\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"OUTATIME\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"Emmett Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"1982 DMC DeLorean\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": \"example@trackops.com\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"Hill Valley High School\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Injury will be listed here\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": \"2019-02-01\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"Restrictions will be listed here\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"Friends with Doc Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Maintenance technician\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": \"Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": \"Brown\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": \"Dating\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"Father: George McFly\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": \"0\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": \"1\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": \"1\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"555-555-5555\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"3\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"894621f5-1635-4f76-8d2a-2bf4d79955d4"},{"name":"List subjects","id":"80aa6625-cb24-4986-9098-798b6cb49a81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"a59e88d3-fafa-4f74-ada9-c9bf28f7f070","name":"List subjects","originalRequest":{"method":"GET","header":[],"url":"/api/v1/subjects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"tenetur vero quae\",\n            \"reference_value_2\": \"aut earum qui\",\n            \"reference_value_3\": \"est aut laborum\",\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Johns, Arnoldo Ewald\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"6149 Langosh Rapids Apt #75 Devonfort, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Qui perferendis corporis facere tempora quibusdam velit ad. Omnis atque quia provident ex.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Sint eos architecto.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"eum quasi aliquam\",\n            \"reference_value_2\": \"suscipit sed sequi\",\n            \"reference_value_3\": \"non non laborum\",\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Ortiz, Beverly Ford\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"710 Norval Parks Apt #819 Lefflerton, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Ullam qui praesentium natus optio veniam odit et omnis. Laudantium unde dolorum modi esse aut. Qui aliquam laborum non ratione accusantium sequi placeat cupiditate.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Officiis voluptatum non quidem.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"updated_at\": \"2026-02-02 20:49:46\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:48:42\",\n        \"updated_at\": \"2026-02-02 20:48:42\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"2\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"sint ex illo\",\n            \"reference_value_2\": \"aut incidunt non\",\n            \"reference_value_3\": \"iusto quia ad\",\n            \"request_number\": \"REQ-00002\",\n            \"case_or_request_number\": \"REQ-00002\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Dicki, Jarret\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:42:19\",\n        \"updated_at\": \"2026-02-02 20:42:19\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"1\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"request_number\": \"REQ-00001\",\n            \"case_or_request_number\": \"REQ-00001\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"80aa6625-cb24-4986-9098-798b6cb49a81"},{"name":"Search subjects","id":"e077fc65-97b3-45ac-9156-743569b7aeee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/subjects?id=<integer>&case=<integer>&name=<string>&is_primary=<boolean>&subject_type=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the subject</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>Name of the subject (Last, First)</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>If the subject is a primary subject</p>\n","type":"text/plain"},"key":"is_primary","value":"<boolean>"},{"description":{"content":"<p>ID of the subject type associated with the subject</p>\n","type":"text/plain"},"key":"subject_type","value":"<integer>"},{"description":{"content":"<p>ISO date the subject was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the subject was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand custom field objects</p>\n","type":"text/plain"},"key":"expand_field_values","value":"<boolean>"}],"variable":[]}},"response":[{"id":"90bb058c-9ebe-4b08-bf10-42564550a5d7","name":"Search subjects","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/subjects?id=<integer>&case=<integer>&name=<string>&is_primary=<boolean>&subject_type=<integer>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>&expand_field_values=<boolean>","host":["/api/v1"],"path":["subjects"],"query":[{"key":"id","value":"<integer>","description":"ID of the subject"},{"key":"case","value":"<integer>","description":"ID of the case associated with the subject"},{"key":"name","value":"<string>","description":"Name of the subject (Last, First)"},{"key":"is_primary","value":"<boolean>","description":"If the subject is a primary subject"},{"key":"subject_type","value":"<integer>","description":"ID of the subject type associated with the subject"},{"key":"created_from","value":"<datestamp>","description":"ISO date the subject was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the subject was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the subject was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the subject was updated \"to\""},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_field_values","value":"<boolean>","description":"Expand custom field objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"5\",\n        \"name\": \"Johns, Arnoldo Ewald\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"tenetur vero quae\",\n            \"reference_value_2\": \"aut earum qui\",\n            \"reference_value_3\": \"est aut laborum\",\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Johns, Arnoldo Ewald\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"6149 Langosh Rapids Apt #75 Devonfort, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Qui perferendis corporis facere tempora quibusdam velit ad. Omnis atque quia provident ex.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Sint eos architecto.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"5\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"name\": \"Ortiz, Beverly Ford\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"eum quasi aliquam\",\n            \"reference_value_2\": \"suscipit sed sequi\",\n            \"reference_value_3\": \"non non laborum\",\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Ortiz, Beverly Ford\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1976-07-04\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"710 Norval Parks Apt #819 Lefflerton, CO 80202\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Ullam qui praesentium natus optio veniam odit et omnis. Laudantium unde dolorum modi esse aut. Qui aliquam laborum non ratione accusantium sequi placeat cupiditate.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Officiis voluptatum non quidem.\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"4\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:49:46\",\n        \"updated_at\": \"2026-02-02 20:49:46\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"3\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"name\": \"Dicki, Jarret\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:48:42\",\n        \"updated_at\": \"2026-02-02 20:48:42\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"2\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"sint ex illo\",\n            \"reference_value_2\": \"aut incidunt non\",\n            \"reference_value_3\": \"iusto quia ad\",\n            \"request_number\": \"REQ-00002\",\n            \"case_or_request_number\": \"REQ-00002\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"Dicki, Jarret\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": null,\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"2\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"name\": \"McFly, Marty Seamus\",\n        \"is_primary\": true,\n        \"created_at\": \"2026-02-02 20:42:19\",\n        \"updated_at\": \"2026-02-02 20:42:19\",\n        \"description\": \"Claimant intake form\",\n        \"SubjectType\": {\n            \"id\": \"1\",\n            \"name\": \"Claimant\",\n            \"notes\": \"Claimant intake form\",\n            \"description\": \"Claimant intake form\"\n        },\n        \"Casefile\": {\n            \"id\": \"1\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": true,\n            \"reference_value_1\": \"placeat voluptates quis\",\n            \"reference_value_2\": \"ut non sit\",\n            \"reference_value_3\": \"nulla quis vero\",\n            \"request_number\": \"REQ-00001\",\n            \"case_or_request_number\": \"REQ-00001\",\n            \"route_prefix\": \"case_request\"\n        },\n        \"SubjectFieldGroup\": {\n            \"1\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"1\",\n                \"subject_field_rank\": \"1\",\n                \"value\": \"McFly, Marty Seamus\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"1\",\n                    \"name\": \"Full Name\",\n                    \"FieldType\": {\n                        \"id\": \"17\",\n                        \"tag\": \"NAME\"\n                    }\n                }\n            },\n            \"2\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"2\",\n                \"subject_field_rank\": \"4\",\n                \"value\": \"1968-06-12\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"2\",\n                    \"name\": \"Date of Birth\",\n                    \"FieldType\": {\n                        \"id\": \"22\",\n                        \"tag\": \"BIRTHDAY\"\n                    }\n                }\n            },\n            \"3\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"3\",\n                \"subject_field_rank\": \"2\",\n                \"value\": \"Calvin Klein\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"3\",\n                    \"name\": \"Alias\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"4\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"4\",\n                \"subject_field_rank\": \"3\",\n                \"value\": \"555-55-5555\",\n                \"is_encrypted\": true,\n                \"Field\": {\n                    \"id\": \"4\",\n                    \"name\": \"SSN\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"5\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"5\",\n                \"subject_field_rank\": \"22\",\n                \"value\": \"Male\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"5\",\n                    \"name\": \"Sex\",\n                    \"FieldType\": {\n                        \"id\": \"15\",\n                        \"tag\": \"RADIO\"\n                    }\n                }\n            },\n            \"6\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"6\",\n                \"subject_field_rank\": \"21\",\n                \"value\": \"White\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"6\",\n                    \"name\": \"Race\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"7\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"7\",\n                \"subject_field_rank\": \"23\",\n                \"value\": \"5'10\\\"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"7\",\n                    \"name\": \"Height\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"11\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"11\",\n                \"subject_field_rank\": \"28\",\n                \"value\": \"Slender\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"11\",\n                    \"name\": \"Build\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"14\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"14\",\n                \"subject_field_rank\": \"8\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"14\",\n                    \"name\": \"Cell Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"16\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"16\",\n                \"subject_field_rank\": \"29\",\n                \"value\": \"None\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"16\",\n                    \"name\": \"Other Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"26\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"26\",\n                \"subject_field_rank\": \"9\",\n                \"value\": \"123 Main Street Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"26\",\n                    \"name\": \"Home Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"28\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"28\",\n                \"subject_field_rank\": \"24\",\n                \"value\": \"165\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"28\",\n                    \"name\": \"Weight\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"30\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"30\",\n                \"subject_field_rank\": \"32\",\n                \"value\": \"OUTATIME\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"30\",\n                    \"name\": \"License Plate\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"31\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"31\",\n                \"subject_field_rank\": \"33\",\n                \"value\": \"Emmett Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"31\",\n                    \"name\": \"Registered To\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"32\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"32\",\n                \"subject_field_rank\": \"31\",\n                \"value\": \"1982 DMC DeLorean\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"32\",\n                    \"name\": \"Vehicle Description\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"34\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"34\",\n                \"subject_field_rank\": \"7\",\n                \"value\": \"example@trackops.com\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"34\",\n                    \"name\": \"Email\",\n                    \"FieldType\": {\n                        \"id\": \"21\",\n                        \"tag\": \"EMAIL\"\n                    }\n                }\n            },\n            \"35\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"35\",\n                \"subject_field_rank\": \"20\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"35\",\n                    \"name\": \"Physical Characteristics\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"36\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"36\",\n                \"subject_field_rank\": \"5\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"36\",\n                    \"name\": \"Contact Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"37\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"37\",\n                \"subject_field_rank\": \"16\",\n                \"value\": \"Hill Valley High School\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"37\",\n                    \"name\": \"Employer\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"38\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"38\",\n                \"subject_field_rank\": \"10\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"38\",\n                    \"name\": \"Claim Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"39\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"39\",\n                \"subject_field_rank\": \"12\",\n                \"value\": \"Injury will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"39\",\n                    \"name\": \"Injury\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"40\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"40\",\n                \"subject_field_rank\": \"11\",\n                \"value\": \"2019-02-01\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"40\",\n                    \"name\": \"Date of Loss\",\n                    \"FieldType\": {\n                        \"id\": \"4\",\n                        \"tag\": \"DATE\"\n                    }\n                }\n            },\n            \"41\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"41\",\n                \"subject_field_rank\": \"13\",\n                \"value\": \"Restrictions will be listed here\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"41\",\n                    \"name\": \"Injury Restrictions\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"42\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"42\",\n                \"subject_field_rank\": \"34\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"42\",\n                    \"name\": \"Other Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"43\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"43\",\n                \"subject_field_rank\": \"37\",\n                \"value\": \"Friends with Doc Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"43\",\n                    \"name\": \"Notes\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"44\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"44\",\n                \"subject_field_rank\": \"17\",\n                \"value\": \"Maintenance technician\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"44\",\n                    \"name\": \"Occupation\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"45\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"45\",\n                \"subject_field_rank\": \"25\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"45\",\n                    \"name\": \"Hair\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"46\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"46\",\n                \"subject_field_rank\": \"26\",\n                \"value\": \"Brown\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"46\",\n                    \"name\": \"Eyes\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"47\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"47\",\n                \"subject_field_rank\": \"35\",\n                \"value\": \"Dating\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"47\",\n                    \"name\": \"Relationship Status\",\n                    \"FieldType\": {\n                        \"id\": \"2\",\n                        \"tag\": \"SELECT\"\n                    }\n                }\n            },\n            \"48\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"48\",\n                \"subject_field_rank\": \"36\",\n                \"value\": \"Father: George McFly\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"48\",\n                    \"name\": \"Family\",\n                    \"FieldType\": {\n                        \"id\": \"6\",\n                        \"tag\": \"LONG\"\n                    }\n                }\n            },\n            \"49\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"49\",\n                \"subject_field_rank\": \"27\",\n                \"value\": \"0\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"49\",\n                    \"name\": \"Glasses\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"50\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"50\",\n                \"subject_field_rank\": \"30\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"50\",\n                    \"name\": \"Vehicle Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            },\n            \"51\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"51\",\n                \"subject_field_rank\": \"6\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"51\",\n                    \"name\": \"Contact Claimant?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"52\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"52\",\n                \"subject_field_rank\": \"15\",\n                \"value\": \"1\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"52\",\n                    \"name\": \"Contact Employer?\",\n                    \"FieldType\": {\n                        \"id\": \"12\",\n                        \"tag\": \"YESNO\"\n                    }\n                }\n            },\n            \"53\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"53\",\n                \"subject_field_rank\": \"19\",\n                \"value\": \"123 Lincoln St Hill Valley, CA 95420\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"53\",\n                    \"name\": \"Employer Address\",\n                    \"FieldType\": {\n                        \"id\": \"16\",\n                        \"tag\": \"ADDRESS\"\n                    }\n                }\n            },\n            \"54\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"54\",\n                \"subject_field_rank\": \"18\",\n                \"value\": \"555-555-5555\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"54\",\n                    \"name\": \"Employer Phone\",\n                    \"FieldType\": {\n                        \"id\": \"1\",\n                        \"tag\": \"INPUT\"\n                    }\n                }\n            },\n            \"55\": {\n                \"subject_id\": \"1\",\n                \"field_id\": \"55\",\n                \"subject_field_rank\": \"14\",\n                \"value\": \"\",\n                \"is_encrypted\": false,\n                \"Field\": {\n                    \"id\": \"55\",\n                    \"name\": \"Employment Information\",\n                    \"FieldType\": {\n                        \"id\": \"25\",\n                        \"tag\": \"SECTION\"\n                    }\n                }\n            }\n        }\n    }\n]"}],"_postman_id":"e077fc65-97b3-45ac-9156-743569b7aeee"},{"name":"Create a subject","id":"b38d4764-7293-4a95-b022-a2d99d050f4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"subject_type_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Shanel\",\n          \"middle_name\": \"Lenny\",\n          \"last_name\": \"Jacobson\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Velit et molestiae ut ipsa.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Voluptas recusandae culpa perferendis. Aut ut itaque corporis iure sunt nulla voluptas esse quia. Perspiciatis incidunt placeat laudantium laborum pariatur ut.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"899 Derrick Parkways\",\n          \"address_2\": \"Apt #891\",\n          \"address_3\": \"\",\n          \"city\": \"Marianaberg\",\n          \"state\": \"<string>\",\n          \"zip\": \"<string>\",\n          \"country\": \"<country-code>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4af770ca-c375-418e-9c31-84564b977ffa","name":"Create a subject","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"subject_type_id\": \"<integer>\",\n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Mohamed\",\n          \"middle_name\": \"Katheryn\",\n          \"last_name\": \"Gutmann\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Perferendis aut consectetur doloremque.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Explicabo deleniti quia optio quisquam id mollitia. Quia vel quia qui est temporibus eos. Blanditiis quisquam libero aut non.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"81380 Cremin Turnpike\",\n          \"address_2\": \"Apt #214\",\n          \"address_3\": \"\",\n          \"city\": \"Lake Lloydbury\",\n          \"state\": \"<string>\",\n          \"zip\": \"<string>\",\n          \"country\": \"<country-code>\"\n        }\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Waters, Sigurd Price\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-03 16:31:36\",\n    \"updated_at\": \"2026-02-03 16:31:36\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"Waters, Sigurd Price\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1976-07-04\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"4552 Ankunding Knoll Apt #929 Port Tyrel, CO 80202\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Voluptatem dolor aliquam qui. Nostrum fugit voluptatem ducimus.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Debitis animi doloremque occaecati ut fugiat voluptatem qui mollitia totam.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b38d4764-7293-4a95-b022-a2d99d050f4b"},{"name":"Update a subject","id":"c6b51322-0150-48a8-8738-a51442e9e44c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Simeon\",\n          \"middle_name\": \"Isaias\",\n          \"last_name\": \"Bechtelar\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Ea quia expedita. Consectetur repellendus itaque. Asperiores esse omnis omnis iusto asperiores accusamus necessitatibus. Distinctio nulla fuga.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects/:subject_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["subjects",":subject_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the subject</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"subject_id"}]}},"response":[{"id":"cba2026e-96d1-40b9-8277-8845d2ceb92f","name":"Update a subject","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"subject\": {\n    \"casefile_id\": \"<integer>\",  \n    \"is_primary\": true,\n    \"is_pinned\": true,\n    \"custom_fields\": [\n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"first_name\": \"Lynn\",\n          \"middle_name\": \"Davon\",\n          \"last_name\": \"Koelpin\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Magni deleniti enim neque doloremque deserunt quibusdam quisquam. Mollitia est et. Ratione quis cumque non. Iusto aut sunt cumque amet est. Dolorum sed placeat placeat iusto officiis est expedita aliquam dolorum. Cumque et modi vitae impedit ipsum expedita.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      }\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/subjects/<integer>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"6\",\n    \"name\": \"Terry, Mona Lauretta\",\n    \"is_primary\": true,\n    \"created_at\": \"2026-02-03 16:31:36\",\n    \"updated_at\": \"2026-02-03 16:31:36\",\n    \"description\": \"Claimant intake form\",\n    \"SubjectType\": {\n        \"id\": \"1\",\n        \"name\": \"Claimant\",\n        \"notes\": \"Claimant intake form\",\n        \"description\": \"Claimant intake form\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"reference_value_1\": \"placeat voluptates quis\",\n        \"reference_value_2\": \"ut non sit\",\n        \"reference_value_3\": \"nulla quis vero\",\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"SubjectFieldGroup\": {\n        \"1\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"1\",\n            \"subject_field_rank\": \"1\",\n            \"value\": \"Terry, Mona Lauretta\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"1\",\n                \"name\": \"Full Name\",\n                \"FieldType\": {\n                    \"id\": \"17\",\n                    \"tag\": \"NAME\"\n                }\n            }\n        },\n        \"2\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"2\",\n            \"subject_field_rank\": \"4\",\n            \"value\": \"1976-07-04\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"2\",\n                \"name\": \"Date of Birth\",\n                \"FieldType\": {\n                    \"id\": \"22\",\n                    \"tag\": \"BIRTHDAY\"\n                }\n            }\n        },\n        \"3\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"3\",\n            \"subject_field_rank\": \"2\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"3\",\n                \"name\": \"Alias\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"4\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"4\",\n            \"subject_field_rank\": \"3\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"4\",\n                \"name\": \"SSN\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"5\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"5\",\n            \"subject_field_rank\": \"22\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"5\",\n                \"name\": \"Sex\",\n                \"FieldType\": {\n                    \"id\": \"15\",\n                    \"tag\": \"RADIO\"\n                }\n            }\n        },\n        \"6\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"6\",\n            \"subject_field_rank\": \"21\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"6\",\n                \"name\": \"Race\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"7\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"7\",\n            \"subject_field_rank\": \"23\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"7\",\n                \"name\": \"Height\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"11\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"11\",\n            \"subject_field_rank\": \"28\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"11\",\n                \"name\": \"Build\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"14\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"14\",\n            \"subject_field_rank\": \"8\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"14\",\n                \"name\": \"Cell Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"16\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"16\",\n            \"subject_field_rank\": \"29\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"16\",\n                \"name\": \"Other Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"26\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"26\",\n            \"subject_field_rank\": \"9\",\n            \"value\": \"4552 Ankunding Knoll Apt #929 Port Tyrel, CO 80202\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"26\",\n                \"name\": \"Home Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"28\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"28\",\n            \"subject_field_rank\": \"24\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"28\",\n                \"name\": \"Weight\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"30\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"30\",\n            \"subject_field_rank\": \"32\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"30\",\n                \"name\": \"License Plate\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"31\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"31\",\n            \"subject_field_rank\": \"33\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"31\",\n                \"name\": \"Registered To\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"32\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"32\",\n            \"subject_field_rank\": \"31\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"32\",\n                \"name\": \"Vehicle Description\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"34\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"34\",\n            \"subject_field_rank\": \"7\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"34\",\n                \"name\": \"Email\",\n                \"FieldType\": {\n                    \"id\": \"21\",\n                    \"tag\": \"EMAIL\"\n                }\n            }\n        },\n        \"35\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"35\",\n            \"subject_field_rank\": \"20\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"35\",\n                \"name\": \"Physical Characteristics\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"36\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"36\",\n            \"subject_field_rank\": \"5\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"36\",\n                \"name\": \"Contact Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"37\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"37\",\n            \"subject_field_rank\": \"16\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"37\",\n                \"name\": \"Employer\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"38\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"38\",\n            \"subject_field_rank\": \"10\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"38\",\n                \"name\": \"Claim Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"39\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"39\",\n            \"subject_field_rank\": \"12\",\n            \"value\": \"Animi repudiandae perspiciatis. Perferendis nisi repellendus quisquam. Enim est inventore similique. Voluptas in et aperiam reiciendis nulla quis harum.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"39\",\n                \"name\": \"Injury\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"40\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"40\",\n            \"subject_field_rank\": \"11\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"40\",\n                \"name\": \"Date of Loss\",\n                \"FieldType\": {\n                    \"id\": \"4\",\n                    \"tag\": \"DATE\"\n                }\n            }\n        },\n        \"41\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"41\",\n            \"subject_field_rank\": \"13\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"41\",\n                \"name\": \"Injury Restrictions\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"42\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"42\",\n            \"subject_field_rank\": \"34\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"42\",\n                \"name\": \"Other Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"43\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"43\",\n            \"subject_field_rank\": \"37\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"43\",\n                \"name\": \"Notes\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"44\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"44\",\n            \"subject_field_rank\": \"17\",\n            \"value\": \"Debitis animi doloremque occaecati ut fugiat voluptatem qui mollitia totam.\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"44\",\n                \"name\": \"Occupation\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"45\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"45\",\n            \"subject_field_rank\": \"25\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"45\",\n                \"name\": \"Hair\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"46\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"46\",\n            \"subject_field_rank\": \"26\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"46\",\n                \"name\": \"Eyes\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"47\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"47\",\n            \"subject_field_rank\": \"35\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"47\",\n                \"name\": \"Relationship Status\",\n                \"FieldType\": {\n                    \"id\": \"2\",\n                    \"tag\": \"SELECT\"\n                }\n            }\n        },\n        \"48\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"48\",\n            \"subject_field_rank\": \"36\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"48\",\n                \"name\": \"Family\",\n                \"FieldType\": {\n                    \"id\": \"6\",\n                    \"tag\": \"LONG\"\n                }\n            }\n        },\n        \"49\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"49\",\n            \"subject_field_rank\": \"27\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"49\",\n                \"name\": \"Glasses\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"50\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"50\",\n            \"subject_field_rank\": \"30\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"50\",\n                \"name\": \"Vehicle Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        },\n        \"51\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"51\",\n            \"subject_field_rank\": \"6\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"51\",\n                \"name\": \"Contact Claimant?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"52\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"52\",\n            \"subject_field_rank\": \"15\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"52\",\n                \"name\": \"Contact Employer?\",\n                \"FieldType\": {\n                    \"id\": \"12\",\n                    \"tag\": \"YESNO\"\n                }\n            }\n        },\n        \"53\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"53\",\n            \"subject_field_rank\": \"19\",\n            \"value\": null,\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"53\",\n                \"name\": \"Employer Address\",\n                \"FieldType\": {\n                    \"id\": \"16\",\n                    \"tag\": \"ADDRESS\"\n                }\n            }\n        },\n        \"54\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"54\",\n            \"subject_field_rank\": \"18\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"54\",\n                \"name\": \"Employer Phone\",\n                \"FieldType\": {\n                    \"id\": \"1\",\n                    \"tag\": \"INPUT\"\n                }\n            }\n        },\n        \"55\": {\n            \"subject_id\": \"6\",\n            \"field_id\": \"55\",\n            \"subject_field_rank\": \"14\",\n            \"value\": \"\",\n            \"is_encrypted\": false,\n            \"Field\": {\n                \"id\": \"55\",\n                \"name\": \"Employment Information\",\n                \"FieldType\": {\n                    \"id\": \"25\",\n                    \"tag\": \"SECTION\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c6b51322-0150-48a8-8738-a51442e9e44c"}],"id":"8d2c0259-6147-4ccf-a7a8-929de51a0bb4","description":"<p>Subjects are the targets and supporting parties of investigations. Available subject data points are defined through <a href=\"https://support.trackops.com/hc/en-us/articles/212336623-How-to-Create-a-New-Subject-Type\">subject types</a>.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212336683-Adding-a-Subject-to-a-Case\">Adding a Subject to a Case</a></p>\n","_postman_id":"8d2c0259-6147-4ccf-a7a8-929de51a0bb4","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tasks & Events (Activities)","item":[{"name":"Events","item":[{"name":"Get an event","id":"4b1d11f1-2176-4eb2-9a85-214ae7e1d5ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events/:event_id?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events",":event_id"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address object</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[{"description":{"content":"<p>ID of the event</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"event_id"}]}},"response":[{"id":"c201f8e8-c0bb-4da3-98d1-2d68d5f60733","name":"Get an event","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events/:event_id?expand_address=1","host":["/api/v1"],"path":["events",":event_id"],"query":[{"key":"expand_address","value":"1","description":"Expand address object"}],"variable":[{"key":"event_id","value":"<integer>","description":"ID of the event"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"title\": \"Surveillance / McFly / Denver, CO\",\n    \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n    \"start_at\": \"2026-02-07 13:00:00\",\n    \"end_at\": \"2026-02-07 20:00:00\",\n    \"timezone\": null,\n    \"completed_at\": null,\n    \"alert_at\": \"2026-02-06 13:00:00\",\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"country\": \"US\",\n        \"address_1\": \"123 Main Street\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Hill Valley\",\n        \"state\": \"CA\",\n        \"zip\": \"95420\",\n        \"longitude\": -117.028324,\n        \"latitude\": 34.89894\n    },\n    \"latitude\": \"34.898940\",\n    \"longitude\": \"-117.028324\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-02 21:01:36\",\n    \"updated_at\": \"2026-02-02 21:01:36\",\n    \"task_status\": \"none\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"4b1d11f1-2176-4eb2-9a85-214ae7e1d5ac"},{"name":"List events","id":"52aa1862-c865-4d75-9057-4f1f5d5e784c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[]}},"response":[{"id":"d68b1101-2bc6-4d98-aa64-b3f0a578dddf","name":"List events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events?expand_address=1","host":["/api/v1"],"path":["events"],"query":[{"key":"expand_address","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"title\": \"ipsum recusandae voluptatem\",\n        \"body\": \"Illum perspiciatis et veniam cupiditate maiores ullam aliquam. Illum dignissimos culpa commodi voluptas est sed. Aut est itaque repudiandae iure illo.\",\n        \"start_at\": \"2026-02-10 05:00:00\",\n        \"end_at\": \"2026-02-10 05:00:00\",\n        \"timezone\": \"America/Denver\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"address_1\": \"5930 Marquardt Junction\",\n            \"address_2\": \"STE 496\",\n            \"address_3\": \"\",\n            \"city\": \"Lyricborough\",\n            \"state\": \"CO\",\n            \"zip\": 80202,\n            \"country\": \"US\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:33:08\",\n        \"updated_at\": \"2026-02-03 16:33:08\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"completed_at\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Hill Valley\",\n            \"state\": \"CA\",\n            \"zip\": \"95420\",\n            \"longitude\": -117.028324,\n            \"latitude\": 34.89894\n        },\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    }\n]"}],"_postman_id":"52aa1862-c865-4d75-9057-4f1f5d5e784c"},{"name":"Search events","id":"9c164a14-e4df-4e8b-8ccd-61aecbb648e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/events?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&start_from=<datestamp>&start_to=<datestamp>&end_from=<datestamp>&end_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the event</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Status of the event (enum)</p>\n","type":"text/plain"},"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>"},{"description":{"content":"<p>Title of the event</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the user assigned to the event</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the calendar associated with the event</p>\n","type":"text/plain"},"key":"calendar","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the event</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case service associated with the event</p>\n","type":"text/plain"},"key":"case_service","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the event</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>ISO date of the event start \"from\"</p>\n","type":"text/plain"},"key":"start_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event start \"to\"</p>\n","type":"text/plain"},"key":"start_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event end \"from\"</p>\n","type":"text/plain"},"key":"end_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the event end \"to\"</p>\n","type":"text/plain"},"key":"end_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"from\"</p>\n","type":"text/plain"},"key":"alert_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"to\"</p>\n","type":"text/plain"},"key":"alert_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"from\"</p>\n","type":"text/plain"},"key":"alert_sent_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"to\"</p>\n","type":"text/plain"},"key":"alert_sent_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was completed \"from\"</p>\n","type":"text/plain"},"key":"completed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the event was completed \"to\"</p>\n","type":"text/plain"},"key":"completed_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of start_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alas of start_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"<boolean>"}],"variable":[]}},"response":[{"id":"b0d5b65b-c09c-439f-b151-3a87025fa7cf","name":"Search events","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/events?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&start_from=<datestamp>&start_to=<datestamp>&end_from=<datestamp>&end_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","host":["/api/v1"],"path":["events"],"query":[{"key":"id","value":"<integer>","description":"ID of the event"},{"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>","description":"Status of the event (enum)"},{"key":"title","value":"<string>","description":"Title of the event"},{"key":"user","value":"<integer>","description":"ID of the user assigned to the event"},{"key":"calendar","value":"<integer>","description":"ID of the calendar associated with the event"},{"key":"case","value":"<integer>","description":"ID of the case associated with the event"},{"key":"case_service","value":"<integer>","description":"ID of the case service associated with the event"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the event"},{"key":"start_from","value":"<datestamp>","description":"ISO date of the event start \"from\""},{"key":"start_to","value":"<datestamp>","description":"ISO date of the event start \"to\""},{"key":"end_from","value":"<datestamp>","description":"ISO date of the event end \"from\""},{"key":"end_to","value":"<datestamp>","description":"ISO date of the event end \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the event was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the event was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the event was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the event was updated \"to\""},{"key":"alert_from","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"from\""},{"key":"alert_to","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"to\""},{"key":"alert_sent_from","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"from\""},{"key":"alert_sent_to","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"to\""},{"key":"completed_from","value":"<datestamp>","description":"ISO date the event was completed \"from\""},{"key":"completed_to","value":"<datestamp>","description":"ISO date the event was completed \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of start_from"},{"key":"to","value":"<datestamp>","description":"Alas of start_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_address","value":"<boolean>","description":"Expand address objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"2\",\n        \"title\": \"ipsum recusandae voluptatem\",\n        \"body\": \"Illum perspiciatis et veniam cupiditate maiores ullam aliquam. Illum dignissimos culpa commodi voluptas est sed. Aut est itaque repudiandae iure illo.\",\n        \"start_at\": \"2026-02-10 05:00:00\",\n        \"end_at\": \"2026-02-10 05:00:00\",\n        \"timezone\": \"America/Denver\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"address_1\": \"5930 Marquardt Junction\",\n            \"address_2\": \"STE 496\",\n            \"address_3\": \"\",\n            \"city\": \"Lyricborough\",\n            \"state\": \"CO\",\n            \"zip\": 80202,\n            \"country\": \"US\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:33:08\",\n        \"updated_at\": \"2026-02-03 16:33:08\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    },\n    {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"completed_at\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"123 Main Street\",\n            \"address_2\": \"\",\n            \"address_3\": \"\",\n            \"city\": \"Hill Valley\",\n            \"state\": \"CA\",\n            \"zip\": \"95420\",\n            \"longitude\": -117.028324,\n            \"latitude\": 34.89894\n        },\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\",\n        \"task_status\": \"none\",\n        \"Calendar\": {\n            \"id\": \"1\",\n            \"name\": \"Field Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"1\",\n            \"name\": \"Surveillance\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"3\",\n                \"last_name\": \"Spade\",\n                \"first_name\": \"Sam\",\n                \"email\": \"example@trackops.com\",\n                \"name\": \"Spade, Sam\",\n                \"proper_name\": \"Sam Spade\"\n            }\n        ]\n    }\n]"}],"_postman_id":"9c164a14-e4df-4e8b-8ccd-61aecbb648e8"},{"name":"Create an event","id":"9c5dc4a8-7d50-4642-8d3e-fe0eb5a27807","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"start_at\": \"<datestamp>\",\n     \"end_at\": \"<datestamp>\",\n     \"timezone\": \"<timezone>\",\n     \"is_allday\": false,\n     \"title\": \"quaerat amet natus\",\n     \"body\": \"Deserunt omnis sed doloremque natus. Natus id dolores sint vitae aut. Sint tempora sint exercitationem inventore facilis quo.\",\n     \"address\": {\n         \"address_1\": \"5161 Bednar Burg\",\n         \"address_2\": \"STE 136\",\n         \"address_3\": \"\",\n         \"city\": \"South Birdie\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/events","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["events"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"72a38e11-94c5-4f86-a027-9a4bef7bc958","name":"Create an event","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"event\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"start_at\": \"<datestamp>\",\n     \"end_at\": \"<datestamp>\",\n     \"timezone\": \"<timezone>\",\n     \"is_allday\": false,\n     \"title\": \"sed temporibus blanditiis\",\n     \"body\": \"Eum iusto recusandae ratione rerum aut. Delectus sit maxime ducimus pariatur asperiores. Aut quae voluptatem quia voluptate ipsa maxime aut sed. Tempora libero ea autem vel qui dolorem non. Quae consequatur aut dolorem sint odit tempore nemo. Blanditiis veritatis corrupti aliquam.\",\n     \"address\": {\n         \"address_1\": \"6651 Ellie Way\",\n         \"address_2\": \"STE 378\",\n         \"address_3\": \"\",\n         \"city\": \"Nashville-Davidson\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"5\",\n    \"title\": \"cum consequuntur adipisci\",\n    \"body\": \"Ex consequatur aut sequi. Est aut velit nam voluptas error consequatur non non. Ipsa qui asperiores non iure. Autem et aperiam explicabo est. Reiciendis natus cum labore debitis quo et et debitis. Consequatur neque quasi nemo id a et voluptas est quia.\",\n    \"start_at\": \"2026-02-10 05:00:00\",\n    \"end_at\": \"2026-02-10 05:00:00\",\n    \"timezone\": \"America/Denver\",\n    \"completed_at\": null,\n    \"alert_at\": null,\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"address_1\": \"6663 Braeden Hill\",\n        \"address_2\": \"STE 252\",\n        \"address_3\": \"\",\n        \"city\": \"Draper\",\n        \"state\": \"CO\",\n        \"zip\": 80202,\n        \"country\": \"US\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 17:08:46\",\n    \"updated_at\": \"2026-02-03 17:08:46\",\n    \"task_status\": \"none\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"9c5dc4a8-7d50-4642-8d3e-fe0eb5a27807"}],"id":"f840c745-f10b-467f-8149-530efa7d174d","description":"<p>Events are time-specific activites that are worked on a specific date, and optionally have a specific start time.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360015365312-Scheduling-Assignments-through-Case-Events\">Scheduling Assignments through Case Events</a></p>\n","_postman_id":"f840c745-f10b-467f-8149-530efa7d174d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Check-Ins","item":[{"name":"Get an event check-in","id":"ccf70d2e-6c63-4ae0-bbb1-8fb706ccfc46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins/:checkin_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins",":checkin_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the check-in</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"checkin_id"}]}},"response":[{"id":"b302c6b4-525a-4849-b04c-c5cd1c762b4e","name":"Get an event check-in","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/event/checkins/:checkin_id","host":["/api/v1"],"path":["event","checkins",":checkin_id"],"variable":[{"key":"checkin_id","value":"<integer>","description":"ID of the check-in"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"longitude\": \"-104.984700\",\n    \"latitude\": \"39.739200\",\n    \"ip\": \"127.0.0.1\",\n    \"notes\": \"Arrived on site.\",\n    \"timezone\": \"America/Denver\",\n    \"checkin_type\": \"1\",\n    \"created_at\": \"2026-02-01 12:31:00\",\n    \"Event\": {\n        \"id\": \"1\",\n        \"title\": \"Surveillance / McFly / Denver, CO\",\n        \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n        \"start_at\": \"2026-02-07 13:00:00\",\n        \"end_at\": \"2026-02-07 20:00:00\",\n        \"timezone\": null,\n        \"alert_at\": \"2026-02-06 13:00:00\",\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n        \"latitude\": \"34.898940\",\n        \"longitude\": \"-117.028324\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-02 21:01:36\",\n        \"updated_at\": \"2026-02-02 21:01:36\"\n    },\n    \"User\": {\n        \"id\": \"1\",\n        \"last_name\": \"Lebsack\",\n        \"first_name\": \"Jefferey\",\n        \"email\": \"Mikel_Spinka@example.com\",\n        \"name\": \"Lebsack, Jefferey\",\n        \"proper_name\": \"Jefferey Lebsack\"\n    }\n}"}],"_postman_id":"ccf70d2e-6c63-4ae0-bbb1-8fb706ccfc46"},{"name":"List event check-ins","id":"e42c7548-e451-42d5-99c3-97aab581826d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"54d979ba-04d1-42e1-bc3c-79a2eff39ebf","name":"List event check-ins","originalRequest":{"method":"GET","header":[],"url":"/api/v1/event/checkins"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"longitude\": \"-104.984700\",\n        \"latitude\": \"39.739200\",\n        \"ip\": \"127.0.0.1\",\n        \"notes\": \"Arrived on site.\",\n        \"timezone\": \"America/Denver\",\n        \"checkin_type\": \"1\",\n        \"created_at\": \"2026-02-01 12:31:00\",\n        \"Event\": {\n            \"id\": \"1\",\n            \"title\": \"Surveillance / McFly / Denver, CO\",\n            \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n            \"start_at\": \"2026-02-07 13:00:00\",\n            \"end_at\": \"2026-02-07 20:00:00\",\n            \"timezone\": null,\n            \"alert_at\": \"2026-02-06 13:00:00\",\n            \"alert_sent_at\": null,\n            \"is_allday\": false,\n            \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n            \"latitude\": \"34.898940\",\n            \"longitude\": \"-117.028324\",\n            \"last_checkin_at\": null,\n            \"created_at\": \"2026-02-02 21:01:36\",\n            \"updated_at\": \"2026-02-02 21:01:36\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"last_name\": \"Lebsack\",\n            \"first_name\": \"Jefferey\",\n            \"email\": \"Mikel_Spinka@example.com\",\n            \"name\": \"Lebsack, Jefferey\",\n            \"proper_name\": \"Jefferey Lebsack\"\n        }\n    }\n]"}],"_postman_id":"e42c7548-e451-42d5-99c3-97aab581826d"},{"name":"Search event check-ins","id":"b04abd6e-de4a-4d29-b4bc-30d2766ced0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/event/checkins?id=<integer>&checkin_type=<checkin|break>&event=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["event","checkins"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the check-in</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Type of checkin (enum)</p>\n","type":"text/plain"},"key":"checkin_type","value":"<checkin|break>"},{"description":{"content":"<p>ID of the task or event associated with the check-in</p>\n","type":"text/plain"},"key":"event","value":"<integer>"},{"description":{"content":"<p>ID of the user who performed the check-in</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the check-in was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the check-in was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of created_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"f6c0482b-70db-46fd-858d-bc95b195e392","name":"Search event check-ins","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/event/checkins?id=<integer>&checkin_type=<checkin|break>&event=<integer>&user=<integer>&created_from=<datestamp>&created_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["event","checkins"],"query":[{"key":"id","value":"<integer>","description":"ID of the check-in"},{"key":"checkin_type","value":"<checkin|break>","description":"Type of checkin (enum)"},{"key":"event","value":"<integer>","description":"ID of the task or event associated with the check-in"},{"key":"user","value":"<integer>","description":"ID of the user who performed the check-in"},{"key":"created_from","value":"<datestamp>","description":"ISO date the check-in was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the check-in was created \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of created_from"},{"key":"to","value":"<datestamp>","description":"Alias of created_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"longitude\": \"-104.984700\",\n        \"latitude\": \"39.739200\",\n        \"ip\": \"127.0.0.1\",\n        \"notes\": \"Arrived on site.\",\n        \"timezone\": \"America/Denver\",\n        \"checkin_type\": \"1\",\n        \"created_at\": \"2026-02-01 12:31:00\",\n        \"Event\": {\n            \"id\": \"1\",\n            \"title\": \"Surveillance / McFly / Denver, CO\",\n            \"body\": \"Checklist:\\r\\n\\r\\n - Check-in upon arrival\\r\\n - Submit a mid-day update at 12PM\\r\\n - Provide an end-of day summary\\r\\n - Submit daily expenses\\r\\n - Complete surveillance activity log case review\",\n            \"start_at\": \"2026-02-07 13:00:00\",\n            \"end_at\": \"2026-02-07 20:00:00\",\n            \"timezone\": null,\n            \"alert_at\": \"2026-02-06 13:00:00\",\n            \"alert_sent_at\": null,\n            \"is_allday\": false,\n            \"address\": \"{\\\"country\\\":\\\"US\\\",\\\"address_1\\\":\\\"123 Main Street\\\",\\\"address_2\\\":\\\"\\\",\\\"address_3\\\":\\\"\\\",\\\"city\\\":\\\"Hill Valley\\\",\\\"state\\\":\\\"CA\\\",\\\"zip\\\":\\\"95420\\\",\\\"longitude\\\":-117.028324,\\\"latitude\\\":34.89894}\",\n            \"latitude\": \"34.898940\",\n            \"longitude\": \"-117.028324\",\n            \"last_checkin_at\": null,\n            \"created_at\": \"2026-02-02 21:01:36\",\n            \"updated_at\": \"2026-02-02 21:01:36\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"last_name\": \"Lebsack\",\n            \"first_name\": \"Jefferey\",\n            \"email\": \"Mikel_Spinka@example.com\",\n            \"name\": \"Lebsack, Jefferey\",\n            \"proper_name\": \"Jefferey Lebsack\"\n        }\n    }\n]"}],"_postman_id":"b04abd6e-de4a-4d29-b4bc-30d2766ced0d"}],"id":"f1adf080-b379-4da8-9e32-3e18cdcff95f","description":"<p>Check-ins capture periodic timestamps and geolocation data for investigators in the field.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBCcEqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJaaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzc3MDMtVXNpbmctTW9iaWxlLUV2ZW50LUNoZWNrLUlucwY7CFQ6DnNlYXJjaF9pZEkiKTI3YTZmMDViLTAzYTgtNDU1Ny05Y2RmLTk5NTU1MTE3NWYwNQY7CEY6CXJhbmtpBjoLbG9jYWxlSSIKZW4tdXMGOwhUOgpxdWVyeUkiDWNoZWNrLWluBjsIVDoScmVzdWx0c19jb3VudGlG--3f2d5c06bac01a0d04d4f1eefd3f43c037b8538b\">Using Mobile Event Check-Ins</a></p>\n","_postman_id":"f1adf080-b379-4da8-9e32-3e18cdcff95f","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tasks","item":[{"name":"Get a task","id":"86f96049-bc25-4f4d-a2e3-3c429cf06466","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks/:task_id?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks",":task_id"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address object</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[{"description":{"content":"<p>ID of the task</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"task_id"}]}},"response":[{"id":"c1f3b17b-8bf5-4b02-a922-7a6e0eca2cbe","name":"Get a task","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks/:task_id?expand_address=1","host":["/api/v1"],"path":["tasks",":task_id"],"query":[{"key":"expand_address","value":"1","description":"Expand address object"}],"variable":[{"key":"task_id","value":"<integer>","description":"ID of the task"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"3\",\n    \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n    \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n    \"completed_at\": null,\n    \"alert_at\": null,\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"country\": \"US\",\n        \"address_1\": \"4552 Ankunding Knoll\",\n        \"address_2\": \"Apt #929\",\n        \"address_3\": \"\",\n        \"city\": \"Port Tyrel\",\n        \"state\": \"CO\",\n        \"zip\": \"80202\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 16:37:27\",\n    \"updated_at\": \"2026-02-03 16:37:32\",\n    \"task_status\": \"none\",\n    \"due_on\": \"2026-02-21\",\n    \"Calendar\": {\n        \"id\": \"5\",\n        \"name\": \"Desktop Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"3\",\n        \"name\": \"Medical Canvas\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"5\",\n            \"last_name\": \"Parisian\",\n            \"first_name\": \"Rita\",\n            \"email\": \"Hanna.Hettinger45@example.org\",\n            \"name\": \"Parisian, Rita\",\n            \"proper_name\": \"Rita Parisian\"\n        }\n    ]\n}"}],"_postman_id":"86f96049-bc25-4f4d-a2e3-3c429cf06466"},{"name":"List tasks","id":"736825e6-af62-440b-8588-454c2e6c44f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks?expand_address=1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"1"}],"variable":[]}},"response":[{"id":"4d4d4626-099b-4955-88a6-43ccf13c7c51","name":"List tasks","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks?expand_address=1","host":["/api/v1"],"path":["tasks"],"query":[{"key":"expand_address","value":"1","description":"Expand address objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n        \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"4552 Ankunding Knoll\",\n            \"address_2\": \"Apt #929\",\n            \"address_3\": \"\",\n            \"city\": \"Port Tyrel\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:37:27\",\n        \"updated_at\": \"2026-02-03 16:37:32\",\n        \"task_status\": \"none\",\n        \"due_on\": \"2026-02-21\",\n        \"Calendar\": {\n            \"id\": \"5\",\n            \"name\": \"Desktop Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"3\",\n            \"name\": \"Medical Canvas\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"5\",\n                \"last_name\": \"Parisian\",\n                \"first_name\": \"Rita\",\n                \"email\": \"Hanna.Hettinger45@example.org\",\n                \"name\": \"Parisian, Rita\",\n                \"proper_name\": \"Rita Parisian\"\n            }\n        ]\n    }\n]"}],"_postman_id":"736825e6-af62-440b-8588-454c2e6c44f4"},{"name":"Search tasks","id":"7a4429ae-1c9a-42e2-8c3d-761b9a2abebe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tasks?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&due_from=<datestamp>&due_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the task</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Status of the task (enum)</p>\n","type":"text/plain"},"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>"},{"description":{"content":"<p>Title of the task</p>\n","type":"text/plain"},"key":"title","value":"<string>"},{"description":{"content":"<p>ID of the user assigned to the task</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the calendar associated with the task</p>\n","type":"text/plain"},"key":"calendar","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the task</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the case service associated with the task</p>\n","type":"text/plain"},"key":"case_service","value":"<integer>"},{"description":{"content":"<p>ID of the subject associated with the task</p>\n","type":"text/plain"},"key":"subject","value":"<integer>"},{"description":{"content":"<p>ISO date the task is due \"from\"</p>\n","type":"text/plain"},"key":"due_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task is due \"to\"</p>\n","type":"text/plain"},"key":"due_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was created \"from\"</p>\n","type":"text/plain"},"key":"created_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was created \"to\"</p>\n","type":"text/plain"},"key":"created_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was updated \"from\"</p>\n","type":"text/plain"},"key":"updated_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was updated \"to\"</p>\n","type":"text/plain"},"key":"updated_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"from\"</p>\n","type":"text/plain"},"key":"alert_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) is scheduled \"to\"</p>\n","type":"text/plain"},"key":"alert_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"from\"</p>\n","type":"text/plain"},"key":"alert_sent_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the alert (reminder) was sent \"to\"</p>\n","type":"text/plain"},"key":"alert_sent_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was completed \"from\"</p>\n","type":"text/plain"},"key":"completed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the task was completed \"to\"</p>\n","type":"text/plain"},"key":"completed_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of due_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of due_to</p>\n","type":"text/plain"},"key":"to","value":"<datestamp>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"},{"description":{"content":"<p>Expand address objects</p>\n","type":"text/plain"},"key":"expand_address","value":"<boolean>"}],"variable":[]}},"response":[{"id":"39539ab3-cf6c-4fa9-9817-7dd6fb129656","name":"Search tasks","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tasks?id=<integer>&status=<not_started|en_route|in_progress|complete|needs_action>&title=<string>&user=<integer>&calendar=<integer>&case=<integer>&case_service=<integer>&subject=<integer>&due_from=<datestamp>&due_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&alert_from=<datestamp>&alert_to=<datestamp>&alert_sent_from=<datestamp>&alert_sent_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&from=<datestamp>&to=<datestamp>&page=<integer>&expand_address=<boolean>","host":["/api/v1"],"path":["tasks"],"query":[{"key":"id","value":"<integer>","description":"ID of the task"},{"key":"status","value":"<not_started|en_route|in_progress|complete|needs_action>","description":"Status of the task (enum)"},{"key":"title","value":"<string>","description":"Title of the task"},{"key":"user","value":"<integer>","description":"ID of the user assigned to the task"},{"key":"calendar","value":"<integer>","description":"ID of the calendar associated with the task"},{"key":"case","value":"<integer>","description":"ID of the case associated with the task"},{"key":"case_service","value":"<integer>","description":"ID of the case service associated with the task"},{"key":"subject","value":"<integer>","description":"ID of the subject associated with the task"},{"key":"due_from","value":"<datestamp>","description":"ISO date the task is due \"from\""},{"key":"due_to","value":"<datestamp>","description":"ISO date the task is due \"to\""},{"key":"created_from","value":"<datestamp>","description":"ISO date the task was created \"from\""},{"key":"created_to","value":"<datestamp>","description":"ISO date the task was created \"to\""},{"key":"updated_from","value":"<datestamp>","description":"ISO date the task was updated \"from\""},{"key":"updated_to","value":"<datestamp>","description":"ISO date the task was updated \"to\""},{"key":"alert_from","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"from\""},{"key":"alert_to","value":"<datestamp>","description":"ISO date the alert (reminder) is scheduled \"to\""},{"key":"alert_sent_from","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"from\""},{"key":"alert_sent_to","value":"<datestamp>","description":"ISO date the alert (reminder) was sent \"to\""},{"key":"completed_from","value":"<datestamp>","description":"ISO date the task was completed \"from\""},{"key":"completed_to","value":"<datestamp>","description":"ISO date the task was completed \"to\""},{"key":"from","value":"<datestamp>","description":"Alias of due_from"},{"key":"to","value":"<datestamp>","description":"Alias of due_to"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"},{"key":"expand_address","value":"<boolean>","description":"Expand address objects"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"3\",\n        \"title\": \"Medical Canvas / McFly / 10 Facilities\",\n        \"body\": \"Conduct a medical canvas on 10 facilities surrounding the provided address.\",\n        \"completed_at\": null,\n        \"alert_at\": null,\n        \"alert_sent_at\": null,\n        \"is_allday\": false,\n        \"address\": {\n            \"country\": \"US\",\n            \"address_1\": \"4552 Ankunding Knoll\",\n            \"address_2\": \"Apt #929\",\n            \"address_3\": \"\",\n            \"city\": \"Port Tyrel\",\n            \"state\": \"CO\",\n            \"zip\": \"80202\",\n            \"longitude\": -104.987401,\n            \"latitude\": 39.740008\n        },\n        \"latitude\": \"39.740008\",\n        \"longitude\": \"-104.987401\",\n        \"last_checkin_at\": null,\n        \"created_at\": \"2026-02-03 16:37:27\",\n        \"updated_at\": \"2026-02-03 16:37:32\",\n        \"task_status\": \"none\",\n        \"due_on\": \"2026-02-21\",\n        \"Calendar\": {\n            \"id\": \"5\",\n            \"name\": \"Desktop Investigations\"\n        },\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00001WC-01\",\n            \"case_or_request_number\": \"00001WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"CaseService\": {\n            \"id\": \"3\",\n            \"name\": \"Medical Canvas\"\n        },\n        \"Subject\": {\n            \"id\": \"3\",\n            \"name\": \"McFly, Marty Seamus\"\n        },\n        \"Users\": [\n            {\n                \"id\": \"5\",\n                \"last_name\": \"Parisian\",\n                \"first_name\": \"Rita\",\n                \"email\": \"Hanna.Hettinger45@example.org\",\n                \"name\": \"Parisian, Rita\",\n                \"proper_name\": \"Rita Parisian\"\n            }\n        ]\n    }\n]"}],"_postman_id":"7a4429ae-1c9a-42e2-8c3d-761b9a2abebe"},{"name":"Create a task","id":"d2366773-4739-46ab-be60-d0ef68c9e7d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"task\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"due_on\": \"<datestamp>\",\n     \"alert_at\": \"<datestamp>\",\n     \"title\": \"sunt ut explicabo\",\n     \"body\": \"Sint ad omnis occaecati praesentium voluptas similique. Aut commodi recusandae libero enim dolorem. Quaerat possimus similique dolor ea accusamus voluptatem quod quasi.\",\n     \"address\": {\n         \"address_1\": \"40182 Gabe Lodge\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Lake Robbie\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/tasks","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tasks"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"b80b5554-090b-4000-9331-d28579712ee9","name":"Create a task","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"task\": {\n     \"casefile_id\": <integer>,\n     \"subject_id\": <integer>,\n     \"case_service_id\": <integer>,\n     \"calendar_id\": <integer>,\n     \"due_on\": \"<datestamp>\",\n     \"alert_at\": \"<datestamp>\",\n     \"title\": \"eveniet sunt distinctio\",\n     \"body\": \"Et rem eligendi iusto at voluptatem numquam aut. At a quia quo in. Aut ab corrupti voluptatem necessitatibus aut iste. Illum eaque est beatae amet architecto ut hic quam numquam. Sunt praesentium aut cum quia. Nisi eius nisi sequi possimus delectus qui dolores ab.\",\n     \"address\": {\n         \"address_1\": \"039 Renner Centers\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Arthurburgh\",\n         \"state\": \"CO\",\n         \"zip\": 80202,\n         \"country\": \"US\"\n     },\n     \"users_list\": [<integer>,<integer>]\n  }\t\n}      ","options":{"raw":{"language":"json"}}},"url":"/api/v1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"4\",\n    \"title\": \"autem ut quos\",\n    \"body\": \"Deserunt aut repudiandae tempora consequatur voluptatem maxime deleniti non quia. Dignissimos autem blanditiis ullam voluptatum aspernatur perferendis labore. Asperiores quia eius expedita qui officiis doloribus quae consequuntur voluptates. Minima eveniet dolor. Perspiciatis velit eius fugiat corrupti voluptatibus aut blanditiis.\",\n    \"completed_at\": null,\n    \"alert_at\": \"2026-02-10 05:00:00\",\n    \"alert_sent_at\": null,\n    \"is_allday\": false,\n    \"address\": {\n        \"address_1\": \"49699 Nia Loaf\",\n        \"address_2\": \"\",\n        \"address_3\": \"\",\n        \"city\": \"Bartellstad\",\n        \"state\": \"CO\",\n        \"zip\": 80202,\n        \"country\": \"US\",\n        \"longitude\": -104.987401,\n        \"latitude\": 39.740008\n    },\n    \"latitude\": \"39.740008\",\n    \"longitude\": \"-104.987401\",\n    \"last_checkin_at\": null,\n    \"created_at\": \"2026-02-03 17:08:20\",\n    \"updated_at\": \"2026-02-03 17:08:20\",\n    \"task_status\": \"none\",\n    \"due_on\": \"2026-02-10\",\n    \"Calendar\": {\n        \"id\": \"1\",\n        \"name\": \"Field Investigations\"\n    },\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-02-02\",\n        \"is_request\": false,\n        \"case_number\": \"00001WC-01\",\n        \"case_or_request_number\": \"00001WC-01\",\n        \"route_prefix\": \"case\"\n    },\n    \"CaseService\": {\n        \"id\": \"1\",\n        \"name\": \"Surveillance\"\n    },\n    \"Subject\": {\n        \"id\": \"3\",\n        \"name\": \"McFly, Marty Seamus\"\n    },\n    \"Users\": [\n        {\n            \"id\": \"3\",\n            \"last_name\": \"Spade\",\n            \"first_name\": \"Sam\",\n            \"email\": \"example@trackops.com\",\n            \"name\": \"Spade, Sam\",\n            \"proper_name\": \"Sam Spade\"\n        }\n    ]\n}"}],"_postman_id":"d2366773-4739-46ab-be60-d0ef68c9e7d2"}],"id":"e5bf8236-d29d-445c-b71a-6d1f95616b87","description":"<p>Tasks are non-time-specific activites that must be completed before a specific due date.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/search/click?data=BAh7DjoHaWRpBP8DqAw6D2FjY291bnRfaWRpA7skAToJdHlwZUkiDGFydGljbGUGOgZFVDoIdXJsSSJZaHR0cHM6Ly9zdXBwb3J0LnRyYWNrb3BzLmNvbS9oYy9lbi11cy9hcnRpY2xlcy8yMTIzMzc2NjMtQ3JlYXRpbmctYW5kLU1hbmFnaW5nLVRhc2tzBjsIVDoOc2VhcmNoX2lkSSIpOGMzNDM0ZWUtZDhlMi00YmQzLTlhMjgtOTliYTg3MzRhNGZmBjsIRjoJcmFua2kGOgtsb2NhbGVJIgplbi11cwY7CFQ6CnF1ZXJ5SSIKdGFza3MGOwhUOhJyZXN1bHRzX2NvdW50aS8%3D--9075c16eac64d997fe9ad23121eba8e273421267\">Creating and Managing Tasks</a></p>\n","_postman_id":"e5bf8236-d29d-445c-b71a-6d1f95616b87","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}}],"id":"0de518d3-9778-41ad-a65b-95aae44e2f61","description":"<p>Tasks and events (activities) are the desktop and/or field services that are schedueld and performed by staff.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337663-Creating-and-Managing-Tasks\">Creating and Managing Tasks</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/360015365312-Scheduling-Assignments-through-Case-Events\">Scheduling Assignments through Case Events</a>, <a href=\"https://support.trackops.com/hc/en-us/articles/212337603-Scheduling-your-Staff-via-the-Calendar\">Scheduling your Staff via the Calendar</a></p>\n","_postman_id":"0de518d3-9778-41ad-a65b-95aae44e2f61","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}},{"name":"Tracking Categories","item":[{"name":"Get a tracking category","id":"9d234a3b-c0e3-4ab0-beee-9989230470a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories/:tracking_category_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories",":tracking_category_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the tracking category</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"tracking_category_id"}]}},"response":[{"id":"82034a24-45ca-4fbb-a823-b227ca0962e1","name":"Get a tracking category","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tracking_categories/:tracking_category_id","host":["/api/v1"],"path":["tracking_categories",":tracking_category_id"],"variable":[{"key":"tracking_category_id","value":"<integer>","description":"ID of the tracking category"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"id\": \"1\",\n    \"name\": \"Sales territory A\",\n    \"notes\": \"\",\n    \"description\": \"\"\n}"}],"_postman_id":"9d234a3b-c0e3-4ab0-beee-9989230470a6"},{"name":"List tracking categories","id":"43058d1f-e199-4112-aabe-46eb3f6b3e85","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"91e9c5a9-ed9a-438a-8a01-332e07b571f3","name":"List tracking categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\",\n        \"notes\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"43058d1f-e199-4112-aabe-46eb3f6b3e85"},{"name":"Search tracking categories","id":"e6f73827-1626-4681-85ef-449cd8f10993","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"/api/v1/tracking_categories?id=<integer>&name=<string>&page=<integer>","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["tracking_categories"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the tracking category</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>Name of the tracking category</p>\n","type":"text/plain"},"key":"name","value":"<string>"},{"description":{"content":"<p>Up to 100 results will be returned in a single API call</p>\n","type":"text/plain"},"key":"page","value":"<integer>"}],"variable":[]}},"response":[{"id":"eabc4b0d-9158-4922-ac05-0c76d90df890","name":"Search tracking categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"/api/v1/tracking_categories?id=<integer>&name=<string>&page=<integer>","host":["/api/v1"],"path":["tracking_categories"],"query":[{"key":"id","value":"<integer>","description":"ID of the tracking category"},{"key":"name","value":"<string>","description":"Name of the tracking category"},{"key":"page","value":"<integer>","description":"Up to 100 results will be returned in a single API call"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"1\",\n        \"name\": \"Sales territory A\",\n        \"notes\": \"\",\n        \"description\": \"\"\n    }\n]"}],"_postman_id":"e6f73827-1626-4681-85ef-449cd8f10993"}],"id":"6c5ea635-0560-4035-a4b7-1f0dc12291f3","description":"<p>Tracking categories organize expenses and invoices into groups, typically used for tracking cost centers and profitability across organizational units.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/212337903-Customizing-Tracking-Categories\">Customizing Tracking Categories</a></p>\n","_postman_id":"6c5ea635-0560-4035-a4b7-1f0dc12291f3","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]}},"event":[{"listen":"prerequest","script":{"id":"0cfae4e5-af65-49c8-951c-d1da1a6bc4a9","type":"text/javascript","requests":{},"exec":["var date_today = new Date();","pm.collectionVariables.set(\"value_date_today\", date_today.toISOString().split('T')[0]);","","var date_next_week = new Date(Date.now() + 7 * 24 * 60 * 60 * 1000);","pm.collectionVariables.set(\"value_date_future\", date_next_week.toISOString().split('T')[0]);"]}},{"listen":"test","script":{"id":"938e6c8d-43e7-4565-98f3-11cc05e83f23","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"api_base_url","value":"/api/v1","description":"ex: https://{subdomain}.viewcases.com/api/v1"},{"key":"api_username","value":"full_access_username","description":"A valid full access username"},{"key":"api_password","value":"api_token/token","description":"A valid api token appended with /token"},{"key":"access_group_id","value":"<integer>"},{"key":"address_state","value":"<string>","description":"ex: CO (based on country support)\nex: <string> (when unsupported country)"},{"key":"address_zip","value":"<string>","description":"ex: example"},{"key":"calendar_id","value":"<integer>"},{"key":"case_id","value":"<integer>"},{"key":"case_number","value":"<string>","description":"ex: 12345SV-01"},{"key":"case_country","value":"<country-code>","description":"ex: US"},{"key":"case_custom_field_address_id","value":"<integer>"},{"key":"case_custom_field_date_id","value":"<integer>"},{"key":"case_custom_field_input_id","value":"<integer>"},{"key":"case_request_id","value":"<integer>"},{"key":"case_state","value":"<string> | <state-code>","description":"ex: CO (based on country support)\nex: <string> (when unsupported country)"},{"key":"case_status_id","value":"<integer>"},{"key":"case_flag_id","value":"<integer>"},{"key":"case_flag_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"case_region_id","value":"<integer>"},{"key":"case_review_id","value":"<integer>"},{"key":"case_service_id","value":"<integer>"},{"key":"case_service_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"case_type_id","value":"<integer>"},{"key":"case_update_category_id","value":"<integer>"},{"key":"client_id","value":"<integer>"},{"key":"client_location_id","value":"<integer>"},{"key":"client_location_policy_id","value":"<integer>"},{"key":"client_policy_id","value":"<integer>"},{"key":"client_contact_id","value":"<integer>"},{"key":"client_contact_note_id","value":"<integer>"},{"key":"client_contact_policy_id","value":"<integer>"},{"key":"company_location_id","value":"<integer>"},{"key":"address_country","value":"<country-code>","description":"ex: US"},{"key":"employee_id","value":"<integer>"},{"key":"employee_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"employee_manager_id","value":"<integer>"},{"key":"employee_case_manager_id","value":"<integer>"},{"key":"employee_investigator_id","value":"<integer>"},{"key":"employee_investigator_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"employee_role_id","value":"<integer>"},{"key":"employee_salesperson_id","value":"<integer>"},{"key":"employee_short_input_custom_field_id","value":"<integer>"},{"key":"event_id","value":"<integer>"},{"key":"file_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"subject_custom_field_address_id","value":"<integer>"},{"key":"subject_custom_field_checkbox_id","value":"<integer>"},{"key":"subject_custom_field_date_id","value":"<integer>"},{"key":"subject_custom_field_name_id","value":"<integer>"},{"key":"subject_type_id","value":"<integer>"},{"key":"staff_note_id","value":"<integer>"},{"key":"timezone","value":"<timezone>","description":"ex: America/Denver"},{"key":"value_choice_values","value":"[<string>,<string>]","description":"ex: [\"value_1\",\"value_2\"]"},{"key":"value_date_future","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"value_date_past","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"value_date_today","value":"<datestamp>","description":"ex: 2026-01-01"},{"key":"investigator_assign_type_id","value":"<integer>"},{"key":"file_id","value":"<integer>"},{"key":"case_update_id","value":"<integer>"},{"key":"subject_id","value":"<integer>"},{"key":"client_contact_role_id","value":"<integer>"},{"key":"client_note_id","value":"<integer>"},{"key":"invoice_id","value":"<integer>"},{"key":"invoice_payment_id","value":"<integer>"},{"key":"item_code_id","value":"<integer>"},{"key":"license_id","value":"<integer>"},{"key":"payment_method_id","value":"<integer>"},{"key":"referral_source_id","value":"<integer>"},{"key":"event_checkin_id","value":"<integer>"},{"key":"expense_entry_id","value":"<integer>"},{"key":"expense_entry_ids","value":"[<integer>,<integer>]","description":"ex: [1,2]"},{"key":"expense_non_time_item_id","value":"<integer>"},{"key":"expense_time_item_id","value":"<integer>"},{"key":"expense_payment_slip_id","value":"<integer>"},{"key":"expense_payment_slip_payment_id","value":"<integer>"},{"key":"retainer_id","value":"<integer>"},{"key":"retainer_payment_id","value":"<integer>"},{"key":"subject_address_custom_field_id","value":"<integer>"},{"key":"subject_name_custom_field_id","value":"<integer>"},{"key":"subject_birthday_custom_field_id","value":"<integer>"},{"key":"subject_long_input_custom_field_id","value":"<integer>"},{"key":"subject_short_input_custom_field_id","value":"<integer>"},{"key":"task_id","value":"<integer>"},{"key":"tracking_category_id","value":"<integer>"},{"key":"workflow_id","value":"<integer>"},{"key":"client_contact_case_manager_id","value":"<integer>"},{"key":"client_contact_salesperson_id","value":"<integer>"},{"key":"client_contact_custom_field_id","value":"<integer>"}]}