{"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=lavender.htm","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":"garden.m2v"}],"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\": \"e_tailers_quantifying_industrial.mp4v\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Deserunt aut laboriosam animi debitis nesciunt sed non itaque.\"\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\": \"sports_orchestrate.mpg4\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Voluptate ut nesciunt reprehenderit aut atque id beatae blanditiis.\"\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\": \"Schiller - Weber\",\n        \"address_1\": \"2477 Gus Harbor\",\n        \"city\": \"Zechariahberg\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Idell\",\n        \"last_name\": \"Schmitt\",\n        \"email\": \"Armando.Hilll36@hotmail.com\",\n        \"phone_office\": \"682-690-0611\",\n        \"phone_mobile\": \"550-980-0592\",\n        \"phone_fax\": \"896-807-1955\"\n    },\n    \"primary_manager_id\": \"<integer>\",\n    \"primary_salesperson_id\": \"<integer>\",\n    \"reference_value_1\": \"esse sunt ut\",\n    \"reference_value_2\": \"deserunt incidunt minima\",\n    \"reference_value_3\": \"ex id sed\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Duluth\",\n    \"budget_money\": \"770\",\n    \"budget_hours\": \"752\",\n    \"notes\": \"Iusto quis est perferendis sequi eum. Sequi possimus qui recusandae saepe perspiciatis aperiam. Veniam harum et corporis ut non distinctio. Voluptatum natus cumque. Qui optio et nisi tempora veritatis. Omnis facere magni autem at rerum.\",\n    \"scheduling_notes\": \"Libero corporis quo quod.\",\n    \"admin_notes\": \"Voluptas non aut sint quis facilis sed qui tempora.\",\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\": \"Lauretta\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Mayer\"\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\": \"Jacobi and Sons\",\n        \"address_1\": \"25940 Schaden Lakes\",\n        \"city\": \"Amarillo\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Lenora\",\n        \"last_name\": \"Armstrong\",\n        \"email\": \"Lilyan.Kling@hotmail.com\",\n        \"phone_office\": \"601-592-0937\",\n        \"phone_mobile\": \"233-760-9722\",\n        \"phone_fax\": \"557-850-1998\"\n    },\n    \"reference_value_1\": \"adipisci quis modi\",\n    \"reference_value_2\": \"recusandae dolorem at\",\n    \"reference_value_3\": \"velit culpa corporis\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"New Sofiashire\",\n    \"budget_money\": \"491\",\n    \"budget_hours\": \"900\",\n    \"notes\": \"Voluptatum delectus dolores voluptas consectetur quas incidunt at eum voluptatem. Incidunt repellendus veritatis quia. Unde omnis fugit aut qui sunt enim. Deleniti est rerum quibusdam deserunt veniam aut harum fuga porro. Ipsum molestiae recusandae architecto laborum vel soluta qui. Animi magnam voluptatem magni est.\",\n    \"scheduling_notes\": \"Natus velit quia et occaecati doloremque provident at.\",\n    \"admin_notes\": \"Atque veritatis molestiae.\",\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\": \"Casper\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Fay\"\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\": \"Daugherty Inc\",\n        \"address_1\": \"6737 Bergstrom Extension\",\n        \"city\": \"Imeldaberg\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Kane\",\n        \"last_name\": \"Bode\",\n        \"email\": \"Demetrius.DAmore@gmail.com\",\n        \"phone_office\": \"573-528-4496\",\n        \"phone_mobile\": \"391-735-9080\",\n        \"phone_fax\": \"792-931-5001\"\n    },\n    \"reference_value_1\": \"voluptas eveniet natus\",\n    \"reference_value_2\": \"ullam ducimus dolor\",\n    \"reference_value_3\": \"aspernatur dignissimos tempora\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"West Romaineburgh\",\n    \"notes\": \"Modi provident sint dolor dolores mollitia voluptatem quasi. Sequi eum ea dolore. Tenetur ipsa natus facere. A voluptatum voluptate dolor. Et mollitia sapiente iure.\",\n    \"scheduling_notes\": \"Molestiae et laboriosam.\",\n    \"admin_notes\": \"Aut vero reiciendis eaque perferendis dolorem voluptatibus impedit quae tempore.\",\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\": \"Erdman - Kautzer\",\n        \"address_1\": \"22054 Pfannerstill Inlet\",\n        \"city\": \"New Daletown\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Jacey\",\n        \"last_name\": \"O'Conner\",\n        \"email\": \"Janessa_Volkman44@yahoo.com\",\n        \"phone_office\": \"800-220-4441\",\n        \"phone_mobile\": \"453-260-9531\",\n        \"phone_fax\": \"723-993-2481\"\n    },\n    \"reference_value_1\": \"qui veritatis dolorum\",\n    \"reference_value_2\": \"pariatur quia quos\",\n    \"reference_value_3\": \"corrupti minus ut\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Herminiaborough\",\n    \"notes\": \"Facere voluptatem adipisci aut. Eveniet itaque aliquid corporis sit consequatur iure nostrum. Sit cupiditate non asperiores aliquid et iusto. Accusamus in debitis ea deleniti nobis dolor dolores id esse. Quis et ab quis.\",\n    \"scheduling_notes\": \"Beatae nulla ducimus.\",\n    \"admin_notes\": \"Odit iure aut.\",\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\": \"et laudantium illo\",\n        \"body\": \"Quasi tempore quasi provident quis quae. Ea impedit sed consequuntur officia. Facere accusamus saepe rerum et. Debitis sint natus sapiente recusandae cupiditate sed et enim minima. Maxime nam aut enim ducimus sint quaerat. Qui delectus est ratione.\",\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\": \"natus tempore et\",\n        \"body\": \"Deserunt rem rerum velit dolorem provident in in consectetur nemo. Non dignissimos placeat enim. Voluptas autem in ut incidunt.\",\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\": \"maxime architecto et\",\n        \"body\": \"Autem et itaque consequatur nobis. Sed dolorem tempore ex temporibus aut. Beatae quo voluptatum adipisci vero autem modi consequatur. Repudiandae in impedit vel incidunt atque odio et. Aut nisi dolorem soluta assumenda qui quas placeat velit.\",\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\": \"eveniet repudiandae consequatur\",\n        \"body\": \"Necessitatibus qui nihil. Aut velit soluta voluptatem at. Incidunt soluta excepturi numquam non consequuntur.\",\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\": \"vel est ipsam\",\n        \"body\": \"Dolores vel eius voluptas enim cumque odit possimus sit alias. Numquam ut assumenda qui maxime voluptatem. Esse porro doloremque soluta. Reiciendis corporis et magnam sunt officiis eum qui cum. Officia voluptatum voluptatem officiis temporibus numquam ab amet explicabo doloremque.\",\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<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Assign Type</strong></th>\n<th><strong>Assign Type ID</strong></th>\n<th><strong>Can Be Primary?</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Investigator</td>\n<td>1</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Case Manager</td>\n<td>3</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Client Contact</td>\n<td>4</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Salesperson</td>\n<td>5</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td>Affiliate Contact</td>\n<td>2</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Additional Employee</td>\n<td>6</td>\n<td>No</td>\n</tr>\n<tr>\n<td>Vendor Contact</td>\n<td>7</td>\n<td>No</td>\n</tr>\n</tbody>\n</table>\n</div><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=fuchsia.wav","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":"driver.mpg4"}],"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\": \"neural.gif\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Nesciunt similique magnam fugiat.\"\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\": \"Molestias deserunt qui vel eius cum.\"\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\": \"atque est neque\",\n      \"reference_value_2\": \"eos aut et\",\n      \"reference_value_3\": \"ea enim molestias\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"North Nadiaborough\",\n      \"budget_money\": \"739\",\n      \"budget_hours\": \"615\",\n      \"notes\": \"Repellendus qui voluptatem perferendis voluptatem fugit necessitatibus dolor commodi pariatur. Vitae excepturi est qui consectetur repellat non magni. Tempora quis reprehenderit quo error deserunt quibusdam consequatur iure. Quia earum voluptatem molestias voluptates. Aut magni minima nemo et omnis est. Officia quia soluta.\",\n      \"scheduling_notes\": \"Voluptatum dolorum est illum.}\",\n      \"admin_notes\": \"Dolores quo impedit sit autem aut.\",\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\": \"Shawna\",\n                    \"middle_name\": \"Chaim\",\n                    \"last_name\": \"Goldner\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Qui omnis dolores nisi ea ullam adipisci at voluptate.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Ea sit fugit sapiente dolore consequatur. Repellendus consequatur nesciunt. Voluptatem voluptatem fugit dolorem at ab reiciendis omnis impedit et. Officia labore fuga quae sunt odio commodi. Quae totam mollitia dicta consequatur non reprehenderit non consectetur perferendis. Quam fugit vel aut fugiat reiciendis officia.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"42985 Neil Spurs\",\n                    \"address_2\": \"Apt #603\",\n                    \"address_3\": \"\",\n                    \"city\": \"Schadenchester\",\n                    \"state\": \"<string>\",\n                    \"zip\": \"<string>\",\n                    \"country\": \"<country-code>\"\n                    }\n                }\n            ]\n        }\n  \t]\n  },\n  \"notifications\": true\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\": \"iste unde non\",\n      \"reference_value_2\": \"temporibus molestias rerum\",\n      \"reference_value_3\": \"eligendi dolore voluptatum\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"East Alfonsoland\",\n      \"budget_money\": \"789\",\n      \"budget_hours\": \"574\",\n      \"notes\": \"Natus excepturi asperiores quisquam illo omnis alias. Doloremque necessitatibus consectetur et magnam ullam. Nihil eum doloribus ea quas.\",\n      \"scheduling_notes\": \"Natus illum sequi fuga beatae itaque accusantium exercitationem unde quae.}\",\n      \"admin_notes\": \"Eum officia tempora nulla voluptatibus.\",\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\": \"Melyna\",\n                    \"middle_name\": \"Victor\",\n                    \"last_name\": \"Kovacek\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Odit quos aliquid.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Consequatur ut ut est cumque. Odit modi est. Consequatur est praesentium temporibus voluptatem quisquam dicta autem. Enim dolore quia et aut consectetur autem itaque omnis. Magni quia at id. Cupiditate occaecati iusto dolorem est ea.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"742 Shirley Squares\",\n                    \"address_2\": \"Apt #573\",\n                    \"address_3\": \"\",\n                    \"city\": \"New Tressie\",\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\": \"consequatur velit et\",\n      \"reference_value_2\": \"dolorum eos sunt\",\n      \"reference_value_3\": \"excepturi qui explicabo\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"East Johannatown\",\n      \"budget_money\": \"140\",\n      \"budget_hours\": \"90\",\n      \"notes\": \"Molestiae autem modi reprehenderit occaecati perspiciatis autem hic. Enim ut rerum et fuga dolorem repellendus ea. Animi qui et quas ratione excepturi nihil voluptatum. Iste qui sunt saepe. At omnis omnis sed harum vel deleniti. Qui et minus deleniti.\",\n      \"scheduling_notes\": \"Dolore fuga illum saepe.}\",\n      \"admin_notes\": \"Fuga et repudiandae eaque.\",\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\": \"dignissimos sunt et\"\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\": \"Jordane\",\n                    \"middle_name\": \"Cleora\",\n                    \"last_name\": \"Osinski\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Deleniti sed et.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Vitae dolor provident. Modi quia ut officia non. In eos aut voluptates suscipit sed. Aut sit nobis quia cum et. Qui illum velit aut. Nihil sunt ut minima repellat sed velit vel odio aut.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"7404 Purdy Spring\",\n                    \"address_2\": \"Apt #515\",\n                    \"address_3\": \"\",\n                    \"city\": \"Clarkmouth\",\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\": \"recusandae tenetur temporibus\",\n    \"reference_value_2\": \"asperiores expedita architecto\",\n    \"reference_value_3\": \"officiis nihil vel\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Yucaipa\",\n    \"notes\": \"Fugiat dignissimos sed et cum. Autem nam aut unde iste voluptas occaecati. Totam enim at voluptatum qui voluptatem veniam est eos harum. Mollitia eaque esse voluptas quo vero quo. Sit vel ad sit eos. Nobis in cumque tempora iure et.\",\n    \"scheduling_notes\": \"Deserunt voluptatem voluptas porro ipsa amet laboriosam facilis quidem.}\",\n    \"admin_notes\": \"Numquam id ipsum soluta delectus magni sed omnis architecto non.\",\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\": \"nihil similique dignissimos\",\n    \"reference_value_2\": \"assumenda dignissimos animi\",\n    \"reference_value_3\": \"earum explicabo sed\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"East Audiebury\",\n    \"notes\": \"Tenetur consequatur nihil molestias vel impedit. Atque quo dolorum dolor hic qui perspiciatis. Autem non cumque quae et.\",\n    \"scheduling_notes\": \"Eveniet rerum reiciendis at voluptatem.}\",\n    \"admin_notes\": \"Aut natus quia blanditiis nemo deleniti qui.\",\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\": \"Veritatis est quam veniam impedit iste. Et saepe explicabo quia et nobis est mollitia. Sit autem quos et provident voluptatem consectetur eum soluta. Est qui optio consequuntur. Eius quibusdam facilis quia velit esse aut culpa numquam.\",\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\": \"Molestiae dolor vel minus nobis inventore neque tempore suscipit. Qui veritatis magnam ut delectus. Sint voluptatibus pariatur autem eos nam tempora consequatur tempora.\",\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\": \"Aniya\",\n     \"middle_name\": \"Jaclyn\",\n     \"last_name\": \"Donnelly\",\n     \"title\": \"Dynamic Creative Manager\",\n     \"email\": \"Joseph.Denesik@example.net\",\n     \"phone_home\": \"545-962-3741\",\n     \"phone_mobile\": \"281-245-0320\",\n     \"phone_office\": \"207-400-8014 33-350-922-4113\",\n     \"phone_fax\": \"790-280-2078\",\n     \"address_1\": \"24438 Dicki Freeway\",\n     \"address_2\": \"STE 394\",\n     \"address_3\": \"\",\n     \"city\": \"Blickfurt\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"ratione-quo-accusamus\",\n     \"notes\": \"Recusandae dolorem dolor optio est suscipit in. Illum modi exercitationem ratione aspernatur impedit dignissimos itaque voluptatem.\",\n     \"admin_notes\": \"Nobis tempora non amet atque saepe sint saepe. Debitis aut ullam magnam omnis libero natus dolor. Vitae libero nesciunt eaque qui asperiores ex. Laborum iusto possimus suscipit natus ut culpa neque doloremque.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"ullam\"\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\": \"Vella\",\n     \"middle_name\": \"Coralie\",\n     \"last_name\": \"Treutel\",\n     \"title\": \"Product Implementation Coordinator\",\n     \"email\": \"Arturo_Senger17@example.net\",\n     \"phone_home\": \"249-320-8938\",\n     \"phone_mobile\": \"376-699-8405\",\n     \"phone_office\": \"682-950-2276 25-377-528-1790\",\n     \"phone_fax\": \"942-223-7376\",\n     \"address_1\": \"017 Wuckert Valley\",\n     \"address_2\": \"STE 55\",\n     \"address_3\": \"\",\n     \"city\": \"Petaluma\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"est-reiciendis-nihil\",\n     \"notes\": \"Eum quasi sit non fugit ea. Quia mollitia ut officia laborum ut quia deleniti animi. Atque nihil est provident. Et est inventore sit saepe quasi et dolorum enim.\",\n     \"admin_notes\": \"Veritatis ex eos voluptate eius veniam accusamus culpa. Numquam voluptas eos voluptatum. Nemo et rerum labore. Ut qui qui eius impedit animi veritatis accusamus. Qui qui voluptas aut deleniti. Sunt ut provident aut.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quis\"\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\": \"Jamir\",\n     \"middle_name\": \"Forest\",\n     \"last_name\": \"Ledner\",\n     \"title\": \"Dynamic Branding Orchestrator\",\n     \"email\": \"Matilde_OReilly78@example.net\",\n     \"phone_home\": \"244-313-6008\",\n     \"phone_mobile\": \"657-545-6025\",\n     \"phone_office\": \"566-982-8427 9-968-680-6554\",\n     \"phone_fax\": \"483-291-5687\",\n     \"address_1\": \"0771 Greg Meadows\",\n     \"address_2\": \"STE 85\",\n     \"address_3\": \"\",\n     \"city\": \"Galveston\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"ducimus-et-rerum\",\n     \"notes\": \"Quo ipsum rerum dolorum molestiae commodi rerum in facere aut. Aperiam aliquid quam doloremque ducimus corrupti ipsa. Asperiores explicabo sed consectetur praesentium consequatur aut deleniti. Dolorem cumque velit voluptas maxime recusandae deserunt perspiciatis. Minima qui et ut. In id deserunt nihil beatae veniam vel quo recusandae sapiente.\",\n     \"admin_notes\": \"Provident sit repellendus a ab error. Provident sint odit non sunt quasi laboriosam. Aut accusantium sed magni ex labore quaerat quia quia laboriosam. A autem fuga non laborum laboriosam earum occaecati accusantium. Ad facilis perferendis et et et veniam voluptatem debitis iure. Quo voluptatem quo voluptatibus eos id aliquam.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quo dolore ad\"\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\": \"Liliane\",\n     \"middle_name\": \"Monica\",\n     \"last_name\": \"Cormier\",\n     \"title\": \"Human Brand Specialist\",\n     \"email\": \"Vergie.Cassin58@example.org\",\n     \"phone_home\": \"726-951-6114\",\n     \"phone_mobile\": \"381-552-1952\",\n     \"phone_office\": \"370-386-1401 4-805-706-9515\",\n     \"phone_fax\": \"667-334-0571\",\n     \"address_1\": \"4090 Boyle Tunnel\",\n     \"address_2\": \"STE 670\",\n     \"address_3\": \"\",\n     \"city\": \"Burnsville\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"est-aliquid-natus\",\n     \"notes\": \"Sed sed minus ab doloribus. Velit blanditiis ipsa amet vel sit. Perspiciatis itaque corrupti eum et nemo ullam ea. Voluptatem odit voluptate. Repudiandae sequi commodi quia qui voluptatem doloribus similique. Error ut laboriosam.\",\n     \"admin_notes\": \"Est nihil quos. In ut omnis quae sed qui eos reiciendis distinctio quos. Qui amet eos autem sed optio necessitatibus quia quia minus. Temporibus voluptatum soluta fugiat veniam officiis consectetur magni consectetur.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"eum dolorem magnam\"\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\": \"New Brett Office\",\n    \"email_invoice\": \"Libby_Prohaska36@example.net\",\n    \"phone_primary\": \"235-245-3355\",\n    \"phone_secondary\": \"788-559-7162\",\n    \"phone_fax\": \"241-256-8392\",\n    \"address_1\": \"68326 Annamarie River\",\n    \"address_2\": \"STE 325\",\n    \"address_3\": \"\",\n    \"city\": \"North Mayraport\",\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\": \"East Jeffry Office\",\n    \"email_invoice\": \"Margret.Buckridge63@example.com\",\n    \"phone_primary\": \"448-516-5742\",\n    \"phone_secondary\": \"387-566-7339\",\n    \"phone_fax\": \"795-280-6915\",\n    \"address_1\": \"895 Dickinson Fords\",\n    \"address_2\": \"STE 978\",\n    \"address_3\": \"\",\n    \"city\": \"Luettgenchester\",\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\": \"Ritchiechester Office\",\n    \"email_invoice\": \"Otho_Little@example.net\",\n    \"phone_primary\": \"827-689-1146\",\n    \"phone_secondary\": \"995-268-0000\",\n    \"phone_fax\": \"444-298-1326\",\n    \"address_1\": \"5069 Jessica Cove\",\n    \"address_2\": \"STE 451\",\n    \"city\": \"Indio\",\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\": \"North Simeonport Office\",\n    \"email_invoice\": \"Tate34@example.net\",\n    \"phone_primary\": \"824-898-6883\",\n    \"phone_secondary\": \"800-829-5036\",\n    \"phone_fax\": \"507-308-8715\",\n    \"address_1\": \"276 Skiles Views\",\n    \"address_2\": \"STE 702\",\n    \"city\": \"East Antonietta\",\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\": \"Facere dolorem iste. A doloribus velit iste omnis occaecati ad totam ab culpa. Odit id in non veniam reiciendis temporibus. Pariatur et nostrum dicta porro et et. Qui quam repellendus ad.\",\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\": \"Hic veniam dolore et laborum. Explicabo consequatur fugiat accusantium non amet sunt voluptatem quisquam provident. Et sunt omnis repellat. Quaerat molestias magnam id. Sapiente corporis expedita et odit consequuntur id id odio.\",\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\": \"Stokes, Casper and Ritchie\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"https://alexys.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Neque aliquid molestiae consequatur. Quos facilis aut cumque eligendi culpa et non. Suscipit soluta earum. Rem iusto omnis non sint non. Sint est voluptatem. Qui a numquam ut in nobis sed ut.\",\n    \"primary_location\": {\n      \"name\": \"Euclid Location\",\n      \"email_invoice\": \"Eugene53@example.net\",\n      \"phone_primary\": \"239-606-6424\",\n      \"phone_secondary\": \"720-868-0092\",\n      \"phone_fax\": \"813-890-4629\",\n      \"address_1\": \"81058 Elza Village\",\n      \"address_2\": \"STE 315\",\n      \"city\": \"Noreneshire\",\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\": \"Smith and Sons\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"https://lauryn.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Consequatur autem qui. Voluptatem voluptatem velit natus aut repellendus dolores quia et repudiandae. Quaerat et et voluptatem nisi sint nemo illum labore sit. Necessitatibus minus repellat sapiente aut voluptatem vitae tempora quia perferendis. Autem aut qui ut numquam eveniet consequatur.\",\n    \"primary_location\": {\n      \"name\": \"Kutchview Location\",\n      \"email_invoice\": \"Darrell_Tromp@example.net\",\n      \"phone_primary\": \"867-461-6803\",\n      \"phone_secondary\": \"916-856-5253\",\n      \"phone_fax\": \"328-690-3756\",\n      \"address_1\": \"5945 Hansen Dam\",\n      \"address_2\": \"STE 77\",\n      \"city\": \"East Aracely\",\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\": \"Anderson Group Location\",\n    \"website\": \"http://hunter.com\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Est facere et qui nostrum vel quasi deleniti. Impedit inventore fuga aut numquam mollitia voluptate tempore ut. Dolores nam et quia. Atque facere voluptas odio nemo incidunt doloribus mollitia.\"\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\": \"Conroy and Sons Location\",\n    \"website\": \"https://raul.biz\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Illo est unde quidem repellendus. Perferendis quia atque ut est tempora voluptas animi similique vel. Ipsam aut similique aut. Voluptatem voluptate voluptatem voluptas recusandae sunt quaerat et fuga. Omnis accusamus quis et praesentium adipisci reprehenderit neque sint est. Ut consequatur distinctio quia asperiores ad.\"\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\": \"Illo officia ut. Non qui ratione perferendis laboriosam debitis impedit iusto ut vel. Recusandae accusamus quia. Soluta quia cum dolorem sapiente consectetur autem maxime. Laboriosam ut et vel deserunt consequuntur in deserunt voluptatem. Numquam voluptatem quis sequi quo dolores voluptatum et qui facere.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"953.41\",\n            \"quantity\": \"92\",\n            \"notes\": \"Quod voluptatem sit maxime vel repellat similique sed.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"540.56\",\n            \"quantity\": \"882\",\n            \"notes\": \"Officiis iusto error nemo.\"\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\": \"Sit rem officia aliquid in nulla quia ullam. Molestiae ut cupiditate ipsam est sunt. Aut non laboriosam qui et nostrum perferendis. Est excepturi quos ut. Necessitatibus rerum consequatur ut aliquam sunt esse voluptas quo. Provident impedit in quaerat id et.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"207.51\",\n            \"quantity\": \"632\",\n            \"notes\": \"Quos alias iure aut ab.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"422.69\",\n            \"quantity\": \"52\",\n            \"notes\": \"Amet fugiat sint consequatur quo quos repudiandae 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\": \"Similique delectus nam asperiores consequuntur qui. Optio voluptatem vel voluptatem sunt vel ad. Expedita vel nemo laborum reprehenderit nihil. Vero voluptas in non voluptas dolores corrupti dolorem dolor corrupti. Voluptatem soluta reiciendis alias blanditiis pariatur molestias quia. Libero quod nemo inventore enim magnam dolores ea ducimus qui.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"48.57\",\n            \"quantity\": \"54\",\n            \"notes\": \"Aut error et laborum ut ea magnam numquam.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"873.53\",\n            \"quantity\": \"173\",\n            \"notes\": \"Excepturi itaque minima inventore.\"\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\": \"Voluptate pariatur odio quam non porro earum hic. Nihil quia tenetur et repellendus blanditiis quibusdam qui autem. Laudantium odit ipsum a voluptatum laboriosam similique.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"334.82\",\n            \"quantity\": \"90\",\n            \"notes\": \"Sed numquam id aut iste ad.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"877.97\",\n            \"quantity\": \"535\",\n            \"notes\": \"Quo molestias sit cupiditate.\"\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\": \"773.13\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"esse-et-aperiam\",\n    \"notes\": \"fugit temporibus neque\"\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\": \"16.16\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"facere-voluptatibus-voluptas\",\n    \"notes\": \"cum placeat sapiente\"\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\": \"108.27\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"quis-tempora-omnis\",\n    \"notes\": \"et aut saepe\"\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\": \"276.49\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"qui-reprehenderit-maxime\",\n    \"notes\": \"qui laboriosam natus\"\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\": \"621\",\n    \"reference_number\": \"93f9a39c-a60f-4243-bdfe-ce2d01357d0e\",\n    \"notes\": \"Excepturi et neque laudantium eos tenetur et iusto accusantium omnis.\"\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\": \"537\",\n    \"reference_number\": \"9ef804e7-9d7a-4524-947b-11db3e3da9ac\",\n    \"notes\": \"Magni numquam fugiat earum aut totam.\"\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\": \"DuBuqueborough License\",\n     \"license\": \"b68fb3d1-04b3-4d08-9b48-d75214d3790f\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Exercitationem est fugit. Et corrupti iste. Velit ut voluptates ipsum culpa eos omnis aut ut. Odit at quo. Ipsum repudiandae facere eaque vel asperiores.\",\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\": \"North Floy License\",\n     \"license\": \"b390d503-8bd8-44f2-8faf-3a41d63fc2c7\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Quia in consequatur quis in minima ut. Eligendi ipsum voluptatem. Dignissimos ut quo nihil.\",\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\": \"New Maximo License\",\n     \"license\": \"ad217ee6-fa18-4802-a376-d5e919a6a57a\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Ipsam architecto sit veniam soluta cupiditate deserunt asperiores ratione totam. Officia in repellendus suscipit beatae. Harum sint quaerat voluptate est tempore ea.\",\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\": \"West Mavis License\",\n     \"license\": \"2f068755-aa3b-4399-bbad-74b776d277b4\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Debitis incidunt facere et facilis commodi quibusdam iusto sed. Error nesciunt laborum ut. Tenetur dolores autem voluptatem laboriosam eveniet magni autem vel. Dolorum maxime quos accusamus repudiandae. Quas temporibus quos nobis quis et et quaerat blanditiis. Quia qui ex pariatur.\",\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\": \"Zack\",\n     \"middle_name\": \"Damien\",\n     \"last_name\": \"Mertz\",\n     \"title\": \"Dynamic Division Liaison\",\n     \"email\": \"Gaylord56@example.org\",\n     \"phone_home\": \"672-331-2927\",\n     \"phone_mobile\": \"497-356-8492\",\n     \"phone_office\": \"972-763-5618 x773\",\n     \"phone_fax\": \"352-893-5308\",\n     \"address_1\": \"63018 Kris Points\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Bernardmouth\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"perspiciatis-voluptatem-corrupti\",\n     \"notes\": \"Harum id dolor vel et. Omnis numquam exercitationem eligendi ratione recusandae rerum. Ea nihil fugit quidem illum expedita facere sit veritatis voluptas. Est est quam maxime voluptas sed fuga eius quia laborum.\",\n     \"admin_notes\": \"Sunt voluptatem eum corrupti nesciunt. Corporis maiores atque corrupti assumenda perferendis et.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"ipsa\"\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\": \"Dock\",\n     \"middle_name\": \"Dewitt\",\n     \"last_name\": \"Tillman\",\n     \"title\": \"Chief Group Producer\",\n     \"email\": \"Rocio_Will90@example.net\",\n     \"phone_home\": \"819-255-5591\",\n     \"phone_mobile\": \"724-716-7801\",\n     \"phone_office\": \"255-429-6588 x460\",\n     \"phone_fax\": \"959-796-5828\",\n     \"address_1\": \"6106 Alexandre Cape\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"New Ola\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"tempora-molestias-et\",\n     \"notes\": \"Quia ducimus ab suscipit. Cupiditate aut sint. Suscipit illum qui nisi nihil nisi natus itaque voluptas voluptatem. Distinctio at vero perferendis. Vel quibusdam incidunt quod a iusto unde veniam aperiam. In molestias quisquam et aut distinctio.\",\n     \"admin_notes\": \"Magnam sapiente nihil dolorem quia eum dolores fugiat qui aut. Sit reprehenderit cupiditate dicta excepturi.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"earum\"\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\": \"Anya\",\n     \"middle_name\": \"Peggie\",\n     \"last_name\": \"Yundt\",\n     \"title\": \"Direct Implementation Liaison\",\n     \"email\": \"Zachary.Cummings22@example.net\",\n     \"phone_home\": \"744-207-1068\",\n     \"phone_mobile\": \"899-344-8057\",\n     \"phone_office\": \"303-414-0805 x242\",\n     \"phone_fax\": \"712-809-7324\",\n     \"address_1\": \"56733 Christelle Rest\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Sethshire\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"quia-alias-voluptas\",\n     \"notes\": \"Omnis dolor voluptatem. Voluptatem ratione dolorem ex id fuga magni magnam maiores ut. Optio nulla vel occaecati hic.\",\n     \"admin_notes\": \"Est dolor provident et tempora expedita et consequatur. Adipisci aut est ea animi. Rem quidem voluptatem est unde est cum quidem nobis. Voluptate dignissimos ipsa iure blanditiis sit error.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"dolorem\"\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\": \"Katelyn\",\n     \"middle_name\": \"Shemar\",\n     \"last_name\": \"Goyette\",\n     \"title\": \"District Paradigm Orchestrator\",\n     \"email\": \"Juanita_Gleichner41@example.org\",\n     \"phone_home\": \"405-300-7323\",\n     \"phone_mobile\": \"303-374-9263\",\n     \"phone_office\": \"467-888-2690 x538\",\n     \"phone_fax\": \"705-763-3241\",\n     \"address_1\": \"507 Sally Drive\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Harmonland\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"veniam-eligendi-nemo\",\n     \"notes\": \"Consequatur nihil cum esse. Omnis accusamus beatae. Molestiae mollitia cum quae deserunt dignissimos molestiae quibusdam earum similique.\",\n     \"admin_notes\": \"Explicabo est facere. Harum dolores et consequatur dolor. Eaque minus temporibus non nemo ex molestiae aliquid eum eligendi. Pariatur in nemo possimus assumenda.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"laboriosam\"\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\": \"Magni voluptatem cum natus incidunt ea natus et qui sit. Voluptatibus veritatis et dignissimos excepturi dolor. Voluptatem vitae amet. Sit impedit sint ducimus ut enim ut. Voluptatem alias nisi cum expedita et.\",\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\": \"Sunt dolores ut aut. Harum tempore et omnis. Magnam recusandae enim et qui. Molestiae odit voluptatem aut nihil reiciendis necessitatibus. Laboriosam repudiandae cupiditate nobis sunt cumque eos ab ipsam.\",\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\": \"694.70\" \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\": \"617.49\" \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\": \"Justice\",\n          \"middle_name\": \"Lorna\",\n          \"last_name\": \"Cassin\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Perspiciatis repellat sapiente odio repellendus quo qui.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Vero qui et. Eaque magnam quis non commodi dolorem iusto. Ut qui enim eius consequuntur.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"65808 Ferry Prairie\",\n          \"address_2\": \"Apt #866\",\n          \"address_3\": \"\",\n          \"city\": \"Quigleyfort\",\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\": \"Domenick\",\n          \"middle_name\": \"Arvilla\",\n          \"last_name\": \"Nicolas\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Dolorum vel temporibus aut dolores.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Quae maiores ea explicabo beatae velit inventore vitae possimus est. Iure ipsa quas exercitationem nulla ratione dolorem aliquam ut.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"9739 Clinton Union\",\n          \"address_2\": \"Apt #38\",\n          \"address_3\": \"\",\n          \"city\": \"Leannonborough\",\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\": \"Amina\",\n          \"middle_name\": \"Cicero\",\n          \"last_name\": \"Auer\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Deleniti modi odit itaque et facere aperiam. Maiores aut rem consectetur.\"\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\": \"Rachael\",\n          \"middle_name\": \"Petra\",\n          \"last_name\": \"Rolfson\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Suscipit itaque dolore sit aut doloremque nihil commodi nam est. Et deleniti numquam et corporis quia quis ut cum possimus. Alias velit voluptatem sunt facilis velit perferendis corporis adipisci perferendis. Ullam velit reprehenderit. Impedit itaque repellendus est.\"\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\": \"sunt est soluta\",\n     \"body\": \"Quos ut id accusamus id est ut excepturi ipsum. Commodi quisquam architecto a tempora dolore qui in nostrum voluptatem. Ut debitis consequatur itaque. Maiores quibusdam quos voluptas veritatis quam eius exercitationem ducimus et. Nisi possimus nulla possimus aut vel ut ut sed.\",\n     \"address\": {\n         \"address_1\": \"86567 Jacobs Springs\",\n         \"address_2\": \"STE 919\",\n         \"address_3\": \"\",\n         \"city\": \"Daremouth\",\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\": \"aut voluptatem accusamus\",\n     \"body\": \"Nemo magni repellendus excepturi nam qui pariatur delectus incidunt dolores. Et quia qui consequuntur quae. Rerum omnis labore tenetur.\",\n     \"address\": {\n         \"address_1\": \"8012 Yundt Camp\",\n         \"address_2\": \"STE 537\",\n         \"address_3\": \"\",\n         \"city\": \"West Coleman\",\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\": \"in porro quia\",\n     \"body\": \"Et delectus voluptate eveniet id voluptatum consectetur a nisi cupiditate. In repudiandae et iusto possimus. Est eos optio eum.\",\n     \"address\": {\n         \"address_1\": \"4983 Willie Underpass\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"North Jeffreyshire\",\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\": \"repudiandae tenetur at\",\n     \"body\": \"Non laboriosam autem consequatur nisi magni. Incidunt velit enim commodi voluptas et. Aut eaque rerum. Facere a voluptas ullam sit quasi. Ad quaerat molestias quo aut adipisci quis rem.\",\n     \"address\": {\n         \"address_1\": \"59881 Muller Curve\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Allen\",\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>"}]}