{"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":"Budget Details","item":[{"name":"Get a budget detail","id":"f108c962-184e-44a0-a749-aeca5a2a3d6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/budget_details/: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":["budget_details",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the budget detail</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"f46450a5-b61e-426f-ad7e-6cc906c92604","name":"Get a budget detail","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/budget_details/:id","host":["/api/v1"],"path":["budget_details",":id"],"variable":[{"key":"id","value":"<integer>","description":"ID of the budget detail"}]}},"status":"OK","code":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    \"added_on\": \"2026-02-02\",\n    \"amount_money\": \"1000.00\",\n    \"amount_hours\": \"24.00\",\n    \"notes\": \"Initial budget\",\n    \"created_at\": \"2026-02-02 20:49:48\",\n    \"updated_at\": \"2026-02-02 20:49:48\",\n    \"Casefile\": {\n        \"id\": \"3\",\n        \"series_number\": \"1\",\n        \"case_type_tag\": \"WC\",\n        \"case_state\": \"CO\",\n        \"series_instance\": \"1\",\n        \"created_on\": \"2026-03-31\",\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\": \"1\",\n        \"account_code\": \"qui-quia-provident\",\n        \"first_name\": \"Cortez\",\n        \"last_name\": \"Cormier\",\n        \"email\": \"Ezequiel.Stroman11@example.org\",\n        \"name\": \"Cormier, Cortez\",\n        \"proper_name\": \"Cortez Cormier\"\n    }\n}"}],"_postman_id":"f108c962-184e-44a0-a749-aeca5a2a3d6e"},{"name":"List budget details","id":"105413d5-00d5-405c-99a9-5ca3f863ea22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/budget_details","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["budget_details"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"f9964eac-955d-4bd1-b36e-849b78b3bc0b","name":"List budget details","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/budget_details"},"status":"OK","code":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\": \"15\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"154.00\",\n        \"amount_hours\": \"197.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:31:06\",\n        \"updated_at\": \"2026-06-23 17:31:06\",\n        \"Casefile\": {\n            \"id\": \"19\",\n            \"series_number\": \"12\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00012WC-01\",\n            \"case_or_request_number\": \"00012WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"325.00\",\n        \"amount_hours\": \"671.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:29:30\",\n        \"updated_at\": \"2026-06-23 17:29:30\",\n        \"Casefile\": {\n            \"id\": \"18\",\n            \"series_number\": \"11\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00011WC-01\",\n            \"case_or_request_number\": \"00011WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"13\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"278.00\",\n        \"amount_hours\": \"331.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:28:23\",\n        \"updated_at\": \"2026-06-23 17:28:23\",\n        \"Casefile\": {\n            \"id\": \"17\",\n            \"series_number\": \"10\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00010WC-01\",\n            \"case_or_request_number\": \"00010WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"9\",\n        \"added_on\": \"2026-04-10\",\n        \"amount_money\": \"295.00\",\n        \"amount_hours\": \"523.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-04-10 18:45:38\",\n        \"updated_at\": \"2026-04-10 18:45:38\",\n        \"Casefile\": {\n            \"id\": \"13\",\n            \"series_number\": \"9\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-04-10\",\n            \"is_request\": false,\n            \"case_number\": \"00009WC-01\",\n            \"case_or_request_number\": \"00009WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"8\",\n        \"added_on\": \"2026-04-10\",\n        \"amount_money\": \"194.00\",\n        \"amount_hours\": \"779.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-04-10 18:38:54\",\n        \"updated_at\": \"2026-04-10 18:38:54\",\n        \"Casefile\": {\n            \"id\": \"12\",\n            \"series_number\": \"8\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-04-10\",\n            \"is_request\": false,\n            \"case_number\": \"00008WC-01\",\n            \"case_or_request_number\": \"00008WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"440.00\",\n        \"amount_hours\": \"475.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:44:59\",\n        \"updated_at\": \"2026-03-31 15:44:59\",\n        \"Casefile\": {\n            \"id\": \"9\",\n            \"series_number\": \"7\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00007WC-01\",\n            \"case_or_request_number\": \"00007WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"624.00\",\n        \"amount_hours\": \"403.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:38:31\",\n        \"updated_at\": \"2026-03-31 15:38:31\",\n        \"Casefile\": {\n            \"id\": \"8\",\n            \"series_number\": \"6\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00006WC-01\",\n            \"case_or_request_number\": \"00006WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"516.00\",\n        \"amount_hours\": \"144.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:38:25\",\n        \"updated_at\": \"2026-03-31 15:38:25\",\n        \"Casefile\": {\n            \"id\": \"7\",\n            \"series_number\": \"5\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00005WC-01\",\n            \"case_or_request_number\": \"00005WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"added_on\": \"2026-03-30\",\n        \"amount_money\": \"241.00\",\n        \"amount_hours\": \"965.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-30 21:09:45\",\n        \"updated_at\": \"2026-03-30 21:09:45\",\n        \"Casefile\": {\n            \"id\": \"6\",\n            \"series_number\": \"4\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-30\",\n            \"is_request\": false,\n            \"case_number\": \"00004WC-01\",\n            \"case_or_request_number\": \"00004WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"445.00\",\n        \"amount_hours\": \"191.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"415.00\",\n        \"amount_hours\": \"945.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"1000.00\",\n        \"amount_hours\": \"24.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 20:49:48\",\n        \"updated_at\": \"2026-02-02 20:49:48\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\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\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    }\n]"}],"_postman_id":"105413d5-00d5-405c-99a9-5ca3f863ea22"},{"name":"Search budget details","id":"18f547dd-e1a3-4b34-a9f7-7eba817a4e7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/budget_details?id=<integer>&case=<integer>&user=<integer>&added_on_from=<datestamp>&added_on_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":["budget_details"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the budget detail</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the budget detail</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the user associated with the budget detail</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ISO date the budget detail was added \"from\"</p>\n","type":"text/plain"},"key":"added_on_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date the budget detail was added \"to\"</p>\n","type":"text/plain"},"key":"added_on_to","value":"<datestamp>"},{"description":{"content":"<p>Alias of added_on_from</p>\n","type":"text/plain"},"key":"from","value":"<datestamp>"},{"description":{"content":"<p>Alias of added_on_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":"2ac831d5-774b-4146-a2ed-3f8c0b3bc43f","name":"List budget details","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/budget_details"},"status":"OK","code":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\": \"15\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"154.00\",\n        \"amount_hours\": \"197.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:31:06\",\n        \"updated_at\": \"2026-06-23 17:31:06\",\n        \"Casefile\": {\n            \"id\": \"19\",\n            \"series_number\": \"12\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00012WC-01\",\n            \"case_or_request_number\": \"00012WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"14\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"325.00\",\n        \"amount_hours\": \"671.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:29:30\",\n        \"updated_at\": \"2026-06-23 17:29:30\",\n        \"Casefile\": {\n            \"id\": \"18\",\n            \"series_number\": \"11\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00011WC-01\",\n            \"case_or_request_number\": \"00011WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"13\",\n        \"added_on\": \"2026-06-23\",\n        \"amount_money\": \"278.00\",\n        \"amount_hours\": \"331.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-06-23 17:28:23\",\n        \"updated_at\": \"2026-06-23 17:28:23\",\n        \"Casefile\": {\n            \"id\": \"17\",\n            \"series_number\": \"10\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-06-23\",\n            \"is_request\": false,\n            \"case_number\": \"00010WC-01\",\n            \"case_or_request_number\": \"00010WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"9\",\n        \"added_on\": \"2026-04-10\",\n        \"amount_money\": \"295.00\",\n        \"amount_hours\": \"523.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-04-10 18:45:38\",\n        \"updated_at\": \"2026-04-10 18:45:38\",\n        \"Casefile\": {\n            \"id\": \"13\",\n            \"series_number\": \"9\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-04-10\",\n            \"is_request\": false,\n            \"case_number\": \"00009WC-01\",\n            \"case_or_request_number\": \"00009WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"8\",\n        \"added_on\": \"2026-04-10\",\n        \"amount_money\": \"194.00\",\n        \"amount_hours\": \"779.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-04-10 18:38:54\",\n        \"updated_at\": \"2026-04-10 18:38:54\",\n        \"Casefile\": {\n            \"id\": \"12\",\n            \"series_number\": \"8\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-04-10\",\n            \"is_request\": false,\n            \"case_number\": \"00008WC-01\",\n            \"case_or_request_number\": \"00008WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"7\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"440.00\",\n        \"amount_hours\": \"475.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:44:59\",\n        \"updated_at\": \"2026-03-31 15:44:59\",\n        \"Casefile\": {\n            \"id\": \"9\",\n            \"series_number\": \"7\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00007WC-01\",\n            \"case_or_request_number\": \"00007WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"6\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"624.00\",\n        \"amount_hours\": \"403.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:38:31\",\n        \"updated_at\": \"2026-03-31 15:38:31\",\n        \"Casefile\": {\n            \"id\": \"8\",\n            \"series_number\": \"6\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00006WC-01\",\n            \"case_or_request_number\": \"00006WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"5\",\n        \"added_on\": \"2026-03-31\",\n        \"amount_money\": \"516.00\",\n        \"amount_hours\": \"144.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-31 15:38:25\",\n        \"updated_at\": \"2026-03-31 15:38:25\",\n        \"Casefile\": {\n            \"id\": \"7\",\n            \"series_number\": \"5\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\n            \"is_request\": false,\n            \"case_number\": \"00005WC-01\",\n            \"case_or_request_number\": \"00005WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"4\",\n        \"added_on\": \"2026-03-30\",\n        \"amount_money\": \"241.00\",\n        \"amount_hours\": \"965.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-03-30 21:09:45\",\n        \"updated_at\": \"2026-03-30 21:09:45\",\n        \"Casefile\": {\n            \"id\": \"6\",\n            \"series_number\": \"4\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-30\",\n            \"is_request\": false,\n            \"case_number\": \"00004WC-01\",\n            \"case_or_request_number\": \"00004WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"3\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"445.00\",\n        \"amount_hours\": \"191.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 21:38:18\",\n        \"updated_at\": \"2026-02-02 21:38:18\",\n        \"Casefile\": {\n            \"id\": \"5\",\n            \"series_number\": \"3\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00003WC-01\",\n            \"case_or_request_number\": \"00003WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"2\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"415.00\",\n        \"amount_hours\": \"945.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 21:33:48\",\n        \"updated_at\": \"2026-02-02 21:33:48\",\n        \"Casefile\": {\n            \"id\": \"4\",\n            \"series_number\": \"2\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-02-02\",\n            \"is_request\": false,\n            \"case_number\": \"00002WC-01\",\n            \"case_or_request_number\": \"00002WC-01\",\n            \"route_prefix\": \"case\"\n        },\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    },\n    {\n        \"id\": \"1\",\n        \"added_on\": \"2026-02-02\",\n        \"amount_money\": \"1000.00\",\n        \"amount_hours\": \"24.00\",\n        \"notes\": \"Initial budget\",\n        \"created_at\": \"2026-02-02 20:49:48\",\n        \"updated_at\": \"2026-02-02 20:49:48\",\n        \"Casefile\": {\n            \"id\": \"3\",\n            \"series_number\": \"1\",\n            \"case_type_tag\": \"WC\",\n            \"case_state\": \"CO\",\n            \"series_instance\": \"1\",\n            \"created_on\": \"2026-03-31\",\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\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    }\n]"}],"_postman_id":"18f547dd-e1a3-4b34-a9f7-7eba817a4e7b"}],"id":"68526f38-5407-44e8-814d-3a4e788e718a","description":"<p>Budget details track budget adjustments on a case, and the associated contact who is responsible for the adjustment.</p>\n<p><strong>See Also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/216475923-Managing-the-Case-Budget\">Managing the case budget</a></p>\n","_postman_id":"68526f38-5407-44e8-814d-3a4e788e718a","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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 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=invoice.pdf","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"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":"legacy.mpga"}],"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\": \"isle_regional_small.jpg\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Qui molestias voluptatem quos nesciunt ut sed maiores enim.\"\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\": \"out_of_the_box_soap.pdf\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Doloribus suscipit nulla hic magnam delectus debitis.\"\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\": \"Volkman - Hills\",\n        \"address_1\": \"145 Mathias Gardens\",\n        \"city\": \"Berniceland\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Ronny\",\n        \"last_name\": \"Wolff\",\n        \"email\": \"Jamal74@gmail.com\",\n        \"phone_office\": \"682-803-4454\",\n        \"phone_mobile\": \"563-690-8952\",\n        \"phone_fax\": \"777-514-6514\"\n    },\n    \"primary_manager_id\": \"<integer>\",\n    \"primary_salesperson_id\": \"<integer>\",\n    \"reference_value_1\": \"maiores aliquid rerum\",\n    \"reference_value_2\": \"maxime ad non\",\n    \"reference_value_3\": \"id maxime pariatur\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Calistaport\",\n    \"budget_money\": \"868\",\n    \"budget_hours\": \"764\",\n    \"notes\": \"Vitae neque excepturi qui. Velit nihil quaerat dolores adipisci voluptates. Vel quo iusto ab perferendis sed. Odit natus consequatur doloribus.\",\n    \"scheduling_notes\": \"Doloremque enim eius rem exercitationem sit autem suscipit ut est.\",\n    \"admin_notes\": \"Laborum sit quo asperiores ullam quod numquam explicabo debitis.\",\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\": \"Judson\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Beier\"\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\": \"Turcotte - Conroy\",\n        \"address_1\": \"85227 Elizabeth Extension\",\n        \"city\": \"Hackensack\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Braden\",\n        \"last_name\": \"Romaguera\",\n        \"email\": \"Anjali73@gmail.com\",\n        \"phone_office\": \"310-411-3092\",\n        \"phone_mobile\": \"295-579-6991\",\n        \"phone_fax\": \"437-655-2123\"\n    },\n    \"reference_value_1\": \"blanditiis et voluptatum\",\n    \"reference_value_2\": \"ducimus et in\",\n    \"reference_value_3\": \"eos perspiciatis ipsa\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"San Jacinto\",\n    \"budget_money\": \"993\",\n    \"budget_hours\": \"306\",\n    \"notes\": \"Sint est delectus. Et mollitia doloribus sed animi voluptatem et vero quo aspernatur. Quos recusandae esse voluptate rerum. Aut adipisci fugiat exercitationem sunt.\",\n    \"scheduling_notes\": \"Provident velit tempore consequatur.\",\n    \"admin_notes\": \"Quos et nesciunt temporibus excepturi.\",\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\": \"Jammie\",\n    \t\t\t  \t\"middle_name\": \"\",\n    \t\t\t  \t\"last_name\": \"Abbott\"\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\": \"Kozey, Krajcik and Yundt\",\n        \"address_1\": \"10806 Reichert Rapids\",\n        \"city\": \"South Celia\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Trycia\",\n        \"last_name\": \"Crooks\",\n        \"email\": \"Pierce_Renner@gmail.com\",\n        \"phone_office\": \"750-240-0786\",\n        \"phone_mobile\": \"419-373-2748\",\n        \"phone_fax\": \"822-476-6143\"\n    },\n    \"reference_value_1\": \"veniam illum molestiae\",\n    \"reference_value_2\": \"quaerat repellat et\",\n    \"reference_value_3\": \"alias omnis nam\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Rahsaanstad\",\n    \"notes\": \"Ut quia hic. Perspiciatis id dicta rem possimus et earum. Sapiente temporibus ut. Perspiciatis inventore veritatis et veniam perspiciatis repellat velit qui voluptatibus. Officia ab ut maxime totam maxime.\",\n    \"scheduling_notes\": \"Explicabo et ipsa accusamus libero a doloremque id nihil voluptatem.\",\n    \"admin_notes\": \"Sit fuga odit nihil eius dolores totam et sapiente assumenda.\",\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\": \"Reichel LLC\",\n        \"address_1\": \"79710 Ophelia Skyway\",\n        \"city\": \"Lauderhill\",\n        \"state\": \"<string> | <state-code>\",\n        \"zip\": \"<string>\",\n        \"country\": \"<country-code>\"\n    },\n    \"contact\": {\n        \"first_name\": \"Kaylah\",\n        \"last_name\": \"Bernhard\",\n        \"email\": \"Katlyn_Walter50@yahoo.com\",\n        \"phone_office\": \"448-930-5041\",\n        \"phone_mobile\": \"238-320-5146\",\n        \"phone_fax\": \"566-712-8584\"\n    },\n    \"reference_value_1\": \"possimus quibusdam earum\",\n    \"reference_value_2\": \"amet minus sequi\",\n    \"reference_value_3\": \"sit ut quidem\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"North Highlands\",\n    \"notes\": \"Culpa cupiditate quia nostrum. Quidem consequatur et voluptatem. Voluptatem quae quas quaerat repudiandae deleniti labore et.\",\n    \"scheduling_notes\": \"Nemo cumque eveniet omnis.\",\n    \"admin_notes\": \"Dignissimos culpa ipsum.\",\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 consequatur nam\",\n        \"body\": \"Quas est reprehenderit. Fugiat ipsam id maxime deleniti optio quibusdam adipisci consectetur. Veniam animi necessitatibus suscipit quas earum et expedita ea. Velit porro sunt velit eum.\",\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\": \"quia quia autem\",\n        \"body\": \"Fugiat ipsa eaque. Dicta omnis ullam sequi provident a vel nesciunt sed placeat. Et et veritatis perferendis corrupti libero quia.\",\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\": \"sed nihil est\",\n        \"body\": \"Et voluptatem aut deleniti quidem cumque ut ducimus laudantium quia. Totam ratione voluptatem vitae a. Reiciendis nulla provident maxime reiciendis. Nostrum quo quasi ut non quia consequatur.\",\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\": \"voluptatibus dolores officia\",\n        \"body\": \"Accusamus veniam est sint quia totam enim explicabo placeat temporibus. Ut esse asperiores veritatis maxime eum tenetur aperiam iste. Sit alias qui modi est adipisci.\",\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\": \"expedita rerum tempora\",\n        \"body\": \"Ut distinctio ratione harum itaque odit voluptatem. Quaerat tempora officia necessitatibus porro ea voluptas. Necessitatibus id nihil quod sed. Maiores atque ut aut facilis ut quia.\",\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=cotton_hacking_baby.mpga","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["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":"online_gloves_optimized.mp2a"}],"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\": \"data.m2v\",\n    \"access_group_id\": \"<integer>\",\n    \"is_valid\": true,\n    \"notes\": \"Quidem alias laudantium quas quo.\"\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\": \"Et est quaerat optio et beatae nobis.\"\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\": \"tempore vero sit\",\n      \"reference_value_2\": \"exercitationem optio sed\",\n      \"reference_value_3\": \"corrupti libero eos\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Kiehnport\",\n      \"budget_money\": \"423\",\n      \"budget_hours\": \"530\",\n      \"notes\": \"Nesciunt unde itaque autem consectetur quam facilis maxime pariatur. Iusto vero nihil velit aspernatur qui voluptas. Dolorum sit amet occaecati nobis ut minima itaque.\",\n      \"scheduling_notes\": \"Sunt suscipit nisi qui rerum dignissimos et officia.}\",\n      \"admin_notes\": \"Adipisci odit libero.\",\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\": \"Rebecca\",\n                    \"middle_name\": \"Eda\",\n                    \"last_name\": \"Bernhard\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Nulla voluptatem aut eum qui nihil quibusdam rem in.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Cumque expedita quia laboriosam aut corporis. Ullam non libero quo qui soluta sequi libero occaecati. Assumenda aut iure. Nihil et id et aspernatur.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"927 Pacocha Loop\",\n                    \"address_2\": \"Apt #131\",\n                    \"address_3\": \"\",\n                    \"city\": \"Lake Fritz\",\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\": \"eius est aut\",\n      \"reference_value_2\": \"ea doloremque magnam\",\n      \"reference_value_3\": \"expedita nam nihil\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Mesa\",\n      \"budget_money\": \"110\",\n      \"budget_hours\": \"291\",\n      \"notes\": \"Id illum perspiciatis iure. Dolorem inventore eaque. Eaque voluptatibus ex non quis rerum blanditiis nihil similique autem. Qui molestiae numquam.\",\n      \"scheduling_notes\": \"Culpa odit similique eum quam iste sit impedit excepturi quia.}\",\n      \"admin_notes\": \"Ea labore ut minus aut laborum voluptatem odio doloribus sit.\",\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\": \"Vidal\",\n                    \"middle_name\": \"Isadore\",\n                    \"last_name\": \"Doyle\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Veniam nam aspernatur quis.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Eum incidunt enim expedita eos blanditiis et. Fugit illum vel minus praesentium voluptatem omnis. Voluptatem at fugiat quisquam. Vel amet ad.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"7598 Tiara Way\",\n                    \"address_2\": \"Apt #421\",\n                    \"address_3\": \"\",\n                    \"city\": \"Hempstead\",\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\": \"magni illum distinctio\",\n      \"reference_value_2\": \"error et numquam\",\n      \"reference_value_3\": \"distinctio facere et\",\n      \"referral_source_id\": \"<integer>\",\n      \"due_on\": \"<datestamp>\",\n      \"case_country\": \"<country-code>\",\n      \"case_state\": \"<string> | <state-code>\",\n      \"case_location\": \"Antwonmouth\",\n      \"budget_money\": \"849\",\n      \"budget_hours\": \"825\",\n      \"notes\": \"Fugiat sequi pariatur magnam rem velit quia cum necessitatibus. Optio qui eveniet commodi veniam. Facilis omnis sed.\",\n      \"scheduling_notes\": \"Consequatur reprehenderit illum.}\",\n      \"admin_notes\": \"Expedita ut in et architecto in qui perferendis.\",\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\": \"sint repudiandae soluta\"\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\": \"Virginia\",\n                    \"middle_name\": \"Abraham\",\n                    \"last_name\": \"Moen\"\n                    }\n                },     \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Omnis qui nesciunt excepturi sunt dolor quas magni voluptas.\"\n                },      \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": \"Reiciendis voluptas sed perspiciatis et accusamus et iure. Et pariatur illo error et blanditiis temporibus quisquam. Dolorem doloremque fugit unde voluptatem eveniet sequi in aperiam. Velit ut autem sint adipisci laudantium. Velit rerum veniam sint dolorum deserunt ab.\"\n                },\n                {\n                    \"id\": \"<integer>\", \n                    \"value\": \"<datestamp>\"\n                },              \n                {\n                    \"id\": \"<integer>\",\n                    \"value\": {\n                    \"address_1\": \"721 Jaskolski Lodge\",\n                    \"address_2\": \"Apt #443\",\n                    \"address_3\": \"\",\n                    \"city\": \"Port Brody\",\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\": \"ratione numquam nemo\",\n    \"reference_value_2\": \"in omnis voluptatem\",\n    \"reference_value_3\": \"nihil ea et\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"Downey\",\n    \"notes\": \"Non nostrum odit modi voluptas est distinctio dolore vel et. Sed qui dignissimos enim et. Ipsum voluptatem ab eligendi sit molestiae et. Dolorum quae quia repellendus rerum cupiditate sed. Assumenda veritatis rerum unde. Aliquam aliquam adipisci qui sed.\",\n    \"scheduling_notes\": \"Ducimus quisquam magni similique.}\",\n    \"admin_notes\": \"Cum molestias quos dolorem quia.\",\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\": \"placeat porro eligendi\",\n    \"reference_value_2\": \"veritatis excepturi cum\",\n    \"reference_value_3\": \"corporis laborum dicta\",\n    \"referral_source_id\": \"<integer>\",\n    \"due_on\": \"<datestamp>\",\n    \"case_country\": \"<country-code>\",\n    \"case_state\": \"<string> | <state-code>\",\n    \"case_location\": \"La Mesa\",\n    \"notes\": \"Et fuga doloribus magni odio eius voluptas est. Ipsa at blanditiis aut ut nam. Illo cumque ut voluptatum velit id facilis et. Ut consequatur iure. Eos at ea.\",\n    \"scheduling_notes\": \"Necessitatibus aut rerum eligendi.}\",\n    \"admin_notes\": \"Et et ad velit veniam eaque at.\",\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\": \"Laborum fugiat quam odio sed rerum quis voluptas. Sed sed omnis quia voluptatem temporibus qui qui minus eveniet. Consequatur est dolor quidem nihil aut. Eaque nihil numquam ducimus omnis quae.\",\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\": \"In eaque voluptatem esse sint. Rerum et ut repellendus. Ab harum dolore incidunt beatae unde nulla. Ullam molestiae est voluptatem eum fuga. Animi illo eos.\",\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":"Client Contact Emails (Aliases)","item":[{"name":"Get a client contact email","id":"6a06f91a-12ea-4c80-8c26-7d12fd6c9158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/client/contact/emails/: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","emails",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[],"_postman_id":"6a06f91a-12ea-4c80-8c26-7d12fd6c9158"},{"name":"List client contact emails","id":"81652749-be25-4d81-8633-529566bc6c96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/client/contact/emails","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"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","emails"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"3c1c0f1e-2391-492a-bfe2-691d0614c4eb","name":"List client contact emails","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/client/contact/emails"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"id\": \"4\",\n        \"email\": \"Leonor.Schneider@example.org\",\n        \"created_at\": \"2026-09-16 18:41:59\",\n        \"updated_at\": \"2026-09-16 18:41:59\",\n        \"User\": {\n            \"id\": \"2\",\n            \"account_code\": \"nostrum-velit-sint\",\n            \"first_name\": \"Vanessa\",\n            \"last_name\": \"White\",\n            \"email\": \"Julien82@example.net\",\n            \"name\": \"White, Vanessa\",\n            \"proper_name\": \"Vanessa White\"\n        }\n    }\n]"}],"_postman_id":"81652749-be25-4d81-8633-529566bc6c96"},{"name":"Search client/contact emails","id":"f1fd9223-3d38-48f6-bb7b-19fdac8f3857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/client/contact/emails?id=<integer>&user=<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","emails"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the user</p>\n","type":"text/plain"},"key":"user","value":"<integer>"}],"variable":[]}},"response":[{"id":"da792f65-43bd-4198-9e6c-38c0fdf98cef","name":"Search client/contact emails","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/client/contact/emails?id=<integer>&user=<integer>","host":["/api/v1"],"path":["client","contact","emails"],"query":[{"key":"id","value":"<integer>","description":"ID of the email"},{"key":"user","value":"<integer>","description":"ID of the user"}]}},"status":"OK","code":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        \"email\": \"Leonor.Schneider@example.org\",\n        \"created_at\": \"2026-09-16 18:41:59\",\n        \"updated_at\": \"2026-09-16 18:41:59\",\n        \"User\": {\n            \"id\": \"2\",\n            \"account_code\": \"nostrum-velit-sint\",\n            \"first_name\": \"Vanessa\",\n            \"last_name\": \"White\",\n            \"email\": \"Julien82@example.net\",\n            \"name\": \"White, Vanessa\",\n            \"proper_name\": \"Vanessa White\"\n        }\n    }\n]"}],"_postman_id":"f1fd9223-3d38-48f6-bb7b-19fdac8f3857"},{"name":"Create a client contact email","id":"ac935c74-8641-446f-a07a-c6c6dcb90487","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"client_contact_email\": {\n        \"user_id\": \"<integer>\",\n        \"email\": \"Junius94@example.com\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/emails","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"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","emails"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"19f88640-0886-4f1c-90ca-889ea1596ebb","name":"Create a client contact email","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contact_email\": {\n        \"user_id\": \"<integer>\",\n        \"email\": \"Annabelle94@example.net\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/emails"},"status":"OK","code":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    \"email\": \"Leonor.Schneider@example.org\",\n    \"created_at\": \"2026-09-16 18:41:59\",\n    \"updated_at\": \"2026-09-16 18:41:59\",\n    \"User\": {\n        \"id\": \"2\",\n        \"account_code\": \"nostrum-velit-sint\",\n        \"first_name\": \"Vanessa\",\n        \"last_name\": \"White\",\n        \"email\": \"Julien82@example.net\",\n        \"name\": \"White, Vanessa\",\n        \"proper_name\": \"Vanessa White\"\n    }\n}"}],"_postman_id":"ac935c74-8641-446f-a07a-c6c6dcb90487"},{"name":"Delete a client contact email","id":"4c041432-8c4e-4ece-8ccd-8917ccb0d921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contact_email\": {\n        \"confirm\": \"delete\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/contact/emails/: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","emails",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"9b9d1fec-1e01-4e21-aceb-9ea632709f93","name":"Delete a client contact email","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"contact_email\": {\n        \"confirm\": \"delete\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/client/contact/emails/:id","host":["/api/v1"],"path":["client","contact","emails",":id"],"variable":[{"key":"id","value":"<integer>","description":"ID of the email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"error\": false,\n    \"code\": 200,\n    \"message\": \"Deleted \\\"Leonor.Schneider@example.org\\\"\"\n}"}],"_postman_id":"4c041432-8c4e-4ece-8ccd-8917ccb0d921"}],"id":"549e1966-7218-4e0a-9c41-7d33fd54c189","description":"<p>Email aliases associate additional email addresses with a user profile in Trackops, often used for inbound email association and single sign-on integrations.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360041905231-Adding-an-email-alias-for-a-client-contact\">Adding an email alias</a></p>\n","_postman_id":"549e1966-7218-4e0a-9c41-7d33fd54c189","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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\": \"Marcel\",\n     \"middle_name\": \"Charlene\",\n     \"last_name\": \"Grady\",\n     \"title\": \"Dynamic Assurance Strategist\",\n     \"email\": \"Beatrice86@example.org\",\n     \"phone_home\": \"248-412-3272\",\n     \"phone_mobile\": \"706-345-8551\",\n     \"phone_office\": \"900-910-1437 73-674-442-1947\",\n     \"phone_fax\": \"688-997-9245\",\n     \"address_1\": \"6662 Renner Corners\",\n     \"address_2\": \"STE 584\",\n     \"address_3\": \"\",\n     \"city\": \"East Hartford\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"harum-rerum-ut\",\n     \"notes\": \"Rerum officia non ea. Quidem eos sit similique. Quos est dolor consequatur. Nesciunt veritatis est quis labore iste eaque. Hic velit ratione.\",\n     \"admin_notes\": \"Aut nihil temporibus cum. Non molestiae quam eligendi. Itaque esse sunt error ea doloribus tempore pariatur sint. Aliquam dignissimos consequatur dignissimos porro magnam voluptatem esse aut distinctio. Neque quibusdam odio similique hic repudiandae necessitatibus rerum veritatis.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quo\"\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\": \"Alaina\",\n     \"middle_name\": \"Antwon\",\n     \"last_name\": \"Torphy\",\n     \"title\": \"Global Division Facilitator\",\n     \"email\": \"Barbara.Purdy52@example.net\",\n     \"phone_home\": \"860-323-1911\",\n     \"phone_mobile\": \"892-339-0046\",\n     \"phone_office\": \"518-869-6496 99-424-570-0359\",\n     \"phone_fax\": \"792-717-9291\",\n     \"address_1\": \"708 Jarod Plains\",\n     \"address_2\": \"STE 8\",\n     \"address_3\": \"\",\n     \"city\": \"El Monte\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",     \n     \"account_code\": \"explicabo-error-quam\",\n     \"notes\": \"Incidunt et enim eligendi. Distinctio sint tempore corporis voluptatum fuga reprehenderit ut quia. Et nihil provident ea sit blanditiis fugit assumenda impedit vitae.\",\n     \"admin_notes\": \"Qui ut ut necessitatibus. Eum alias ex ut. Cupiditate sequi repellat non dolorem odit sit quae. Voluptatem ea quisquam iusto quo. Maxime vitae vel et magnam fuga.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"cupiditate\"\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\": \"Gisselle\",\n     \"middle_name\": \"Glennie\",\n     \"last_name\": \"McGlynn\",\n     \"title\": \"Central Intranet Officer\",\n     \"email\": \"Jacquelyn.Reichert@example.com\",\n     \"phone_home\": \"716-291-2130\",\n     \"phone_mobile\": \"864-943-9637\",\n     \"phone_office\": \"541-949-2157 32-417-567-4775\",\n     \"phone_fax\": \"630-391-1991\",\n     \"address_1\": \"767 Dianna Station\",\n     \"address_2\": \"STE 396\",\n     \"address_3\": \"\",\n     \"city\": \"Miltonhaven\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"minima-velit-eveniet\",\n     \"notes\": \"Incidunt enim aspernatur voluptate. Doloribus et culpa dolorem dicta quis et. Qui consectetur dignissimos quis. Accusamus sit nostrum sed ut harum quo sequi.\",\n     \"admin_notes\": \"Voluptatibus sit itaque qui inventore quisquam. Et eos et dolore nobis et.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"sint beatae debitis\"\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\": \"Loraine\",\n     \"middle_name\": \"Judy\",\n     \"last_name\": \"Murphy\",\n     \"title\": \"Global Paradigm Executive\",\n     \"email\": \"Sam48@example.com\",\n     \"phone_home\": \"236-564-9205\",\n     \"phone_mobile\": \"685-223-1103\",\n     \"phone_office\": \"580-610-2780 28-489-691-4225\",\n     \"phone_fax\": \"974-241-5061\",\n     \"address_1\": \"53883 Elfrieda Valleys\",\n     \"address_2\": \"STE 7\",\n     \"address_3\": \"\",\n     \"city\": \"West Odiebury\",\n     \"state\": \"<string>\",\n     \"zip\": <string>,\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"soluta-est-quidem\",\n     \"notes\": \"Omnis aut molestias ut voluptate aut accusantium. Consequatur quam nulla quo doloremque. Ad quos modi error amet est facere minus.\",\n     \"admin_notes\": \"A quidem iure quia quibusdam dolor dolores sit vitae. Id vitae voluptates beatae maiores. Voluptate eum et nisi blanditiis. Veritatis animi et libero tempora commodi. Quibusdam quo id.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quis qui qui\"\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\": \"West Braxton Office\",\n    \"email_invoice\": \"Arnold_Luettgen@example.com\",\n    \"phone_primary\": \"427-241-3866\",\n    \"phone_secondary\": \"511-291-6195\",\n    \"phone_fax\": \"753-922-9072\",\n    \"address_1\": \"69261 Florida Court\",\n    \"address_2\": \"STE 84\",\n    \"address_3\": \"\",\n    \"city\": \"Portland\",\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\": \"South Allenfurt Office\",\n    \"email_invoice\": \"Devonte31@example.com\",\n    \"phone_primary\": \"546-959-1342\",\n    \"phone_secondary\": \"888-353-6925\",\n    \"phone_fax\": \"529-558-8492\",\n    \"address_1\": \"003 Douglas Locks\",\n    \"address_2\": \"STE 178\",\n    \"address_3\": \"\",\n    \"city\": \"Mandyshire\",\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\": \"Lottiefurt Office\",\n    \"email_invoice\": \"Kaitlyn_Blanda@example.net\",\n    \"phone_primary\": \"236-438-9787\",\n    \"phone_secondary\": \"627-769-0646\",\n    \"phone_fax\": \"668-394-7591\",\n    \"address_1\": \"0296 Omari Avenue\",\n    \"address_2\": \"STE 556\",\n    \"city\": \"Lake Mylenechester\",\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\": \"Kiehnberg Office\",\n    \"email_invoice\": \"Georgette.Wyman@example.org\",\n    \"phone_primary\": \"490-683-6167\",\n    \"phone_secondary\": \"467-841-5694\",\n    \"phone_fax\": \"460-356-0043\",\n    \"address_1\": \"7350 Immanuel Fall\",\n    \"address_2\": \"STE 402\",\n    \"city\": \"Allyberg\",\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\": \"Occaecati sunt dolores vero voluptatum. Adipisci voluptatem aut perferendis aut atque.\",\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\": \"Qui voluptas doloribus sed mollitia beatae. Et quis porro aut neque non ut ipsam temporibus consequatur.\",\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":"Client Price Lists","item":[{"name":"Get a client price list adjustment","id":"9b4a8567-a651-4f4d-bba8-2dd0b862f6a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/client/pricelist/:client_id/:invoice_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":["client","pricelist",":client_id",":invoice_item_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"},{"description":{"content":"<p>ID of the invoice item</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"invoice_item_id"}]}},"response":[{"id":"7ba00c88-2272-4a44-9118-8dcab8c21137","name":"Get a client price list adjustment","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/client/pricelist/:client_id/:invoice_item_id","host":["/api/v1"],"path":["client","pricelist",":client_id",":invoice_item_id"],"variable":[{"key":"client_id","value":"<integer>","description":"ID of the client"},{"key":"invoice_item_id","value":"<integer>","description":"ID of the invoice 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    \"client_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"invoice_unit_rate\": \"600.000\",\n    \"tax_rate_id\": \"1\",\n    \"item_code_id\": null,\n    \"Client\": {\n        \"id\": \"3\",\n        \"account_code\": \"SAMPLE\",\n        \"name\": \"Homenick Group Location\",\n        \"route_prefix\": \"client\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\"\n    }\n}"}],"_postman_id":"9b4a8567-a651-4f4d-bba8-2dd0b862f6a7"},{"name":"List client price list adjustments","id":"a434f30e-e247-43d1-8d9f-f9ad35558d90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/client/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":["client","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"5e5d38bb-c277-482e-abe1-930b688f115b","name":"List client price list adjustments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/client/pricelist"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Accept","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"[\n    {\n        \"client_id\": \"3\",\n        \"finance_item_id\": \"1\",\n        \"invoice_unit_rate\": \"600.000\",\n        \"tax_rate_id\": \"1\",\n        \"item_code_id\": null,\n        \"Client\": {\n            \"id\": \"3\",\n            \"account_code\": \"SAMPLE\",\n            \"name\": \"Homenick Group Location\",\n            \"route_prefix\": \"client\"\n        },\n        \"FinanceItem\": {\n            \"id\": \"1\",\n            \"name\": \"Work Hours\",\n            \"reference_id\": null,\n            \"item_code\": null,\n            \"invoice_alias\": \"Work Hours\",\n            \"invoice_unit_rate\": \"75.000\"\n        }\n    }\n]"}],"_postman_id":"a434f30e-e247-43d1-8d9f-f9ad35558d90"},{"name":"Create a client price list adjustment","id":"ec1b5eae-c2ad-4618-853f-36cae27e9723","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"client_price_list\": {\n        \"client_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"tax_rate_id\": \"<integer>\",\n        \"invoice_unit_rate\": \"42\",\n        \"item_code_id\": \"<integer>\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/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":["client","pricelist"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"cf9d878d-ad0b-4ad1-b61e-d6bc428c7fbe","name":"Create a client price list adjustment","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"client_price_list\": {\n        \"client_id\": \"<integer>\",\n        \"finance_item_id\": \"<integer>\",\n        \"tax_rate_id\": \"<integer>\",\n        \"invoice_unit_rate\": \"632\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/client/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    \"client_id\": \"3\",\n    \"finance_item_id\": \"1\",\n    \"invoice_unit_rate\": \"600.000\",\n    \"tax_rate_id\": \"1\",\n    \"item_code_id\": null,\n    \"Client\": {\n        \"id\": \"3\",\n        \"account_code\": \"SAMPLE\",\n        \"name\": \"Homenick Group Location\",\n        \"route_prefix\": \"client\"\n    },\n    \"FinanceItem\": {\n        \"id\": \"1\",\n        \"name\": \"Work Hours\",\n        \"reference_id\": null,\n        \"item_code\": null,\n        \"invoice_alias\": \"Work Hours\",\n        \"invoice_unit_rate\": \"75.000\"\n    }\n}"}],"_postman_id":"ec1b5eae-c2ad-4618-853f-36cae27e9723"}],"id":"b23a2a98-a956-43bc-97eb-977eb03c4c37","description":"<p>Client price lists allow you to override default pricing, tax rates, and other information when generating invoices for a client.</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":"b23a2a98-a956-43bc-97eb-977eb03c4c37","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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\": \"Bashirian - Bayer\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"http://devonte.net\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Nihil et hic molestias veritatis. Accusamus et quam assumenda porro. Ipsum consequuntur praesentium et placeat. Ratione est fugit perferendis perferendis vel aliquam architecto dolores. Aut qui saepe voluptatem dolore maiores. Odio aliquid numquam facere.\",\n    \"primary_location\": {\n      \"name\": \"New Orleans Location\",\n      \"email_invoice\": \"Otho_Jenkins99@example.net\",\n      \"phone_primary\": \"730-774-3358\",\n      \"phone_secondary\": \"913-938-9786\",\n      \"phone_fax\": \"368-706-0466\",\n      \"address_1\": \"850 Leila Light\",\n      \"address_2\": \"STE 321\",\n      \"city\": \"East Tillman\",\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\": \"Pfeffer - Ward\",\n    \"salesperson_id\": \"<integer>\",\n    \"website\": \"https://eden.com\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Earum sequi eveniet dignissimos quae perferendis omnis. Voluptas at animi aperiam et voluptate id id doloremque nihil.\",\n    \"primary_location\": {\n      \"name\": \"Auerton Location\",\n      \"email_invoice\": \"Magnolia67@example.com\",\n      \"phone_primary\": \"984-367-2741\",\n      \"phone_secondary\": \"700-454-5146\",\n      \"phone_fax\": \"576-662-2892\",\n      \"address_1\": \"37875 Keebler Parkways\",\n      \"address_2\": \"STE 424\",\n      \"city\": \"Domingomouth\",\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\": \"Boyle, Durgan and Monahan Location\",\n    \"website\": \"https://golden.net\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Laborum voluptatum optio veritatis dolorem veritatis. Consequuntur repudiandae et possimus adipisci itaque quas debitis distinctio. Necessitatibus qui numquam iusto iusto. Error rerum reprehenderit facilis quis voluptatum quos. Ad sunt consectetur et. Exercitationem beatae ea sint sit expedita nam enim fuga maxime.\"\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\": \"Hirthe, Mohr and O'Connell Location\",\n    \"website\": \"http://landen.net\",\n    \"has_invoice_reminders\": true,\n    \"show_location_on_invoice\": true,\n    \"notes\": \"Minus tempora reprehenderit asperiores dicta rerum et at qui. Itaque aliquam nisi non. Et dolor assumenda quasi quis quis quia. Incidunt expedita qui sit nulla sit commodi repellat et nostrum. Veniam ratione nesciunt distinctio voluptatibus cupiditate excepturi similique perspiciatis.\"\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\": \"Tempore eaque est consequatur aut provident quaerat earum quibusdam. Fugiat enim qui sint et. Esse sint voluptatem suscipit quis quia.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"726.74\",\n            \"quantity\": \"779\",\n            \"notes\": \"Ut nihil repellat dolorum.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"733.96\",\n            \"quantity\": \"920\",\n            \"notes\": \"Et ducimus repellendus nesciunt vel aut laudantium rerum.\"\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\": \"Soluta iure quidem aliquam soluta hic quam ipsam est. Et similique eius architecto omnis aut sint nemo commodi. Sed et in dolores. Ex sed magni.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"691.98\",\n            \"quantity\": \"383\",\n            \"notes\": \"Dolor dolorum maiores neque doloremque voluptas tempore quisquam ut.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"842.83\",\n            \"quantity\": \"130\",\n            \"notes\": \"Deserunt deleniti rerum id ut harum odio voluptas molestiae.\"\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\": \"Delectus qui odio ut corrupti est veritatis. Hic illo quidem reprehenderit. Qui odit repellat ullam rerum eveniet sit quia dolorum. Tenetur aperiam suscipit et qui ipsam. Laboriosam est voluptatem repudiandae voluptatem vitae quibusdam possimus eligendi labore. Nisi omnis est voluptas.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"867.29\",\n            \"quantity\": \"289\",\n            \"notes\": \"Dignissimos nostrum ut.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"995.29\",\n            \"quantity\": \"471\",\n            \"notes\": \"Deserunt ipsa et quis qui facere reprehenderit enim.\"\n        }      \n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/expense/entries/:expense_entry_id","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["expense","entries",":expense_entry_id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the expense entry</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"expense_entry_id"}]}},"response":[{"id":"b9614ae5-77f1-414d-9f6b-11078c47c1c9","name":"Update an expense entry","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"expense_entry\": {\n    \"casefile_id\": \"<integer>\",\n    \"user_id\": \"<integer>\",\n    \"tracking_category_id\": \"<integer>\",\n    \"entry_date\": \"<datestamp>\",\n    \"event_id\": null,\n    \"notes\": \"Aut sit deserunt. Et ratione blanditiis reprehenderit voluptas debitis ad. Nulla qui sed tenetur in labore. Molestiae libero ut est similique. Eum asperiores quis rerum praesentium itaque eius ex veritatis nesciunt. Sint nemo reiciendis maiores necessitatibus vel et.\",\n    \"expense_details\": [\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": \"<integer>\",\n            \"rate\": \"891.32\",\n            \"quantity\": \"869\",\n            \"notes\": \"Fugit cum porro iusto quia et.\"\n        },\n        {\n            \"finance_item_id\": \"<integer>\",\n            \"item_code_id\": null,\n            \"rate\": \"489.32\",\n            \"quantity\": \"776\",\n            \"notes\": \"Aut nostrum quidem cupiditate dolorum voluptatem similique.\"\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\": \"855.19\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"amet-adipisci-quae\",\n    \"notes\": \"voluptas ab sed\"\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\": \"499.47\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"dignissimos-maxime-rerum\",\n    \"notes\": \"dolores earum vero\"\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\": \"164.04\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"sint-dolore-aut\",\n    \"notes\": \"et minus neque\"\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\": \"586.19\",\n    \"paid_on\": \"<datestamp>\",\n    \"reference_number\": \"molestiae-qui-inventore\",\n    \"notes\": \"quibusdam vel officiis\"\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\": \"891\",\n    \"reference_number\": \"9e63985c-20d9-4740-a6b4-508981ce9942\",\n    \"notes\": \"Qui aut voluptates id aperiam.\"\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\": \"807\",\n    \"reference_number\": \"9ccc83e7-7018-46ef-aa0a-a176c16e88c2\",\n    \"notes\": \"Maiores alias qui rerum quia quo inventore earum quia rem.\"\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\": \"Billings License\",\n     \"license\": \"f0d34474-ee34-4455-bcae-0aec3192f986\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Odio ut mollitia. Rerum at cum voluptate eum sunt. Quia aut odio nobis et nihil. Suscipit nam voluptatem ullam nam blanditiis aut laboriosam. Culpa quia optio voluptas.\",\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\": \"Lake Theresia License\",\n     \"license\": \"ac9f897a-c8bb-4c2a-9377-0acd0091673e\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"<country-code>\",\n     \"notes\": \"Quo sunt aut qui eius voluptatum praesentium voluptatibus. Et veniam molestias rerum sed non vitae.\",\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\": \"Grahamshire License\",\n     \"license\": \"2727afbf-7a95-4af4-bbb3-a5db176c99d9\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Molestiae itaque nulla iste omnis. Unde maiores consequatur perferendis aut vero ratione nemo. Quia aliquid deleniti aspernatur et. Facilis quisquam labore asperiores voluptatem voluptatem architecto maiores.\",\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\": \"Gorczanychester License\",\n     \"license\": \"75c7f2cb-5c5f-41bf-a8f3-cb20b7cac74e\",\n     \"expires_on\": \"<datestamp>\",\n     \"state\": \"<string> | <state-code>\",\n     \"country\": \"US\",\n     \"notes\": \"Exercitationem assumenda rerum quia aspernatur. Quam facere fugit accusamus neque porro tempora vel sequi explicabo. Eos autem culpa accusamus veniam molestiae voluptates ipsa tempore. Ad qui rerum voluptatem sunt officia.\",\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":"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":"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\": \"Velda\",\n     \"middle_name\": \"Donny\",\n     \"last_name\": \"Osinski\",\n     \"title\": \"International Solutions Specialist\",\n     \"email\": \"Benny_Schaefer@example.com\",\n     \"phone_home\": \"905-713-8695\",\n     \"phone_mobile\": \"380-420-9262\",\n     \"phone_office\": \"782-253-0966 x975\",\n     \"phone_fax\": \"335-333-7611\",\n     \"address_1\": \"973 Milo Parks\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Athens-Clarke County\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"sunt-et-corporis\",\n     \"notes\": \"Non temporibus maiores voluptatem. Id minima velit non laborum accusamus voluptas neque odio. Nulla quaerat beatae ipsam. Rem perferendis laborum aliquid sequi perspiciatis qui. Distinctio et cumque sint.\",\n     \"admin_notes\": \"Quis ex quis. Nam pariatur eveniet aut doloribus. Sunt incidunt mollitia velit vel aut quia dolorem voluptatum nemo. Molestiae sit molestiae laborum velit aperiam quas a. Veniam quasi perferendis aspernatur voluptates et exercitationem tempora officiis.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"corrupti\"\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\": \"Guy\",\n     \"middle_name\": \"Thea\",\n     \"last_name\": \"Beier\",\n     \"title\": \"Direct Security Assistant\",\n     \"email\": \"Wyman.Abbott@example.org\",\n     \"phone_home\": \"418-344-0993\",\n     \"phone_mobile\": \"668-719-7731\",\n     \"phone_office\": \"283-482-3955 x274\",\n     \"phone_fax\": \"800-650-4818\",\n     \"address_1\": \"7034 Rocio Corner\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Goldnerfurt\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"alias-magnam-praesentium\",\n     \"notes\": \"Repellendus vel quis qui aut. Consequatur est ab quos repellat. At tempore sit neque qui corporis facilis eos eaque.\",\n     \"admin_notes\": \"Libero quibusdam praesentium ut impedit et in. Quaerat neque sint earum laboriosam provident. Aut fuga numquam aut ipsa.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"culpa\"\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\": \"Archibald\",\n     \"middle_name\": \"Carley\",\n     \"last_name\": \"Rath\",\n     \"title\": \"Future Branding Producer\",\n     \"email\": \"Jedediah10@example.com\",\n     \"phone_home\": \"659-568-5851\",\n     \"phone_mobile\": \"225-732-6889\",\n     \"phone_office\": \"707-848-8432 x575\",\n     \"phone_fax\": \"363-217-9295\",\n     \"address_1\": \"24066 Towne Manors\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Dudleyton\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"eius-assumenda-officiis\",\n     \"notes\": \"At qui quia quisquam voluptatem. Nihil ratione accusamus ducimus consequuntur quibusdam consequatur quo iusto. Sit sunt rem modi asperiores excepturi quia. Illum quis sit nostrum velit odit vel. Id velit vel perspiciatis fuga. Nemo rerum est ex non.\",\n     \"admin_notes\": \"Omnis numquam quo veritatis. Odio est perspiciatis eligendi quas vitae minima.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"quaerat\"\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\": \"Broderick\",\n     \"middle_name\": \"Jeff\",\n     \"last_name\": \"Ledner\",\n     \"title\": \"Direct Marketing Representative\",\n     \"email\": \"Angeline17@example.net\",\n     \"phone_home\": \"558-462-6923\",\n     \"phone_mobile\": \"726-829-6918\",\n     \"phone_office\": \"624-950-0379 x519\",\n     \"phone_fax\": \"493-706-9233\",\n     \"address_1\": \"733 Lindgren Ridge\",\n     \"address_2\": \"\",\n     \"address_3\": \"\",\n     \"city\": \"Kacishire\",\n     \"state\": \"<string>\",\n     \"zip\": \"<string>\",\n     \"country\": \"<country-code>\",     \n     \"birthday\": \"<datestamp>\",\n     \"language\": \"en\",\n     \"account_code\": \"qui-rerum-animi\",\n     \"notes\": \"Adipisci sunt recusandae laboriosam. Architecto est dicta ipsum doloremque est.\",\n     \"admin_notes\": \"Omnis reprehenderit expedita. Facilis dolorem aut porro. Velit qui veniam rem totam officia possimus dolore deleniti iusto. Molestiae ut temporibus sequi a nemo nemo autem quasi et.\",\n     \"custom_fields\": [\n    \t{\n    \t\t\"id\": <integer>,\n    \t\t\"value\": \"veritatis\"\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 Emails (Aliases)","item":[{"name":"Get a staff email","id":"e0075045-7a8d-46fb-b9fb-ab3ef3b456a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/staff/emails/: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","emails",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"9cc23a6d-c812-402e-854d-348ceae0acf4","name":"Get a staff email","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/staff/emails/:id","host":["/api/v1"],"path":["staff","emails",":id"],"variable":[{"key":"id","value":"<integer>","description":"ID of the email"}]}},"status":"OK","code":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    \"email\": \"emailalias@example.org\",\n    \"created_at\": \"2026-09-16 18:27:05\",\n    \"updated_at\": \"2026-09-16 18:27:05\",\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"qui-quia-provident\",\n        \"first_name\": \"Cortez\",\n        \"last_name\": \"Cormier\",\n        \"email\": \"Ezequiel.Stroman11@example.org\",\n        \"name\": \"Cormier, Cortez\",\n        \"proper_name\": \"Cortez Cormier\"\n    }\n}"}],"_postman_id":"e0075045-7a8d-46fb-b9fb-ab3ef3b456a5"},{"name":"List staff emails","id":"c0e7d391-f614-427b-83d6-1544ae459e94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/staff/emails","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"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","emails"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"1a94ba7d-d2bc-47ed-b9c7-859fd6e99905","name":"List staff emails","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/staff/emails"},"status":"OK","code":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        \"email\": \"emailalias@example.org\",\n        \"created_at\": \"2026-09-16 18:27:05\",\n        \"updated_at\": \"2026-09-16 18:27:05\",\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    }\n]"}],"_postman_id":"c0e7d391-f614-427b-83d6-1544ae459e94"},{"name":"Search staff emails","id":"d2fc85f1-dc9f-4d5e-86d2-266b4760c835","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":"/api/v1/staff/emails?id=<integer>&user=<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":["staff","emails"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the user</p>\n","type":"text/plain"},"key":"user","value":"<integer>"}],"variable":[]}},"response":[{"id":"806642ba-8cdb-40be-88f9-f29116e00e82","name":"Search staff emails","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"url":{"raw":"/api/v1/staff/emails?id=<integer>&user=<integer>","host":["/api/v1"],"path":["staff","emails"],"query":[{"key":"id","value":"<integer>","description":"ID of the email"},{"key":"user","value":"<integer>","description":"ID of the user"}]}},"status":"OK","code":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        \"email\": \"Clyde.Turcotte@example.org\",\n        \"created_at\": \"2026-09-16 18:36:51\",\n        \"updated_at\": \"2026-09-16 18:36:51\",\n        \"User\": {\n            \"id\": \"1\",\n            \"account_code\": \"qui-quia-provident\",\n            \"first_name\": \"Cortez\",\n            \"last_name\": \"Cormier\",\n            \"email\": \"Ezequiel.Stroman11@example.org\",\n            \"name\": \"Cormier, Cortez\",\n            \"proper_name\": \"Cortez Cormier\"\n        }\n    }\n]"}],"_postman_id":"d2fc85f1-dc9f-4d5e-86d2-266b4760c835"},{"name":"Create a staff email","id":"3a637193-5eb5-4966-b03a-f9ab0c7ab536","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"staff_email\": {\n        \"user_id\": \"<integer>\",\n        \"email\": \"Jessie_Littel@example.org\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/emails","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"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","emails"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"4af03b5e-bf20-4875-95f2-90d0a7881d56","name":"Create a staff email","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"staff_email\": {\n        \"user_id\": \"<integer>\",\n        \"email\": \"Elnora.Abbott@example.org\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/emails"},"status":"OK","code":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    \"email\": \"Reyes_Veum63@example.net\",\n    \"created_at\": \"2026-09-16 18:33:13\",\n    \"updated_at\": \"2026-09-16 18:33:13\",\n    \"User\": {\n        \"id\": \"1\",\n        \"account_code\": \"qui-quia-provident\",\n        \"first_name\": \"Cortez\",\n        \"last_name\": \"Cormier\",\n        \"email\": \"Ezequiel.Stroman11@example.org\",\n        \"name\": \"Cormier, Cortez\",\n        \"proper_name\": \"Cortez Cormier\"\n    }\n}"}],"_postman_id":"3a637193-5eb5-4966-b03a-f9ab0c7ab536"},{"name":"Delete a staff email","id":"ae82dc1d-f93f-4779-ab5a-c06fc3d520b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"staff_email\": {\n        \"confirm\": \"delete\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/api/v1/staff/emails/: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","emails",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the email</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"0638a66f-c393-43f8-a768-7393ee69456e","name":"Delete a staff email","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"staff_email\": {\n        \"confirm\": \"delete\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"/api/v1/staff/emails/:id","host":["/api/v1"],"path":["staff","emails",":id"],"variable":[{"key":"id","value":"<integer>","description":"ID of the email"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"error\": false,\n    \"code\": 200,\n    \"message\": \"Deleted \\\"emailalias@example.org\\\"\"\n}"}],"_postman_id":"ae82dc1d-f93f-4779-ab5a-c06fc3d520b4"}],"id":"1a214479-9997-40b0-8ca8-4c537dffe11d","description":"<p>Email aliases associate additional email addresses with a user profile in Trackops, often used for inbound email association and single sign-on integrations.</p>\n<p><strong>See also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/360041905231-Adding-an-email-alias-for-a-client-contact\">Adding an email alias</a></p>\n","_postman_id":"1a214479-9997-40b0-8ca8-4c537dffe11d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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\": \"Voluptatem in omnis quis hic. Ut voluptatem occaecati.\",\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\": \"Libero deserunt reiciendis rerum in officia blanditiis dolore et. Aspernatur laborum et consequatur qui iure rerum delectus. Praesentium ipsum et qui quo dolores odit dolorum aliquam natus. Quia sit tempore sint dolores eligendi.\",\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\": \"395.11\" \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\": \"798.53\" \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\": \"Santa\",\n          \"middle_name\": \"Bryce\",\n          \"last_name\": \"Streich\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Repudiandae rerum recusandae ab provident iure mollitia.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Itaque dolores aut eos. Alias est doloribus ad.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"70324 Wilderman Greens\",\n          \"address_2\": \"Apt #357\",\n          \"address_3\": \"\",\n          \"city\": \"Moline\",\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\": \"Charlene\",\n          \"middle_name\": \"Alf\",\n          \"last_name\": \"Hahn\"\n        }\n      },     \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Nulla molestiae magnam omnis laborum et blanditiis et.\"\n      },      \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Ad aliquid eaque qui. Soluta error eius sint voluptates consequuntur. Perspiciatis mollitia non accusamus dolorem quia dolorum voluptates. Omnis nostrum porro est quis qui.\"\n      },\n      {\n        \"id\": \"<integer>\", \n        \"value\": \"<datestamp>\"\n      },              \n      {\n        \"id\": \"<integer>\",\n        \"value\": {\n          \"address_1\": \"39962 Freeman Neck\",\n          \"address_2\": \"Apt #139\",\n          \"address_3\": \"\",\n          \"city\": \"Robinton\",\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\": \"Anya\",\n          \"middle_name\": \"Lyric\",\n          \"last_name\": \"Considine\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Voluptatem neque aliquid. In voluptate quo odit alias. Nam iste vel occaecati doloribus ut enim sunt consectetur porro.\"\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\": \"Jairo\",\n          \"middle_name\": \"Evalyn\",\n          \"last_name\": \"Marvin\"\n        }\n      },       \n      {\n        \"id\": \"<integer>\",\n        \"value\": \"Et tempora et placeat. Occaecati rerum sunt. Porro quas labore deleniti. Adipisci quo ut enim sed quia. Dignissimos occaecati totam rerum voluptas error est nisi. Est soluta at culpa earum et soluta.\"\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\": \"distinctio animi enim\",\n     \"body\": \"Recusandae est fuga dolores at numquam placeat cupiditate neque aut. Totam velit vitae voluptatem est et labore. Accusamus minima nostrum quia nemo.\",\n     \"address\": {\n         \"address_1\": \"809 Shania Lake\",\n         \"address_2\": \"STE 668\",\n         \"address_3\": \"\",\n         \"city\": \"Morganville\",\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\": \"laudantium velit laborum\",\n     \"body\": \"Eos ipsam id impedit. Vero nobis corporis illum atque eos impedit consequatur. Repellat dolorem rem consequatur ut accusamus harum provident ut. Itaque enim qui reiciendis voluptas. Ratione aut dolore velit enim sint earum nesciunt sed sit.\",\n     \"address\": {\n         \"address_1\": \"5705 Brooke Trail\",\n         \"address_2\": \"STE 928\",\n         \"address_3\": \"\",\n         \"city\": \"Birmingham\",\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\": \"ut odit et\",\n     \"body\": \"Consequatur id ut quos. Quos sed quo esse reprehenderit modi maiores. Neque molestiae consequatur repellat. Nemo et aut dolor et tenetur dolorem quis. Dolorem voluptas magnam non molestiae veritatis.\",\n     \"address\": {\n         \"address_1\": \"0592 Cole Causeway\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"Eberttown\",\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\": \"facilis amet culpa\",\n     \"body\": \"Dolorem sint inventore temporibus. Placeat exercitationem omnis similique qui qui veniam cumque quas. Natus et dolore sequi quia voluptatibus excepturi. Nemo et ratione aut qui maxime provident eius harum necessitatibus. Cupiditate magni enim ipsum corporis autem quis saepe amet.\",\n     \"address\": {\n         \"address_1\": \"708 Alison Crest\",\n         \"address_2\": \"\",\n         \"address_3\": \"\",\n         \"city\": \"West Audietown\",\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"}}},{"name":"Workflows","item":[{"name":"Get a workflow","id":"c9b4e2bd-131f-4e12-bdde-6b8061d7325d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflows/: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":["workflows",":id"],"host":["/api/v1"],"query":[],"variable":[{"description":{"content":"<p>ID of the workflow</p>\n","type":"text/plain"},"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"0243d7fe-ee8f-495c-90bb-0ff8c900e840","name":"Get a workflow","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/workflows/:id","host":["/api/v1"],"path":["workflows",":id"],"variable":[{"key":"id","value":"<integer>","description":"ID of the workflow"}]}},"status":"OK","code":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\": \"Standard\",\n    \"notes\": \"The default workflow\",\n    \"created_at\": \"2025-05-14 19:53:56\",\n    \"updated_at\": \"2025-05-14 19:54:22\"\n}"}],"_postman_id":"c9b4e2bd-131f-4e12-bdde-6b8061d7325d"},{"name":"List workflows","id":"437b1a4b-44b1-4ed8-95cd-24d5861e5c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflows","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["workflows"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c6e52b44-d7c5-4fe0-9c67-482cb0228928","name":"List workflows","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflows"},"status":"OK","code":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\": \"Standard\",\n        \"notes\": \"The default workflow\",\n        \"created_at\": \"2025-05-14 19:53:56\",\n        \"updated_at\": \"2025-05-14 19:54:22\"\n    }\n]"}],"_postman_id":"437b1a4b-44b1-4ed8-95cd-24d5861e5c3f"}],"id":"77e55acd-d7e6-4307-a315-00e3929cce5d","description":"<p>A Workflow determines the case statuses that a case flows through from start to finish.</p>\n<p><strong>see also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/36944946614157-Managing-Workflows\">Managing Workflows</a></p>\n","_postman_id":"77e55acd-d7e6-4307-a315-00e3929cce5d","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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":"Workflow Actions","item":[{"name":"Get a workflow action","id":"f7632248-f23d-4a38-be01-13c956ba533d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/actions/: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":["workflow","actions",":id"],"host":["/api/v1"],"query":[],"variable":[{"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"7dd6d8d4-2ef0-4847-a85e-97b583550428","name":"Get a workflow action","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/workflow/actions/:id","host":["/api/v1"],"path":["workflow","actions",":id"],"variable":[{"key":"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    \"case_status_id\": \"4\",\n    \"client_id\": null,\n    \"name\": \"Q&A\",\n    \"notes\": \"1. Verify all expenses are approved\\r\\n2. Verify all case reviews are complete\\r\\n3. Verify report has been delivered.\",\n    \"turnaround_in_minutes\": \"1440\",\n    \"is_blocking\": true,\n    \"created_at\": \"2026-09-16 19:39:05\",\n    \"updated_at\": \"2026-09-16 19:39:05\"\n}"}],"_postman_id":"f7632248-f23d-4a38-be01-13c956ba533d"},{"name":"List workflow actions","id":"4d36096d-1fea-4e32-be54-1575a49d5fad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/actions","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_token/token"}]},"isInherited":true,"source":{"_postman_id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","id":"d8e9da7c-3fc5-47e5-82b5-8c2a4c7576b8","name":"Trackops Developer API","type":"collection"}},"urlObject":{"path":["workflow","actions"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c9dd3fd3-3611-433c-929a-d4d7456f16cb","name":"List workflow actions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/actions"},"status":"OK","code":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        \"case_status_id\": \"4\",\n        \"client_id\": null,\n        \"name\": \"Q&A\",\n        \"notes\": \"1. Verify all expenses are approved\\r\\n2. Verify all case reviews are complete\\r\\n3. Verify report has been delivered.\",\n        \"turnaround_in_minutes\": \"1440\",\n        \"is_blocking\": true,\n        \"created_at\": \"2026-09-16 19:39:05\",\n        \"updated_at\": \"2026-09-16 19:39:05\"\n    }\n]"}],"_postman_id":"4d36096d-1fea-4e32-be54-1575a49d5fad"}],"id":"b83047a2-27bd-4911-8733-2bd2e1c38dc1","description":"<p>Workflow actions provide an easy way to manage administrative jobs or checkpoints throughout the lifecycle of a case.</p>\n<p><strong>see also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/36947162333965-Managing-Workflow-Actions\">Managing Workflow Actions</a></p>\n","_postman_id":"b83047a2-27bd-4911-8733-2bd2e1c38dc1","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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":"Workflow Action Items","item":[{"name":"List workflow items","id":"af595367-a1c6-4a18-a673-d7d51e174444","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/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":["workflow","items"],"host":["/api/v1"],"query":[],"variable":[]}},"response":[{"id":"c2ca55a1-650b-4dea-a064-040b3fea347b","name":"List workflow items","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/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\": \"1\",\n        \"casefile_id\": \"19\",\n        \"item_status\": \"0\",\n        \"due_at\": \"2026-09-17 19:44:39\",\n        \"assigned_at\": null,\n        \"completed_at\": null,\n        \"notes\": \"\",\n        \"created_at\": \"2026-09-16 19:44:39\",\n        \"updated_at\": \"2026-09-16 19:44:39\",\n        \"formatted_id\": \"#00001\",\n        \"WorkflowAction\": {\n            \"id\": \"1\",\n            \"name\": \"Q&A\",\n            \"turnaround_in_minutes\": \"1440\",\n            \"is_blocking\": true\n        },\n        \"AssignedTo\": null\n    }\n]"}],"_postman_id":"af595367-a1c6-4a18-a673-d7d51e174444"},{"name":"Get a workflow item","id":"9102409f-7dad-417c-aa42-9aa02ce2f64d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/api/v1/workflow/items/: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":["workflow","items",":id"],"host":["/api/v1"],"query":[],"variable":[{"type":"any","value":"<integer>","key":"id"}]}},"response":[{"id":"f7f6a19e-6b48-40f5-8a2e-6eb51e722e5d","name":"Get a workflow item","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"/api/v1/workflow/items/:id","host":["/api/v1"],"path":["workflow","items",":id"],"variable":[{"key":"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    \"casefile_id\": \"19\",\n    \"item_status\": \"0\",\n    \"due_at\": \"2026-09-17 19:44:39\",\n    \"assigned_at\": null,\n    \"completed_at\": null,\n    \"notes\": \"\",\n    \"created_at\": \"2026-09-16 19:44:39\",\n    \"updated_at\": \"2026-09-16 19:44:39\",\n    \"formatted_id\": \"#00001\",\n    \"WorkflowAction\": {\n        \"id\": \"1\",\n        \"name\": \"Q&A\",\n        \"turnaround_in_minutes\": \"1440\",\n        \"is_blocking\": true\n    },\n    \"AssignedTo\": null\n}"}],"_postman_id":"9102409f-7dad-417c-aa42-9aa02ce2f64d"},{"name":"Search workflow items","id":"2520879a-531d-43a3-96a3-16efc34ae1aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/api/v1/workflow/items?id=<integer>&item_status=<integer>&case=<integer>&user=<integer>&workflow_action=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&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":["workflow","items"],"host":["/api/v1"],"query":[{"description":{"content":"<p>ID of the workflow item</p>\n","type":"text/plain"},"key":"id","value":"<integer>"},{"description":{"content":"<p>ID of the workflow item status</p>\n","type":"text/plain"},"key":"item_status","value":"<integer>"},{"description":{"content":"<p>ID of the case associated with the workflow item</p>\n","type":"text/plain"},"key":"case","value":"<integer>"},{"description":{"content":"<p>ID of the user assigned to the workflow item</p>\n","type":"text/plain"},"key":"user","value":"<integer>"},{"description":{"content":"<p>ID of the workflow action</p>\n","type":"text/plain"},"key":"workflow_action","value":"<integer>"},{"description":{"content":"<p>ISO date of the date assigned \"from\"</p>\n","type":"text/plain"},"key":"assigned_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date assigned \"to\"</p>\n","type":"text/plain"},"key":"assigned_to","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date completed \"from\"</p>\n","type":"text/plain"},"key":"completed_from","value":"<datestamp>"},{"description":{"content":"<p>ISO date of the date completed \"to\"</p>\n","type":"text/plain"},"key":"completed_to","value":"<datestamp>"},{"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":"4cdb9131-5695-4a96-a5bf-efdcd1645cdb","name":"Search workflow items","originalRequest":{"method":"GET","header":[],"url":{"raw":"/api/v1/workflow/items?id=<integer>&item_status=<integer>&case=<integer>&user=<integer>&workflow_action=<integer>&assigned_from=<datestamp>&assigned_to=<datestamp>&completed_from=<datestamp>&completed_to=<datestamp>&created_from=<datestamp>&created_to=<datestamp>&updated_from=<datestamp>&updated_to=<datestamp>&page=<integer>","host":["/api/v1"],"path":["workflow","items"],"query":[{"key":"id","value":"<integer>","description":"ID of the workflow item"},{"key":"item_status","value":"<integer>","description":"ID of the workflow item status"},{"key":"case","value":"<integer>","description":"ID of the case associated with the workflow item"},{"key":"user","value":"<integer>","description":"ID of the user assigned to the workflow item"},{"key":"workflow_action","value":"<integer>","description":"ID of the workflow action"},{"key":"assigned_from","value":"<datestamp>","description":"ISO date of the date assigned \"from\""},{"key":"assigned_to","value":"<datestamp>","description":"ISO date of the date assigned \"to\""},{"key":"completed_from","value":"<datestamp>","description":"ISO date of the date completed \"from\""},{"key":"completed_to","value":"<datestamp>","description":"ISO date of the date completed \"to\""},{"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\": \"1\",\n        \"casefile_id\": \"19\",\n        \"item_status\": \"0\",\n        \"due_at\": \"2026-09-17 19:44:39\",\n        \"assigned_at\": null,\n        \"completed_at\": null,\n        \"notes\": \"\",\n        \"created_at\": \"2026-09-16 19:44:39\",\n        \"updated_at\": \"2026-09-16 19:44:39\",\n        \"formatted_id\": \"#00001\",\n        \"WorkflowAction\": {\n            \"id\": \"1\",\n            \"name\": \"Q&A\",\n            \"turnaround_in_minutes\": \"1440\",\n            \"is_blocking\": true\n        },\n        \"AssignedTo\": null\n    }\n]"}],"_postman_id":"2520879a-531d-43a3-96a3-16efc34ae1aa"}],"id":"3dab56d0-56af-4463-9b40-9522477bc349","description":"<p>Workflow action items are the individual tasks that are generated from workflow actions.</p>\n<p><strong>see also:</strong> <a href=\"https://support.trackops.com/hc/en-us/articles/36947162333965-Managing-Workflow-Actions\">Managing Workflow Actions</a></p>\n","_postman_id":"3dab56d0-56af-4463-9b40-9522477bc349","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"full_access_username"},{"key":"password","value":"api_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":"191f55ef-5932-432a-aa57-2ebb5f7bf44d","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":"5c4005f1-9793-4fd0-9b84-e2c84e8f424d","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>"},{"key":"budget_detail_id","value":"<integer>"},{"key":"employee_email_id","value":"<integer>"},{"key":"client_contact_email_id","value":"<integer>"},{"key":"workflow_action_id","value":"<integer>"},{"key":"workflow_item_id","value":"<integer>"},{"key":"tax_rate_id","value":"<integer>"},{"key":"invoice_time_item_id","value":"<integer>"}]}