{"info":{"_postman_id":"67f16f46-0fc7-44a3-a30c-4cf687f69c5c","name":"Google-Auth-Api","description":"<html><head></head><body><p>Our APIs make it easy to customize NextAgency for your company. From creating new leads to custom apps for backend data, we'll walk you through the tools you need to build new integrations and extend the power of NextAgency.</p>\n<p>We have resources for each API to help you understand their use case, how to build with them, and a complete API reference. If you have any questions, feel free to reach out to us at <a href=\"mailto:support@nextagency.com\">support@nextagency.com</a>.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"10991123","collectionId":"67f16f46-0fc7-44a3-a30c-4cf687f69c5c","publishedId":"2sB3QJMpxP","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-10-06T14:32:27.000Z"},"item":[{"name":"Authentication","item":[{"name":"Oauth Code","id":"38473e2b-2088-47ee-a5dc-26f31c1b0f3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/oauth/authorize?client_id={{client_id}}&redirect_uri={{redirect_uri}}&response_type=code&scope={{scope}}&state={{state}}\n","urlObject":{"protocol":"https","path":["oauth","authorize"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Your NextAgency's application ID</p>\n","type":"text/plain"},"key":"client_id","value":"{{client_id}}"},{"description":{"content":"<p>The URI to which the user will be redirected once authentication completes</p>\n","type":"text/plain"},"key":"redirect_uri","value":"{{redirect_uri}}"},{"description":{"content":"<p>Default set to code</p>\n","type":"text/plain"},"key":"response_type","value":"code"},{"description":{"content":"<p>Deefault set to Read and Write</p>\n","type":"text/plain"},"key":"scope","value":"{{scope}}"},{"description":{"content":"<p>A non-guessable, unique state.</p>\n","type":"text/plain"},"key":"state","value":"{{state}}\n"}],"variable":[]}},"response":[{"id":"aa94f573-651a-4aa0-a872-2d9385bb4e87","name":"Oauth Code","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/oauth/authorize?client_id={{client_id}}&redirect_uri={{redirect_uri}}&response_type=code&scope={{scope}}&state={{state}}\n","protocol":"https","host":["yahoo.nextbroker.io"],"path":["oauth","authorize"],"query":[{"key":"client_id","value":"{{client_id}}","description":"Your NextAgency's application ID"},{"key":"redirect_uri","value":"{{redirect_uri}}","description":"The URI to which the user will be redirected once authentication completes"},{"key":"response_type","value":"code","description":"Default set to code"},{"key":"scope","value":"{{scope}}","description":"Deefault set to Read and Write"},{"key":"state","value":"{{state}}\n","description":"A non-guessable, unique state."}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n\t\"code\": \"your_auth_code\",\n\t\"state\": \"non-guessable state if provided\"\n}"}],"_postman_id":"38473e2b-2088-47ee-a5dc-26f31c1b0f3a"},{"name":"Access Token","id":"5ed31719-fcad-4826-8afa-8fa16bbd655f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"client_id\",\n    \"client_secret\": \"client_secret\",\n    \"redirect_uri\": \"redirect_uri\",\n    \"code\": \"code\",\n    \"grant_type\": \"authorization_code or refresh_token\",\n    \"refresh_token\": \"refresh_token\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/oauth/token","description":"<p>Exchange your auth_code for an access_token or refresh your token by using this endpoint.</p>\n","urlObject":{"protocol":"https","path":["oauth","token"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"61d88fb8-20e8-43de-a0ff-b5aebcb7d4c9","name":"Access Token","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"client_id\",\n    \"client_secret\": \"client_secret\",\n    \"redirect_uri\": \"redirect_uri\",\n    \"code\": \"code\",\n    \"grant_type\": \"authorization_code or refresh_token\",\n    \"refresh_token\": \"refresh_token\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/oauth/token"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"access_token\",\n    \"token_type\": \"Bearer\",\n    \"expires_in\": 86400,\n    \"refresh_token\": \"refresh_token\",\n    \"scope\": \"read write\",\n    \"created_at\": 1586268123\n}"}],"_postman_id":"5ed31719-fcad-4826-8afa-8fa16bbd655f"}],"id":"0264d32b-7acf-4165-9651-2d2f59c3d817","description":"<p>To access any API endpoint, you must first be provided an OAuth Bearer token. This Bearer token must then be included as an Authorization header within each request. Please remember that it's your responsibility to secure this token. It provides access to your NextAgency data.</p>\n<p>NextAgency uses the OAuth 2.0 protocol for authenticating and authorizing your applications. The grant types supported are: \"authorization_code\" and \"refresh_token\".</p>\n<p>The typical flow will be:</p>\n<ol>\n<li><p>Your app sends the user to the /oauth/authorize endpoint with the required parameters.</p>\n</li>\n<li><p>The user will be asked to logs in or if already logged in it takes user to the authorization screen.</p>\n</li>\n<li><p>The user then sees a confirmation to grant your application access.</p>\n</li>\n<li><p>The user grants or denies access.</p>\n</li>\n<li><p>NextAgency will send the relevant information to your redirect_uri, including auth_code if the user granted access.</p>\n</li>\n<li><p>Your app will then call the /oauth/token endpoint to make the exchange for an access_token with your auth_code.</p>\n</li>\n</ol>\n","event":[{"listen":"prerequest","script":{"id":"bbc0eba3-bb6f-4d6b-97a0-38f2c5dea041","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ee0f5352-873d-4a35-bc66-ec11ba7d375d","type":"text/javascript","exec":[""]}}],"_postman_id":"0264d32b-7acf-4165-9651-2d2f59c3d817"},{"name":"Cases","item":[{"name":"Cases","id":"3b0a0155-505a-46b5-99f7-e8e09d9c787d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses?limit=10&offset=0","description":"<p>Use this endpoint to fetch all cases of an agencyy.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"aea759bc-539d-4559-8737-b69b7ce1b4ca","name":"Cases","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 08:04:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"8ca1b29e1810903acf22cca025a85ce8\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"482495ec-0348-4503-8655-ec09398ceec8"},{"key":"X-Runtime","value":"0.204318"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"d1dbf24b-40e2-44c5-a585-9d35130a291a\",\n            \"name\": null,\n            \"first_name\": \"NEW EMP\",\n            \"last_name\": \"HAHAHA\",\n            \"sales_status\": \"Client\",\n            \"stage\": null,\n            \"market_segment\": \"Individual\",\n            \"owner\": \"Michael Tomlinson\",\n            \"ssn\": \"\",\n            \"phone_number\": \"\",\n            \"naics_code\": null,\n            \"sic_code\": null,\n            \"website\": null,\n            \"url\": null,\n            \"tax_id\": null,\n            \"type\": null,\n            \"tobacco_user\": \"No\",\n            \"gender\": null,\n            \"birthdate\": null,\n            \"email\": null,\n            \"age\": null,\n            \"mbi_id\": null,\n            \"created_at\": \"2026-03-25T12:57:32Z\",\n            \"updated_at\": \"2026-04-09T04:27:25Z\",\n            \"physical_address\": {\n                \"address\": \"\",\n                \"address_2\": \"\",\n                \"city\": \"\",\n                \"county\": null,\n                \"state\": \"\",\n                \"zipcode\": \"\"\n            },\n            \"mailing_address\": {\n                \"address\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"county\": null,\n                \"state\": null,\n                \"zipcode\": null\n            }\n        },\n        {\n            \"id\": \"db62dc69-3068-4df8-9c84-6a620cf867ad\",\n            \"name\": null,\n            \"first_name\": \"Test\",\n            \"last_name\": \"\",\n            \"sales_status\": \"Prospect\",\n            \"stage\": null,\n            \"market_segment\": \"Individual\",\n            \"owner\": \"Vinil K\",\n            \"ssn\": \"\",\n            \"phone_number\": null,\n            \"naics_code\": null,\n            \"sic_code\": null,\n            \"website\": null,\n            \"url\": null,\n            \"tax_id\": null,\n            \"type\": null,\n            \"tobacco_user\": \"No\",\n            \"gender\": null,\n            \"birthdate\": null,\n            \"email\": null,\n            \"age\": null,\n            \"mbi_id\": null,\n            \"created_at\": \"2026-03-03T21:20:12Z\",\n            \"updated_at\": \"2026-04-09T03:26:37Z\",\n            \"physical_address\": {\n                \"address\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"county\": null,\n                \"state\": null,\n                \"zipcode\": null\n            },\n            \"mailing_address\": {\n                \"address\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"county\": null,\n                \"state\": null,\n                \"zipcode\": null\n            }\n        },\n        {\n            \"id\": \"04f0c526-4a21-43d7-845a-32784a70d53a\",\n            \"name\": \"\",\n            \"first_name\": \"new\",\n            \"last_name\": \"employee\",\n            \"sales_status\": \"Client\",\n            \"stage\": null,\n            \"market_segment\": \"Individual\",\n            \"owner\": \"Vinil K\",\n            \"ssn\": \"\",\n            \"phone_number\": \"111-111-1111\",\n            \"naics_code\": \"\",\n            \"sic_code\": \"\",\n            \"website\": \"\",\n            \"url\": \"\",\n            \"tax_id\": \"\",\n            \"type\": \"\",\n            \"tobacco_user\": \"No\",\n            \"gender\": null,\n            \"birthdate\": \"2001-03-08\",\n            \"email\": null,\n            \"age\": 25,\n            \"mbi_id\": \"\",\n            \"created_at\": \"2026-01-16T21:53:09Z\",\n            \"updated_at\": \"2026-04-09T02:07:49Z\",\n            \"physical_address\": {\n                \"address\": \"\",\n                \"address_2\": \"\",\n                \"city\": \"\",\n                \"county\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\"\n            },\n            \"mailing_address\": {\n                \"address\": \"\",\n                \"address_2\": \"\",\n                \"city\": \"\",\n                \"county\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\"\n            }\n        },\n        {\n            \"id\": \"f7f5998c-dd6d-4be1-817c-a868956aa03b\",\n            \"name\": null,\n            \"first_name\": \"Search\",\n            \"last_name\": \"\",\n            \"sales_status\": \"Prospect\",\n            \"stage\": null,\n            \"market_segment\": \"Individual\",\n            \"owner\": \"1 Taunamera\",\n            \"ssn\": \"\",\n            \"phone_number\": null,\n            \"naics_code\": null,\n            \"sic_code\": null,\n            \"website\": null,\n            \"url\": null,\n            \"tax_id\": null,\n            \"type\": null,\n            \"tobacco_user\": \"No\",\n            \"gender\": null,\n            \"birthdate\": null,\n            \"email\": null,\n            \"age\": null,\n            \"mbi_id\": null,\n            \"created_at\": \"2026-01-07T23:29:50Z\",\n            \"updated_at\": \"2026-04-09T01:46:37Z\",\n            \"physical_address\": {\n                \"address\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"county\": null,\n                \"state\": null,\n                \"zipcode\": null\n            },\n            \"mailing_address\": {\n                \"address\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"county\": null,\n                \"state\": null,\n                \"zipcode\": null\n            }\n        },\n        {\n            \"id\": \"24a92407-e0cb-490f-b599-90b99a22defd\",\n            \"name\": \"\",\n            \"first_name\": \"Daniel\",\n            \"last_name\": \"Vettori\",\n            \"sales_status\": \"Active\",\n            \"stage\": null,\n            \"market_segment\": \"Individual\",\n            \"owner\": \"Vinil K\",\n            \"ssn\": \"456-78-9067\",\n            \"phone_number\": \"123-433-2323\",\n            \"naics_code\": \"\",\n            \"sic_code\": \"\",\n            \"website\": \"\",\n            \"url\": \"\",\n            \"tax_id\": \"\",\n            \"type\": \"\",\n            \"tobacco_user\": \"No\",\n            \"gender\": \"male\",\n            \"birthdate\": \"2026-01-01\",\n            \"email\": null,\n            \"age\": 0,\n            \"mbi_id\": \"\",\n            \"created_at\": \"2026-01-07T16:30:58Z\",\n            \"updated_at\": \"2026-04-09T01:41:37Z\",\n            \"physical_address\": {\n                \"address\": \"1\",\n                \"address_2\": \"#1\",\n                \"city\": \"San Francisco\",\n                \"county\": \"San Francisco\",\n                \"state\": \"CA\",\n                \"zipcode\": \"94102\"\n            },\n            \"mailing_address\": {\n                \"address\": \"1\",\n                \"address_2\": \"1\",\n                \"city\": \"San Francisco\",\n                \"county\": \"San Francisco\",\n                \"state\": \"CA\",\n                \"zipcode\": \"94102\"\n            }\n        }\n    ]\n}"}],"_postman_id":"3b0a0155-505a-46b5-99f7-e8e09d9c787d"},{"name":"Get Case","id":"519d7be8-3299-4243-8054-6aa01f047ecd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181","description":"<p>Get a particular case of an agency by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"05bbc028-d855-4b25-9fad-7ef660150b10","name":"Get Case","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 08:07:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"ae0fcb1172d838332c101974e6837609\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2227f7c9-86dd-443e-a7a4-4897e61af670"},{"key":"X-Runtime","value":"0.118700"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"db62dc69-3068-4df8-9c84-6a620cf867ad\",\n        \"name\": null,\n        \"first_name\": \"Test\",\n        \"last_name\": \"\",\n        \"sales_status\": \"Prospect\",\n        \"stage\": null,\n        \"market_segment\": \"Individual\",\n        \"owner\": \"Vinil K\",\n        \"ssn\": \"\",\n        \"phone_number\": null,\n        \"naics_code\": null,\n        \"sic_code\": null,\n        \"website\": null,\n        \"url\": null,\n        \"tax_id\": null,\n        \"type\": null,\n        \"tobacco_user\": \"No\",\n        \"gender\": null,\n        \"birthdate\": null,\n        \"email\": null,\n        \"age\": null,\n        \"mbi_id\": null,\n        \"created_at\": \"2026-03-03T21:20:12Z\",\n        \"updated_at\": \"2026-04-09T03:26:37Z\",\n        \"physical_address\": {\n            \"address\": null,\n            \"address_2\": null,\n            \"city\": null,\n            \"county\": null,\n            \"state\": null,\n            \"zipcode\": null\n        },\n        \"mailing_address\": {\n            \"address\": null,\n            \"address_2\": null,\n            \"city\": null,\n            \"county\": null,\n            \"state\": null,\n            \"zipcode\": null\n        }\n    }\n}"}],"_postman_id":"519d7be8-3299-4243-8054-6aa01f047ecd"},{"name":"Case Contacts","id":"debc2b57-e290-4958-bd15-56341ebe92d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/contacts","description":"<p>Use this endpoint to fetch all contacts of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","contacts"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"6a43c78c-3dcc-40e0-a123-88775cc2d22f","name":"Case Contacts","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/contacts"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 08 Apr 2026 13:05:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"f2d36722b7e8bd4e8c30ed8db90d5220\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f74bdcac-e49c-4d6c-8ae3-ed435193b13a"},{"key":"X-Runtime","value":"0.135173"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contact_info\": {\n                \"id\": \"9be07172-ae07-4e8e-a92a-7601a7f98369\",\n                \"first_name\": \"Mike\",\n                \"last_name\": \"Sholz\",\n                \"nickname\": \"Sholzy\",\n                \"middle_name\": \"\",\n                \"prefix\": \"\",\n                \"suffix\": \"\",\n                \"title\": \"\",\n                \"url\": \"\",\n                \"city\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\",\n                \"county\": \"\",\n                \"address\": \"\",\n                \"physical_address_2\": \"\",\n                \"address_2\": \"\",\n                \"mailing_address_2\": \"\",\n                \"mailing_city\": \"\",\n                \"mailing_state\": \"\",\n                \"mailing_zipcode\": \"\",\n                \"mailing_county\": \"\",\n                \"vendor_name\": \"\",\n                \"vendor_type\": \"\",\n                \"birth_date\": null,\n                \"note\": \"\",\n                \"tags\": \"\",\n                \"redirect_url\": \"https://yahoo.nextbroker.io/account/contacts?identify=9be07172-ae07-4e8e-a92a-7601a7f98369&api=true\"\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"woxohi9285@izkat.com\",\n                    \"email_type\": \"Other\",\n                    \"other_type_name\": \"\",\n                    \"is_default\": true\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"debc2b57-e290-4958-bd15-56341ebe92d4"},{"name":"Case Dependents","id":"e870186c-3ee6-46e9-9039-a19bbefa4cf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/dependents","description":"<p>Use this endpoint to fetch all dependents of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","dependents"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"5e1cc53f-b20a-4136-bdf4-a8bdf3691b3d","name":"Case Dependents","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/dependents"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 08 Apr 2026 14:39:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"d13a1369e967bc8cce556e2cbb52c693\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"11360674-97e0-4404-9d3b-f15159a5b363"},{"key":"X-Runtime","value":"0.133979"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"5dc20ad2-260e-4d92-b633-234dea67df66\",\n            \"first_name\": \"New\",\n            \"last_name\": \"Dependent\",\n            \"birthdate\": null,\n            \"gender\": null,\n            \"age\": null,\n            \"tobacco_user\": null,\n            \"relation\": \"\",\n            \"phone_number\": \"\"\n        },\n        {\n            \"id\": \"365f0cc1-cd5a-440f-bed6-826fa527a118\",\n            \"first_name\": \"New\",\n            \"last_name\": \"Dependent\",\n            \"birthdate\": \"2000-11-12\",\n            \"gender\": \"male\",\n            \"age\": 25,\n            \"tobacco_user\": null,\n            \"relation\": \"Brother\",\n            \"phone_number\": \"123-456-7890\"\n        }\n    ]\n}"}],"_postman_id":"e870186c-3ee6-46e9-9039-a19bbefa4cf5"},{"name":"Search Cases","id":"6f7fa204-7f91-45b0-9d12-bc0bf6b7d9a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your cases in an agency by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"af4bd193-be29-43a2-a2d6-4c869fe88aaf","name":"Search Cases","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"3f83f269-0e2c-46b0-870c-570bbf14ab2c"},{"key":"X-Runtime","value":"16.051104"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"sla13x6dsy4u57wc85jt\",\"dnb5cjcduslnb2m52zop\",\"c64b9k53cfdg4jx0vnnr\",\"l2jdo8tmbtn0xscmy02m\",\"ii4qjnm3mzemzjcz6pjk\",\"xs4nvgok1a8drs97lz0h\",\"kmqk2x3h8irya09uf4x6\",\"t149vqpk630rvx4irbe6\",\"7b3sxpa0aykwpiyfu734\",\"xqmlouh9iha2yljod7if\",\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\",\n            \"first_name\": null,\n            \"last_name\": null,\n            \"sales_status\": \"Legendary Client\",\n            \"stage\": \"In Discussion\",\n            \"market_segment\": \"Small Group\",\n            \"owner\": \"Malcolm Henney\",\n            \"ssn\": null,\n            \"phone_number\": \"4150069999\",\n            \"naics_code\": \"123\",\n            \"sic_code\": \"12345\",\n            \"website\": null,\n            \"url\": null,\n            \"tax_id\": \"111127727272\",\n            \"type\": \"\",\n            \"physical_address\": {\n                \"address\": \"new address\",\n                \"address_2\": \"new address 2\",\n                \"city\": \"\",\n                \"county\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\"\n            },\n            \"mailing_address\": {\n                \"address\": \"9898 Market Street 123\",\n                \"address_2\": \"90922\",\n                \"city\": \"-\",\n                \"county\": \"COUNTY 2\",\n                \"state\": \"AZ\",\n                \"zipcode\": \"\"\n            }\n        }\n    ]\n}"}],"_postman_id":"6f7fa204-7f91-45b0-9d12-bc0bf6b7d9a5"},{"name":"Create Case","id":"dbedf2d1-91d6-439a-9540-d5bda19b6f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Case\",\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"sales_status\": \"Client\",\n    \"stage\": \"In Discussion\",\n    \"ssn\": \"123123\",\n    \"phone_number\": \"1231231234\",\n    \"naics_code\": \"123\",\n    \"sic_code\": \"12345\",\n    \"website\": \"website\",\n    \"url\": \"URL\",\n    \"tax_id\": \"111127727272\",\n    \"type\": \"\",\n    \"market_segment\": \"small_group\",\n    \"email\": \"example@gmail.com\",\n    \"birthdate\": \"01-01-2000\",\n    \"tobacco_user\": \"No\",\n    \"gender\": \"female\",\n    \"age\": 25,\n    \"mbi_id\": \"3434\",\n    \"physical_address\": {\n        \"address\": \"new address\",\n        \"address_2\": \"new address 2\",\n        \"city\": \"\",\n        \"county\": \"\",\n        \"state\": \"\",\n        \"zipcode\": \"\"\n    },\n    \"mailing_address\": {\n        \"address\": \"9898 Market Street 123\",\n        \"address_2\": \"90922\",\n        \"city\": \"-\",\n        \"county\": \"COUNTY 2\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses","description":"<p>Create a new case in your agency through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"393b6e57-4747-436e-b5b0-1e1e80301a51","name":"Create Case","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Case\",\n    \"first_name\": \"\",\n    \"last_name\": \"\",\n    \"sales_status\": \"Client\",\n    \"stage\": \"In Discussion\",\n    \"ssn\": \"123123\",\n    \"phone_number\": \"1231231234\",\n    \"naics_code\": \"123\",\n    \"sic_code\": \"12345\",\n    \"website\": \"website\",\n    \"url\": \"URL\",\n    \"tax_id\": \"111127727272\",\n    \"type\": \"\",\n    \"market_segment\": \"small_group\",\n    \"email\": \"example@gmail.com\",\n    \"birthdate\": \"01-01-2000\",\n    \"tobacco_user\": \"No\",\n    \"gender\": \"female\",\n    \"age\": 25,\n    \"mbi_id\": \"3434\",\n    \"physical_address\": {\n        \"address\": \"new address\",\n        \"address_2\": \"new address 2\",\n        \"city\": \"\",\n        \"county\": \"\",\n        \"state\": \"\",\n        \"zipcode\": \"\"\n    },\n    \"mailing_address\": {\n        \"address\": \"9898 Market Street 123\",\n        \"address_2\": \"90922\",\n        \"city\": \"-\",\n        \"county\": \"COUNTY 2\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 08:08:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"9291cc50db8c6ce054d08e1521a29842\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ea198da8-c2d5-42a4-8b89-a1d39e642723"},{"key":"X-Runtime","value":"2.465593"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": null,\n        \"name\": \"My New Case\",\n        \"first_name\": \"\",\n        \"last_name\": \"\",\n        \"sales_status\": \"Client\",\n        \"stage\": null,\n        \"market_segment\": \"Small Group\",\n        \"owner\": \"Zaeem Asif\",\n        \"ssn\": \"123123\",\n        \"phone_number\": \"1231231234\",\n        \"naics_code\": \"123\",\n        \"sic_code\": \"12345\",\n        \"website\": \"website\",\n        \"url\": \"URL\",\n        \"tax_id\": \"111127727272\",\n        \"type\": \"\",\n        \"tobacco_user\": \"Yes\",\n        \"gender\": \"female\",\n        \"birthdate\": \"2000-01-01\",\n        \"email\": \"example@gmail.com\",\n        \"age\": 26,\n        \"mbi_id\": \"3434\",\n        \"created_at\": \"2026-04-09T08:08:54Z\",\n        \"updated_at\": \"2026-04-09T08:08:54Z\",\n        \"physical_address\": {\n            \"address\": \"new address\",\n            \"address_2\": \"new address 2\",\n            \"city\": \"\",\n            \"county\": \"\",\n            \"state\": \"\",\n            \"zipcode\": \"\"\n        },\n        \"mailing_address\": {\n            \"address\": \"9898 Market Street 123\",\n            \"address_2\": \"90922\",\n            \"city\": \"-\",\n            \"county\": \"COUNTY 2\",\n            \"state\": \"AZ\",\n            \"zipcode\": \"\"\n        }\n    }\n}"}],"_postman_id":"dbedf2d1-91d6-439a-9540-d5bda19b6f75"},{"name":"Update Case","id":"bcbd68c9-1df0-45a2-b05d-43c80115cc59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Updated Case\",\n    \"first_name\": null,\n    \"last_name\": null,\n    \"ssn\": \"ssn\",\n    \"phone_number\": \"1231231234\",\n    \"naics_code\": \"123\",\n    \"sic_code\": \"12345\",\n    \"website\": \"website\",\n    \"url\": \"sample_url.com\",\n    \"tax_id\": \"111127727272\",\n    \"type\": \"\",\n    \"tobacco_user\": \"true\",\n    \"mbi_id\": \"44444\",\n    \"physical_address\": {\n        \"address\": \"Physical Address 1\",\n        \"address_2\": \"Physical Address 2\",\n        \"city\": \"City\",\n        \"county\": \"County\",\n        \"state\": \"TX\",\n        \"zipcode\": \"12312\"\n    },\n    \"mailing_address\": {\n        \"address\": \"9898 Market Street 123\",\n        \"address_2\": \"90922\",\n        \"city\": \"-\",\n        \"county\": \"COUNTY 2\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181","description":"<p>Update your existing case attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"8e23376c-b10a-4301-af79-0a080fbed494","name":"Update Case","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My New Updated Case\",\n    \"first_name\": null,\n    \"last_name\": null,\n    \"ssn\": \"ssn\",\n    \"phone_number\": \"1231231234\",\n    \"naics_code\": \"123\",\n    \"sic_code\": \"12345\",\n    \"website\": \"website\",\n    \"url\": \"sample_url.com\",\n    \"tax_id\": \"111127727272\",\n    \"type\": \"\",\n    \"tobacco_user\": \"true\",\n    \"mbi_id\": \"44444\",\n    \"physical_address\": {\n        \"address\": \"Physical Address 1\",\n        \"address_2\": \"Physical Address 2\",\n        \"city\": \"City\",\n        \"county\": \"County\",\n        \"state\": \"TX\",\n        \"zipcode\": \"12312\"\n    },\n    \"mailing_address\": {\n        \"address\": \"9898 Market Street 123\",\n        \"address_2\": \"90922\",\n        \"city\": \"-\",\n        \"county\": \"COUNTY 2\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 08:10:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"e0c6461567321dc7861898d138666e09\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c7195cc4-92e6-46a8-bd8c-587b55d7a9be"},{"key":"X-Runtime","value":"0.682127"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"db62dc69-3068-4df8-9c84-6a620cf867ad\",\n        \"name\": \"My New Updated Case\",\n        \"first_name\": null,\n        \"last_name\": null,\n        \"sales_status\": \"Prospect\",\n        \"stage\": null,\n        \"market_segment\": \"Individual\",\n        \"owner\": \"Vinil K\",\n        \"ssn\": \"ssn\",\n        \"phone_number\": \"1231231234\",\n        \"naics_code\": \"123\",\n        \"sic_code\": \"12345\",\n        \"website\": \"website\",\n        \"url\": \"sample_url.com\",\n        \"tax_id\": \"111127727272\",\n        \"type\": \"\",\n        \"tobacco_user\": \"Yes\",\n        \"gender\": null,\n        \"birthdate\": null,\n        \"email\": null,\n        \"age\": null,\n        \"mbi_id\": \"44444\",\n        \"created_at\": \"2026-03-03T21:20:12Z\",\n        \"updated_at\": \"2026-04-09T08:10:24Z\",\n        \"physical_address\": {\n            \"address\": \"Physical Address 1\",\n            \"address_2\": \"Physical Address 2\",\n            \"city\": \"City\",\n            \"county\": \"County\",\n            \"state\": \"TX\",\n            \"zipcode\": \"12312\"\n        },\n        \"mailing_address\": {\n            \"address\": \"9898 Market Street 123\",\n            \"address_2\": \"90922\",\n            \"city\": \"-\",\n            \"county\": \"COUNTY 2\",\n            \"state\": \"AZ\",\n            \"zipcode\": \"\"\n        }\n    }\n}"}],"_postman_id":"bcbd68c9-1df0-45a2-b05d-43c80115cc59"}],"id":"d29be720-009a-4ede-b0ed-fe6188038458","description":"<p>Cases of an agency.</p>\n","event":[{"listen":"prerequest","script":{"id":"cfe4c279-f711-47e8-82e6-c217245ab62c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"db6463cc-c746-426f-9345-23ef9a85e48c","type":"text/javascript","exec":[""]}}],"_postman_id":"d29be720-009a-4ede-b0ed-fe6188038458"},{"name":"Addresses","item":[{"name":"Addresses","id":"08cf94da-86c5-4882-a0c7-cfd838e94d9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/addresses?limit=10&offset=0","description":"<p>Use this endpoint to fetch addresses of all cases.</p>\n","urlObject":{"protocol":"https","path":["api","v2","addresses"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"b5128841-399c-4741-8239-b153f9da867e","name":"Addresses","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/addresses?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","addresses"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"3b815ca7-5e7f-409b-9c94-9b29da5d2d2f"},{"key":"X-Runtime","value":"0.144032"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"bgtzycx8altjgmi3b3gt\",\"ncokz4he6jeiyl7pav7j\",\"wtj7pw6w7kfc6skg9ize\",\"405enjddjaq031r2n41q\",\"8kujqofnxzdqol6xwzk8\",\"sla13x6dsy4u57wc85jt\",\"dnb5cjcduslnb2m52zop\",\"c64b9k53cfdg4jx0vnnr\",\"l2jdo8tmbtn0xscmy02m\",\"ii4qjnm3mzemzjcz6pjk\",\"xs4nvgok1a8drs97lz0h\",\"kmqk2x3h8irya09uf4x6\",\"t149vqpk630rvx4irbe6\",\"7b3sxpa0aykwpiyfu734\",\"xqmlouh9iha2yljod7if\",\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"c5f9018e-6837-42be-bd32-c74143047058\",\n            \"business\": {\n                \"id\": \"2d7c4a8d-f609-4670-a448-0b5e5606b693\",\n                \"name\": \"Dana Garner\"\n            },\n            \"address\": null,\n            \"address_2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"type\": \"physical\"\n        },\n        {\n            \"id\": \"6a72e96a-21f5-4857-8c7f-e7722dd758b9\",\n            \"business\": {\n                \"id\": \"2d7c4a8d-f609-4670-a448-0b5e5606b693\",\n                \"name\": \"Dana Garner\"\n            },\n            \"address\": \"3236 Little Brook Rd\",\n            \"address_2\": null,\n            \"city\": \"Seagrove\",\n            \"state\": \"NC\",\n            \"zipcode\": \"27341\",\n            \"county\": \"Randolph\",\n            \"type\": \"mailing\"\n        },\n        {\n            \"id\": \"aad2f0c3-7982-4982-ab66-d44baab85463\",\n            \"business\": {\n                \"id\": \"b23243e5-640d-4ed3-9d07-699a73fd0cfe\",\n                \"name\": \"James Gardner\"\n            },\n            \"address\": null,\n            \"address_2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"type\": \"physical\"\n        },\n        {\n            \"id\": \"d4c08813-abf0-43c1-879f-0431f752fd52\",\n            \"business\": {\n                \"id\": \"b23243e5-640d-4ed3-9d07-699a73fd0cfe\",\n                \"name\": \"James Gardner\"\n            },\n            \"address\": \"1419 Dimmocks Mill Rd\",\n            \"address_2\": null,\n            \"city\": \"Hillsborough\",\n            \"state\": \"NC\",\n            \"zipcode\": \"27278\",\n            \"county\": \"Orange\",\n            \"type\": \"mailing\"\n        },\n        {\n            \"id\": \"0b9b5811-0445-440c-a227-da393d855078\",\n            \"business\": {\n                \"id\": \"e4471f97-3346-4f74-b363-f1f158e739c5\",\n                \"name\": \"Willie Corbett\"\n            },\n            \"address\": null,\n            \"address_2\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"type\": \"physical\"\n        }\n    ]\n}"}],"_postman_id":"08cf94da-86c5-4882-a0c7-cfd838e94d9e"},{"name":"Get Address","id":"90611852-a16d-44e1-b018-1c75711334fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/addresses/{{address_id}}","description":"<p>Get a particular address of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","addresses","{{address_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"24604604-d786-471b-8ff5-86225c3136bf","name":"Get Address","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/addresses/{{address_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"fa4e2a2f-b5bc-48f9-894f-bfd804bd3bb1"},{"key":"X-Runtime","value":"0.063990"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"mehxu79bomjjt2ecxqs9\",\"bgtzycx8altjgmi3b3gt\",\"ncokz4he6jeiyl7pav7j\",\"wtj7pw6w7kfc6skg9ize\",\"405enjddjaq031r2n41q\",\"8kujqofnxzdqol6xwzk8\",\"sla13x6dsy4u57wc85jt\",\"dnb5cjcduslnb2m52zop\",\"c64b9k53cfdg4jx0vnnr\",\"l2jdo8tmbtn0xscmy02m\",\"ii4qjnm3mzemzjcz6pjk\",\"xs4nvgok1a8drs97lz0h\",\"kmqk2x3h8irya09uf4x6\",\"t149vqpk630rvx4irbe6\",\"7b3sxpa0aykwpiyfu734\",\"xqmlouh9iha2yljod7if\",\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1f0a3e0c-b40c-40c7-9c67-84a98e2d3e39\",\n        \"business\": {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\"\n        },\n        \"address\": \"9898 Market Street 123\",\n        \"address_2\": \"90922\",\n        \"city\": \"-\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\",\n        \"county\": \"COUNTY 2\",\n        \"type\": \"mailing\"\n    }\n}"}],"_postman_id":"90611852-a16d-44e1-b018-1c75711334fe"},{"name":"Update Address","id":"9d3110b2-3eaa-4e26-954a-d1898a1138c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"address\": \"9898 Market Street # 1\",\n    \"address_2\": \"Address 2 here\",\n    \"city\": \"city\",\n    \"state\": \"AZ\",\n    \"zipcode\": \"\",\n    \"county\": \"COUNTY 2\",\n    \"type\": \"mailing\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/addresses/{{address_id}}","description":"<p>Update your existing case address attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","addresses","{{address_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"be4863c2-59ec-4bb6-9a48-e48802342a3b","name":"Update Address","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"address\": \"9898 Market Street # 1\",\n    \"address_2\": \"Address 2 here\",\n    \"city\": \"city\",\n    \"state\": \"AZ\",\n    \"zipcode\": \"\",\n    \"county\": \"COUNTY 2\",\n    \"type\": \"mailing\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/addresses/{{address_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"5e07bf75-4779-4228-855b-269f255c66e2"},{"key":"X-Runtime","value":"0.089122"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"nttt7fd7rfhtcus5ji1z\",\"mehxu79bomjjt2ecxqs9\",\"bgtzycx8altjgmi3b3gt\",\"ncokz4he6jeiyl7pav7j\",\"wtj7pw6w7kfc6skg9ize\",\"405enjddjaq031r2n41q\",\"8kujqofnxzdqol6xwzk8\",\"sla13x6dsy4u57wc85jt\",\"dnb5cjcduslnb2m52zop\",\"c64b9k53cfdg4jx0vnnr\",\"l2jdo8tmbtn0xscmy02m\",\"ii4qjnm3mzemzjcz6pjk\",\"xs4nvgok1a8drs97lz0h\",\"kmqk2x3h8irya09uf4x6\",\"t149vqpk630rvx4irbe6\",\"7b3sxpa0aykwpiyfu734\",\"xqmlouh9iha2yljod7if\",\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1f0a3e0c-b40c-40c7-9c67-84a98e2d3e39\",\n        \"business\": {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\"\n        },\n        \"address\": \"9898 Market Street # 1\",\n        \"address_2\": \"Address 2 here\",\n        \"city\": \"city\",\n        \"state\": \"AZ\",\n        \"zipcode\": \"\",\n        \"county\": \"COUNTY 2\",\n        \"type\": \"mailing\"\n    }\n}"}],"_postman_id":"9d3110b2-3eaa-4e26-954a-d1898a1138c4"}],"id":"1435a82b-9284-4518-876d-0181b53b90b2","description":"<p>Addresses of all cases in an agency.</p>\n","event":[{"listen":"prerequest","script":{"id":"13762361-79d5-4ed9-86ac-4d24e80352dd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"71078819-2606-4275-bfaf-5fbc359a0530","type":"text/javascript","exec":[""]}}],"_postman_id":"1435a82b-9284-4518-876d-0181b53b90b2"},{"name":"Benefits","item":[{"name":"Benefits","id":"e8deba98-79a2-4dad-9abe-5c87a551991c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits?limit=10&offset=0","description":"<p>Use this endpoint to fetch benefits of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","agency_benefits"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"1d0d5ca0-719a-4d81-b636-0cc4d8e40e40","name":"Benefits","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","agency_benefits"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:34:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"427b169f28caa0da43269f3413be8b0e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"75ea44b0-58fa-4536-8f38-a827cdcb1bf5"},{"key":"X-Runtime","value":"0.178530"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"a7d30252-6dd1-47bf-9204-fdd5a63eac29\",\n            \"business\": {\n                \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n                \"name\": \"My New Case\"\n            },\n            \"carrier\": {\n                \"id\": \"3da4603b-4c67-40e8-b606-12f48fd59855\",\n                \"name\": \"1.800MD\"\n            },\n            \"type\": \"Accident Insurance\",\n            \"plan_letter\": null,\n            \"features\": {\n                \"deductible\": null,\n                \"family_deductible\": null,\n                \"out_of_pocket_limit\": null,\n                \"family_out_of_pocket_limit\": null,\n                \"policy_id_number\": \"\",\n                \"group_id_number\": \"\",\n                \"current_monthly_cost\": null,\n                \"current_annual_cost\": null,\n                \"effective_date\": null,\n                \"renewal_date\": null,\n                \"min_hours_per_week\": \"\",\n                \"eligibility_period\": \"\",\n                \"carrier_portal_link\": \"\",\n                \"start_date_part_a\": null,\n                \"start_date_part_b\": null\n            }\n        },\n        {\n            \"id\": \"6a012b01-8dc0-4937-a181-0c64c9d061b7\",\n            \"business\": {\n                \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n                \"name\": \"My New Case\"\n            },\n            \"carrier\": {\n                \"id\": \"917564a5-7128-4e58-b30d-cb273755ed62\",\n                \"name\": \"24 Hour Flex\"\n            },\n            \"type\": \"Medical\",\n            \"plan_letter\": null,\n            \"features\": {\n                \"deductible\": null,\n                \"family_deductible\": null,\n                \"out_of_pocket_limit\": null,\n                \"family_out_of_pocket_limit\": null,\n                \"policy_id_number\": \"\",\n                \"group_id_number\": \"\",\n                \"current_monthly_cost\": null,\n                \"current_annual_cost\": null,\n                \"effective_date\": null,\n                \"renewal_date\": null,\n                \"min_hours_per_week\": \"\",\n                \"eligibility_period\": \"\",\n                \"carrier_portal_link\": \"\",\n                \"start_date_part_a\": null,\n                \"start_date_part_b\": null\n            }\n        }\n    ]\n}"}],"_postman_id":"e8deba98-79a2-4dad-9abe-5c87a551991c"},{"name":"Get Benefit","id":"5712eb24-66ba-4163-8b82-2279db89cb62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits/","description":"<p>Get a particular benefit of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","agency_benefits",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"f35175b5-1917-46fd-8215-da8dfd107285","name":"Get Benefit","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:34:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"32021bf99441e3da7a257f27bccba4e0\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1c4f6ef3-a64a-4f14-8b32-273d9c78fc5a"},{"key":"X-Runtime","value":"1.674869"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"a7d30252-6dd1-47bf-9204-fdd5a63eac29\",\n        \"business\": {\n            \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n            \"name\": \"My New Case\"\n        },\n        \"carrier\": {\n            \"id\": \"3da4603b-4c67-40e8-b606-12f48fd59855\",\n            \"name\": \"1.800MD\"\n        },\n        \"type\": \"Accident Insurance\",\n        \"plan_letter\": null,\n        \"features\": {\n            \"deductible\": null,\n            \"family_deductible\": null,\n            \"out_of_pocket_limit\": null,\n            \"family_out_of_pocket_limit\": null,\n            \"policy_id_number\": \"\",\n            \"group_id_number\": \"\",\n            \"current_monthly_cost\": null,\n            \"current_annual_cost\": null,\n            \"effective_date\": null,\n            \"renewal_date\": null,\n            \"min_hours_per_week\": \"\",\n            \"eligibility_period\": \"\",\n            \"carrier_portal_link\": \"\",\n            \"start_date_part_a\": null,\n            \"start_date_part_b\": null\n        }\n    }\n}"}],"_postman_id":"5712eb24-66ba-4163-8b82-2279db89cb62"},{"name":"Create Benefit","id":"a3b50209-a7ae-4bdd-9c77-040a6a9c7ee8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"carrier_id\": \"d4c9317f-f240-4d38-aa37-86d05885badf\",\n    \"type\": \"Dental\",\n    \"features\": {\n        \"deductible\": 5000,\n        \"family_deductible\": 1000,\n        \"out_of_pocket_limit\": 1000,\n        \"family_out_of_pocket_limit\": 500,\n        \"policy_id_number\": \"1245789\",\n        \"group_id_number\": \"778899\",\n        \"current_monthly_cost\": 500,\n        \"current_annual_cost\": null,\n        \"effective_date\": \"2019-01-22\",\n        \"renewal_date\": \"2020-01-22\",\n        \"min_hours_per_week\": 8,\n        \"eligibility_period\": \"\",\n        \"carrier_portal_link\": \"\",\n        \"start_date_part_a\": \"2026-04-11\",\n        \"start_date_part_b\": \"2026-04-12\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits","description":"<p>Create a new benefit of a case through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","agency_benefits"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"9aff562f-d2e7-40c9-8a35-57d205aefff9","name":"Create Benefit","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"carrier_id\": \"d4c9317f-f240-4d38-aa37-86d05885badf\",\n    \"type\": \"Dental\",\n    \"features\": {\n        \"deductible\": 5000,\n        \"family_deductible\": 1000,\n        \"out_of_pocket_limit\": 1000,\n        \"family_out_of_pocket_limit\": 500,\n        \"policy_id_number\": \"1245789\",\n        \"group_id_number\": \"778899\",\n        \"current_monthly_cost\": 500,\n        \"current_annual_cost\": null,\n        \"effective_date\": \"2019-01-22\",\n        \"renewal_date\": \"2020-01-22\",\n        \"min_hours_per_week\": 8,\n        \"eligibility_period\": \"\",\n        \"carrier_portal_link\": \"\",\n        \"start_date_part_a\": \"2026-04-11\",\n        \"start_date_part_b\": \"2026-04-12\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:36:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"70899278f2296e4b070c9f3e8ea414e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"7c60f8a6-af76-45b9-b4a6-e925e2ba7d30"},{"key":"X-Runtime","value":"12.646672"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": null,\n        \"business\": {\n            \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n            \"name\": \"My New Case\"\n        },\n        \"carrier\": {},\n        \"type\": null,\n        \"plan_letter\": null,\n        \"features\": {\n            \"deductible\": 5000,\n            \"family_deductible\": 1000,\n            \"out_of_pocket_limit\": 1000,\n            \"family_out_of_pocket_limit\": 500,\n            \"policy_id_number\": \"1245789\",\n            \"group_id_number\": \"778899\",\n            \"current_monthly_cost\": 500,\n            \"current_annual_cost\": null,\n            \"effective_date\": \"2019-01-22\",\n            \"renewal_date\": \"2020-01-22\",\n            \"min_hours_per_week\": \"8\",\n            \"eligibility_period\": null,\n            \"carrier_portal_link\": null,\n            \"start_date_part_a\": \"2026-04-11\",\n            \"start_date_part_b\": \"2026-04-12\"\n        }\n    }\n}"}],"_postman_id":"a3b50209-a7ae-4bdd-9c77-040a6a9c7ee8"},{"name":"Update Benefit","id":"dac8b100-8b24-4902-ae59-e34f75ad3775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"carrier_id\": \"d4c9317f-f240-4d38-aa37-86d05885badf\",\n    \"type\": \"Medical\",\n    \"features\": {\n        \"deductible\": 500,\n        \"family_deductible\": 100,\n        \"out_of_pocket_limit\": 100,\n        \"family_out_of_pocket_limit\": 50,\n        \"policy_id_number\": \"112233\",\n        \"group_id_number\": \"778899\",\n        \"current_monthly_cost\": 500,\n        \"current_annual_cost\": null,\n        \"effective_date\": \"2019-01-22\",\n        \"renewal_date\": \"2020-01-22\",\n        \"min_hours_per_week\": 8,\n        \"eligibility_period\": \"\",\n        \"carrier_portal_link\": \"\",\n        \"start_date_part_a\": \"2026-05-11\",\n        \"start_date_part_b\": \"2026-06-12\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits/","description":"<p>Update your existing case benefit attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","agency_benefits",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"9504e5a1-9aa5-4bbf-b14c-9dbe10db3b28","name":"Update Benefit","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"carrier_id\": \"d4c9317f-f240-4d38-aa37-86d05885badf\",\n    \"type\": \"Medical\",\n    \"features\": {\n        \"deductible\": 500,\n        \"family_deductible\": 100,\n        \"out_of_pocket_limit\": 100,\n        \"family_out_of_pocket_limit\": 50,\n        \"policy_id_number\": \"112233\",\n        \"group_id_number\": \"778899\",\n        \"current_monthly_cost\": 500,\n        \"current_annual_cost\": null,\n        \"effective_date\": \"2019-01-22\",\n        \"renewal_date\": \"2020-01-22\",\n        \"min_hours_per_week\": 8,\n        \"eligibility_period\": \"\",\n        \"carrier_portal_link\": \"\",\n        \"start_date_part_a\": \"2026-05-11\",\n        \"start_date_part_b\": \"2026-06-12\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/agency_benefits/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:37:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"4ebbcc13569afb6169f54e5c99936d1d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2eacd07c-05a7-46bb-a729-cd883ad5df5e"},{"key":"X-Runtime","value":"4.462806"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"a7d30252-6dd1-47bf-9204-fdd5a63eac29\",\n        \"business\": {\n            \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n            \"name\": \"My New Case\"\n        },\n        \"carrier\": {},\n        \"type\": \"Medical\",\n        \"plan_letter\": null,\n        \"features\": {\n            \"deductible\": 500,\n            \"family_deductible\": 100,\n            \"out_of_pocket_limit\": 100,\n            \"family_out_of_pocket_limit\": 50,\n            \"policy_id_number\": \"112233\",\n            \"group_id_number\": \"778899\",\n            \"current_monthly_cost\": 500,\n            \"current_annual_cost\": null,\n            \"effective_date\": \"2019-01-22\",\n            \"renewal_date\": \"2020-01-22\",\n            \"min_hours_per_week\": \"8\",\n            \"eligibility_period\": \"\",\n            \"carrier_portal_link\": \"\",\n            \"start_date_part_a\": \"2026-05-11\",\n            \"start_date_part_b\": \"2026-06-12\"\n        }\n    }\n}"}],"_postman_id":"dac8b100-8b24-4902-ae59-e34f75ad3775"}],"id":"75987f74-3d7e-42f2-b9db-551bf750030a","description":"<p>All benefits of a particular case.</p>\n","event":[{"listen":"prerequest","script":{"id":"3d63687f-a160-4537-aaeb-18e0d7a94e2b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"36edecc6-2334-487f-b174-fb19123aceb4","type":"text/javascript","exec":[""]}}],"_postman_id":"75987f74-3d7e-42f2-b9db-551bf750030a"},{"name":"Tasks","item":[{"name":"Tasks","id":"757de7ce-937c-4949-b5cd-fd2fc35f9f0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks?limit=10&offset=0","description":"<p>Use this endpoint to fetch tasks of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"63cc8a7d-3a6c-45e4-b0ed-11c1fe0a6b45","name":"Tasks","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 15 Jan 2026 13:11:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"4ff538f54a91c28759a9cde8c5519eeb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5d9d94e5-1ebd-4305-860d-fea9a2da9c4a"},{"key":"X-Runtime","value":"0.349390"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"cc53ea84-c4ff-40ce-980d-37583a86a113\",\n            \"business\": {\n                \"id\": \"29516f7b-83ae-44df-a922-10677181e933\",\n                \"name\": \"Henry K\"\n            },\n            \"title\": \"Meeting cancelled!\",\n            \"stage\": null,\n            \"type\": \"Other\",\n            \"priority\": 1,\n            \"due\": \"11-04-2020 05:00 AM UTC\",\n            \"body\": \"<p>There is no meeting.</p>\",\n            \"assigned_to\": [\n                \"Robert Alvarez\"\n            ],\n            \"redirect_url\": \"https://yahoo.nextbroker.io/businesses/29516f7b-83ae-44df-a922-10677181e933/tasks?identify=29516f7b-83ae-44df-a922-10677181e933&tab_name=tasks&api=true\"\n        }\n    ]\n}"}],"_postman_id":"757de7ce-937c-4949-b5cd-fd2fc35f9f0d"},{"name":"Get Task","id":"1a6361d0-e1aa-4db6-8a02-f57763673ecb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/","description":"<p>Get a particular task of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"3cdf5d40-e5ac-43c6-9c8f-185d9d0cf48b","name":"Get Task","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 15 Jan 2026 13:20:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"51d672432ff79bcea6221b4615501471\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b9d53703-ce15-4279-9f05-461fbe8fc552"},{"key":"X-Runtime","value":"0.384782"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"cc53ea84-c4ff-40ce-980d-37583a86a113\",\n        \"business\": {\n            \"id\": \"29516f7b-83ae-44df-a922-10677181e933\",\n            \"name\": \"Henry K\"\n        },\n        \"title\": \"Meeting cancelled!\",\n        \"stage\": null,\n        \"type\": \"Other\",\n        \"priority\": 1,\n        \"due\": \"11-04-2020 05:00 AM UTC\",\n        \"body\": \"<p>There is no meeting.</p>\",\n        \"assigned_to\": [\n            \"Robert Alvarez\"\n        ],\n        \"redirect_url\": \"https://yahoo.nextbroker.io/businesses/29516f7b-83ae-44df-a922-10677181e933/tasks?identify=29516f7b-83ae-44df-a922-10677181e933&tab_name=tasks&api=true\"\n    }\n}"}],"_postman_id":"1a6361d0-e1aa-4db6-8a02-f57763673ecb"},{"name":"Search Task","id":"077a159f-9df9-4fb6-80ca-877dec1bcb13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your tasks in a case by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"1fa5b037-aaad-4171-991d-8b7826d7501d","name":"Search Task","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"8600702d-062f-4ca9-af2e-7983371e8bbf"},{"key":"X-Runtime","value":"0.105260"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"6be220oayhx5kicw9gp1\",\"ga2qca76h6jf2kcb8wdn\",\"jwevf9phboowvcxzsv6i\",\"klomzhui8vs47d5vo89n\",\"xv1rqnxvooytnh688mez\",\"rotddvpv50kts9q9dw2x\",\"kfx3rnlgsp8j4ejsx7at\",\"xr22wojya7xjclewc1lo\",\"c8zzwfbkvzv66o60mf47\",\"25cnvm9egfld2eihprqz\",\"36b28pz2ooz111o6b8o6\",\"jg949740ath67t9qhpci\",\"onegrg5icgiq8yiop6qq\",\"nttt7fd7rfhtcus5ji1z\",\"mehxu79bomjjt2ecxqs9\",\"bgtzycx8altjgmi3b3gt\",\"ncokz4he6jeiyl7pav7j\",\"wtj7pw6w7kfc6skg9ize\",\"405enjddjaq031r2n41q\",\"8kujqofnxzdqol6xwzk8\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"d06de15b-ee3c-4a3f-bb6f-b1715f16a353\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"Have coffee\",\n            \"stage\": \"To Do\",\n            \"type\": \"Other\",\n            \"priority\": 0,\n            \"due\": \"04-11-2019 05:55 AM UTC\",\n            \"body\": \"<p>Take your coffee.</p>\"\n        }\n    ]\n}"}],"_postman_id":"077a159f-9df9-4fb6-80ca-877dec1bcb13"},{"name":"Create Tasks","id":"8110664f-a14f-4679-8ccd-1efcc8393515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Attend meeting!\",\n    \"stage\": \"To Do\",\n    \"type\": \"Other\",\n    \"priority\": 1,\n    \"due\": \"04-11-2020 05:00 AM UTC\",\n    \"body\": \"<p>You have a meeting at 5:00 PM.</p>\",\n    \"assigned_to\": [\"23e0b9fb-2b13-488f-9b26-938180312b22\", \"c66d105f-2a58-4e81-9368-7a573e8262ba\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks","description":"<p>Create a new task of a case through this endpoint,<br />To assign this to users, use the <code>assigned_to</code> parameter and pass an array of unique user IDs.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"44ee0be3-fc9b-4c97-9129-e61f46561f9f","name":"Create Tasks","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Attend meeting!\",\n    \"stage\": \"To Do\",\n    \"type\": \"Other\",\n    \"priority\": 1,\n    \"due\": \"04-11-2020 05:00 AM UTC\",\n    \"body\": \"<p>You have a meeting at 5:00 PM.</p>\",\n    \"assigned_to\": [\"23e0b9fb-2b13-488f-9b26-938180312b22\", \"c66d105f-2a58-4e81-9368-7a573e8262ba\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 15 Jan 2026 13:22:06 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"8a92ab7564dfa15fd2212c566754910e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c013baf6-7e7c-4aee-9b77-fc2515cd2e3d"},{"key":"X-Runtime","value":"0.322619"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"020fe309-a6db-4545-a44c-6052fad197e9\",\n        \"business\": {\n            \"id\": \"29516f7b-83ae-44df-a922-10677181e933\",\n            \"name\": \"Henry K\"\n        },\n        \"title\": \"Attend meeting!\",\n        \"stage\": null,\n        \"type\": \"Other\",\n        \"priority\": 1,\n        \"due\": \"11-04-2020 05:00 AM UTC\",\n        \"body\": \"<p>You have a meeting at 5:00 PM.</p>\",\n        \"assigned_to\": [\n            \"Abraham Olatunji\",\n            \"Zaeem Asif\"\n        ],\n        \"redirect_url\": \"https://yahoo.nextbroker.io/businesses/29516f7b-83ae-44df-a922-10677181e933/tasks?identify=29516f7b-83ae-44df-a922-10677181e933&tab_name=tasks&api=true\"\n    }\n}"}],"_postman_id":"8110664f-a14f-4679-8ccd-1efcc8393515"},{"name":"Update Task","id":"00064390-2cab-4956-9911-02d2806226a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Meeting cancelled!\",\n    \"stage\": \"Completed\",\n    \"type\": \"Other\",\n    \"priority\": 1,\n    \"due\": \"04-11-2020 05:00 AM UTC\",\n    \"body\": \"<p>There is no meeting.</p>\",\n    \"assigned_to\": [\"d5cf29e6-54f3-46e0-bc0f-d8d1e9977f2f\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/","description":"<p>Update your existing case task attributes through this endpoint.</p>\n<p>To assign this to users, use the <code>assigned_to</code> parameter and pass an array of unique user IDs.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","tasks",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"97624702-976c-4538-a7a5-9519b8dcca6d","name":"Update Task","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Meeting cancelled!\",\n    \"stage\": \"Completed\",\n    \"type\": \"Other\",\n    \"priority\": 1,\n    \"due\": \"04-11-2020 05:00 AM UTC\",\n    \"body\": \"<p>There is no meeting.</p>\",\n    \"assigned_to\": [\"d5cf29e6-54f3-46e0-bc0f-d8d1e9977f2f\"]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/tasks/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 15 Jan 2026 13:23:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"51d672432ff79bcea6221b4615501471\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"82bc1526-f0a9-499d-b018-aef8e2810852"},{"key":"X-Runtime","value":"0.657227"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"cc53ea84-c4ff-40ce-980d-37583a86a113\",\n        \"business\": {\n            \"id\": \"29516f7b-83ae-44df-a922-10677181e933\",\n            \"name\": \"Henry K\"\n        },\n        \"title\": \"Meeting cancelled!\",\n        \"stage\": null,\n        \"type\": \"Other\",\n        \"priority\": 1,\n        \"due\": \"11-04-2020 05:00 AM UTC\",\n        \"body\": \"<p>There is no meeting.</p>\",\n        \"assigned_to\": [\n            \"Robert Alvarez\"\n        ],\n        \"redirect_url\": \"https://yahoo.nextbroker.io/businesses/29516f7b-83ae-44df-a922-10677181e933/tasks?identify=29516f7b-83ae-44df-a922-10677181e933&tab_name=tasks&api=true\"\n    }\n}"}],"_postman_id":"00064390-2cab-4956-9911-02d2806226a4"}],"id":"9d3cd1a3-4a74-4edd-9a8e-3dbc7cdd33f7","description":"<p>All tasks of a particular case.</p>\n","event":[{"listen":"prerequest","script":{"id":"f99d0578-186e-4346-a32c-9640b5b7a326","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c4722350-4df2-4ef3-a4fa-fa118efeb61b","type":"text/javascript","exec":[""]}}],"_postman_id":"9d3cd1a3-4a74-4edd-9a8e-3dbc7cdd33f7"},{"name":"Notes","item":[{"name":"Notes","id":"39824878-bdfc-48a9-a15f-cb86c9663b39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes?limit=10&offset=0","description":"<p>Use this endpoint to fetch notes of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"b60164b0-32cd-493a-86a1-a7dcbe3fe73d","name":"Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"6c72b8d7-9997-4e25-8609-4d480102213d"},{"key":"X-Runtime","value":"0.120972"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"wmnu02iblskcnj9i3hek\",\"8h7a3l5w81luq4abcd5j\",\"nzqxvrzjkbzl52o38n58\",\"t2k7z2ytvhrgumr5oon5\",\"dap2f2clmuowm2j9owei\",\"8iwqvt25lzkg2loj5l6r\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"a211267c-103f-4583-9b43-d1459b60a63d\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"New sample note\",\n            \"body\": \"This is a sample body text.\",\n            \"attachments\": [\n                {\n                    \"name\": \"icon.jpg\",\n                    \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/0c4070e513da67612f7e3096965772330b876539/original/icon.jpg?1586265379\"\n                }\n            ]\n        },\n        {\n            \"id\": \"b68b38db-7f15-4ece-8c61-776b9da5a824\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"New sample note\",\n            \"body\": \"This is a sample body text.\",\n            \"attachments\": []\n        },\n        {\n            \"id\": \"11abeb1f-b571-4c75-b9f3-4f7208c3a680\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"New sample note\",\n            \"body\": \"This is a sample body text.\",\n            \"attachments\": []\n        },\n        {\n            \"id\": \"0e1986b1-f164-4a7d-93ba-815020304632\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"New sample note\",\n            \"body\": \"This is a sample body text.\",\n            \"attachments\": []\n        },\n        {\n            \"id\": \"33f38d03-8793-4741-82bd-4edae4225404\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"Attend meeting!\",\n            \"body\": \"Meeting has been cancelled.\",\n            \"attachments\": [\n                {\n                    \"name\": \"icon.jpg\",\n                    \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/9245cbefd8580f0370096a681b02bd5121008721/original/icon.jpg?1586265303\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"39824878-bdfc-48a9-a15f-cb86c9663b39"},{"name":"Get Note","id":"344e1eef-587f-42c9-94e4-3db0f0d20b7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/","description":"<p>Get a particular note of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"6448b0b8-5c7a-4d17-b62c-e09dad38f7e2","name":"Get Note","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"f7c0a778-e732-4826-92ee-60fe140aecf8"},{"key":"X-Runtime","value":"0.090826"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"m2kiuiv6zvwbyyve7aio\",\"9hgw2ci7sa4x19dbg5ol\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"fe3017c2-9a7f-4471-91f0-90a9653fe58e\",\n        \"business\": {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\"\n        },\n        \"title\": \"Get stuff ready by June 1st\",\n        \"body\": \"Andrew Firestone told me that he would be ready to get this all completed by June 1st. Follow up!\",\n        \"attachments\": [\n            {\n                \"name\": \"Enrollment-Kit.png\",\n                \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/2bb29a38d0da3cd0776a11119daeeb4c1c0d4121/original/Enrollment-Kit.png?1488893265\"\n            },\n            {\n                \"name\": \"benefits_user_icon.png\",\n                \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/61202c4f923b39bda8c7b79632ee6b38df1e0d89/original/benefits_user_icon.png?1488893266\"\n            }\n        ]\n    }\n}"}],"_postman_id":"344e1eef-587f-42c9-94e4-3db0f0d20b7b"},{"name":"Search Notes","id":"7ffcedc1-0bd4-4e14-bb5d-1f8720f01637","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your notes in a case by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"cce1590e-5748-40d1-95f7-9c86623dfc9c","name":"Search Notes","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"e86aef8e-173a-4cee-992b-af321b6c89cc"},{"key":"X-Runtime","value":"0.588267"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"znp5gramapk7cdghfir0\",\"9hgw2ci7sa4x19dbg5ol\",\"m2kiuiv6zvwbyyve7aio\",\"xwe6i7buf9kportvz80e\",\"9qqvpz8zr2mity0arwf6\",\"kei04aladioi8mphxzjf\",\"t1qj2tpb702ybpyk3dvd\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"fe3017c2-9a7f-4471-91f0-90a9653fe58e\",\n            \"business\": {\n                \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n                \"name\": \"Firestone\"\n            },\n            \"title\": \"Get stuff ready by June 1st\",\n            \"body\": \"Andrew Firestone told me that he would be ready to get this all completed by June 1st. Follow up!\",\n            \"attachments\": [\n                {\n                    \"name\": \"Enrollment-Kit.png\",\n                    \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/2bb29a38d0da3cd0776a11119daeeb4c1c0d4121/original/Enrollment-Kit.png?1488893265\"\n                },\n                {\n                    \"name\": \"benefits_user_icon.png\",\n                    \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/61202c4f923b39bda8c7b79632ee6b38df1e0d89/original/benefits_user_icon.png?1488893266\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"7ffcedc1-0bd4-4e14-bb5d-1f8720f01637"},{"name":"Create","id":"883ef2b3-1baf-470a-986a-5f2c4a2271c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note\",\n    \"body\": \"This is a sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/9245cbefd8580f0370096a681b02bd5121008721/original/icon.jpg?1586265303\",\n            \"body\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes","description":"<p>Create a new note of a case through this endpoint. </p>\n<p>For attachmets of notes you can either set url of an attachment or file contents as a base64 encoded string in attachment body.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"1615998c-261d-4a21-9827-84c9c439a8d1","name":"Create","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note\",\n    \"body\": \"This is a sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/9245cbefd8580f0370096a681b02bd5121008721/original/icon.jpg?1586265303\",\n            \"body\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"1a3a45cc-2e99-4ddf-9d14-f0b8777862dd"},{"key":"X-Runtime","value":"16.210586"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"nzqxvrzjkbzl52o38n58\",\"8h7a3l5w81luq4abcd5j\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"168cbd17-1443-4873-b902-8452ef85cac1\",\n        \"business\": {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\"\n        },\n        \"title\": \"New sample note\",\n        \"body\": \"This is a sample body text.\",\n        \"attachments\": [\n            {\n                \"name\": \"icon.jpg\",\n                \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\"\n            }\n        ]\n    }\n}"}],"_postman_id":"883ef2b3-1baf-470a-986a-5f2c4a2271c0"},{"name":"Update Note","id":"c6ea2a5f-0982-41d2-886b-055f83835d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note updated.\",\n    \"body\": \"This is updated sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon-2.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\",\n            \"body\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/","description":"<p>Update your existing case note attributes through this endpoint.</p>\n<p>For attachmets of notes you can either set url of an attachment or file contents as a base64 encoded string in attachment body.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"b20cb2ef-36c4-4bd9-95a9-147368461d2f","name":"Update Note","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note updated.\",\n    \"body\": \"This is updated sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon-2.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\",\n            \"body\": \"\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"4a2a9af7-4f3d-4b35-a183-17a860ec3db6"},{"key":"X-Runtime","value":"7.813961"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"t2k7z2ytvhrgumr5oon5\",\"8h7a3l5w81luq4abcd5j\",\"nzqxvrzjkbzl52o38n58\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"168cbd17-1443-4873-b902-8452ef85cac1\",\n        \"business\": {\n            \"id\": \"11441674-1139-41f1-8d48-3b0d92f8c595\",\n            \"name\": \"Firestone\"\n        },\n        \"title\": \"New sample note updated.\",\n        \"body\": \"This is updated sample body text.\",\n        \"attachments\": [\n            {\n                \"name\": \"icon-2.jpg\",\n                \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/471124dfcec4007ec11c3ff27e173ba3878b7a10/original/icon-2.jpg?1586265615\"\n            },\n            {\n                \"name\": \"icon.jpg\",\n                \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\"\n            }\n        ]\n    }\n}"}],"_postman_id":"c6ea2a5f-0982-41d2-886b-055f83835d56"},{"name":"Delete Note","id":"e7992ff7-ea6a-462a-8aef-37ff2970d122","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note updated.\",\n    \"body\": \"This is updated sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon-2.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\",\n            \"body\": \"\"\n        }\n    ]\n}"},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/","description":"<p>Delete a particular note of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","notes",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"eee6d370-dbcd-49f8-8cad-6c51ac53f05d","name":"Delete Note","originalRequest":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"New sample note updated.\",\n    \"body\": \"This is updated sample body text.\",\n    \"attachments\": [\n        {\n            \"name\": \"icon-2.jpg\",\n            \"url\": \"https://nextagency-development-bucket.s3.amazonaws.com/NextAgency/FileLibrary/873d7e452c2378186bf02c043fa7d31841f06303/original/icon.jpg?1586265446\",\n            \"body\": \"\"\n        }\n    ]\n}"},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/notes/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 04 May 2026 09:42:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"9a2a8cdf0a591162f75f769061065253\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b5e6f8c6-3760-4f04-aeff-5e128ec7b735"},{"key":"X-Runtime","value":"0.198792"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"message\": \"Note deleted successfully\",\n        \"note\": {\n            \"id\": \"5f320d39-47aa-4013-ae10-942cd56f241b\",\n            \"business\": {\n                \"id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n                \"name\": \"My New Case\"\n            },\n            \"title\": \"New Note\",\n            \"body\": null,\n            \"archived\": false,\n            \"attachments\": [],\n            \"redirect_url\": \"https://yahoo.nextbroker.io/businesses/95096356-ddcd-4926-b5b9-db86f6b258e2/notes?identity=95096356-ddcd-4926-b5b9-db86f6b258e2&tab_name=notes&api=true\"\n        }\n    }\n}"}],"_postman_id":"e7992ff7-ea6a-462a-8aef-37ff2970d122"}],"id":"f1acf3d8-6218-4da1-959d-a37e154bdf41","description":"<p>All notes of a particular case.</p>\n","event":[{"listen":"prerequest","script":{"id":"da780d68-7d58-4d15-b056-0cdac0b108de","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"52295bcd-289e-4a46-add9-563ab5a91714","type":"text/javascript","exec":[""]}}],"_postman_id":"f1acf3d8-6218-4da1-959d-a37e154bdf41"},{"name":"Sub-Agents","item":[{"name":"Sub-Agents","id":"46b13544-0752-4d51-ac7e-133fc341c331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/sub_agents?limit=10&offset=0","description":"<p>Use this endpoint to fetch all sub-agents of an agency.</p>\n","urlObject":{"protocol":"https","path":["api","v2","sub_agents"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"980d18f8-cfc1-4a70-9899-b24c69bb9d96","name":"Sub-Agents","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/sub_agents?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","sub_agents"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"1fd14c38-d819-4876-a0ad-16bcc2af6470"},{"key":"X-Runtime","value":"0.056595"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\",\"o4aaezkjb8zy9docnxlq\",\"4gxcmfrpyqtvl4a2rdf4\",\"yunorek7muus04j463g\",\"h2ndruqz538rkfu5ve2\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"edeabc0e-70cd-4821-9528-6be1ec45185f\",\n            \"first_name\": \"Mike\",\n            \"last_name\": \"Jones\",\n            \"vendor_name\": \"Carriers Group\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        },\n        {\n            \"id\": \"3da26ea7-788f-4012-b476-469c19438c85\",\n            \"first_name\": \"Grizzly\",\n            \"last_name\": \"Bear\",\n            \"vendor_name\": \"Henney\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        },\n        {\n            \"id\": \"3b0aa62b-2da2-4d50-ae20-231543114d79\",\n            \"first_name\": \"Nemo\",\n            \"last_name\": \"Omen\",\n            \"vendor_name\": \"Disney\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        },\n        {\n            \"id\": \"f2916bd5-4f11-4449-887b-ca15bf86bf35\",\n            \"first_name\": \"Nemo\",\n            \"last_name\": \"Finding\",\n            \"vendor_name\": \"\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        },\n        {\n            \"id\": \"82149938-95a4-474e-8363-e5f90e1c613c\",\n            \"first_name\": \"Tim\",\n            \"last_name\": \"Gomez\",\n            \"vendor_name\": \"\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        }\n    ]\n}"}],"_postman_id":"46b13544-0752-4d51-ac7e-133fc341c331"},{"name":"Get Sub-Agent","id":"b6c802e2-1a9b-489d-9f56-66ef827c7e86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/sub_agents/{{sub_agent_id}}","description":"<p>Get a particular sub-agent of an agency by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","sub_agents","{{sub_agent_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"3cdfd69d-06ec-46e2-a3e5-7dacaa529e96","name":"Get Sub-Agent","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/sub_agents/{{sub_agent_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"780579b3-0b32-4537-a2a7-4f00a3a692b6"},{"key":"X-Runtime","value":"0.083027"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\",\"o4aaezkjb8zy9docnxlq\",\"4gxcmfrpyqtvl4a2rdf4\",\"yunorek7muus04j463g\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3da26ea7-788f-4012-b476-469c19438c85\",\n        \"first_name\": \"Grizzly\",\n        \"last_name\": \"Bear\",\n        \"vendor_name\": \"Henney\",\n        \"fax\": \"\",\n        \"url\": \"\",\n        \"agent_type\": \"individual\"\n    }\n}"}],"_postman_id":"b6c802e2-1a9b-489d-9f56-66ef827c7e86"},{"name":"Search Sub-Agent","id":"98007f13-b014-4d51-9f2d-358cc4e05579","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/sub_agents/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your sub-agents in an agency by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","sub_agents","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"97f917dd-ce2f-482f-a3a2-e973325f97c5","name":"Search Sub-Agent","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/sub_agents/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","sub_agents","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"4ba9b5db-8443-4cbf-bf52-8994d9b3e6ca"},{"key":"X-Runtime","value":"0.065437"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\",\"o4aaezkjb8zy9docnxlq\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3da26ea7-788f-4012-b476-469c19438c85\",\n            \"first_name\": \"Grizzly\",\n            \"last_name\": \"Bear\",\n            \"vendor_name\": \"Henney\",\n            \"fax\": \"\",\n            \"url\": \"\",\n            \"agent_type\": \"individual\"\n        }\n    ]\n}"}],"_postman_id":"98007f13-b014-4d51-9f2d-358cc4e05579"},{"name":"Create Sub-Agent","id":"2b55acc0-38fc-4d57-babb-2132dfe0e4d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Bird\",\n    \"last_name\": \"Man\",\n    \"vendor_name\": \"Henney\",\n    \"fax\": \"fax\",\n    \"url\": \"url\",\n    \"agent_type\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/sub_agents","description":"<p>Create a new sub-agent in your agency through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","sub_agents"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"bed974f4-bb54-4836-b593-e1daa4a59c50","name":"Create Sub-Agent","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Bird\",\n    \"last_name\": \"Man\",\n    \"vendor_name\": \"Henney\",\n    \"fax\": \"fax\",\n    \"url\": \"url\",\n    \"agent_type\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/sub_agents"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"138c96ac-7d92-4022-aa72-bedeae0c2968"},{"key":"X-Runtime","value":"0.380178"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f36eec9e-423a-4cdb-bb65-232c7b1b5c45\",\n        \"first_name\": \"Bird\",\n        \"last_name\": \"Man\",\n        \"vendor_name\": \"Henney\",\n        \"fax\": \"fax\",\n        \"url\": \"url\",\n        \"agent_type\": \"individual\"\n    }\n}"}],"_postman_id":"2b55acc0-38fc-4d57-babb-2132dfe0e4d8"},{"name":"Update Sub-Agent","id":"1415ce4c-82d4-47fe-bc1a-ce531e1deba9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Bird\",\n    \"last_name\": \"Man\",\n    \"vendor_name\": \"Henney\",\n    \"fax\": \"1231231234\",\n    \"url\": \"http://sample_url.com\",\n    \"agent_type\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/sub_agents/{{sub_agent_id}}","description":"<p>Update your existing sub-agent attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","sub_agents","{{sub_agent_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"6955096c-9eba-417e-9028-652d0de032cd","name":"Update Sub-Agent","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Bird\",\n    \"last_name\": \"Man\",\n    \"vendor_name\": \"Henney\",\n    \"fax\": \"1231231234\",\n    \"url\": \"http://sample_url.com\",\n    \"agent_type\": \"individual\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/sub_agents/{{sub_agent_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"687640e0-e06f-4747-ad7d-38cbab601ea4"},{"key":"X-Runtime","value":"0.061129"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"xqmlouh9iha2yljod7if\",\"osoi6a5pdx9b8qvl08fr\",\"4zfka2kf75o7vpx53351\",\"e43jm53zrb7baxoqwprz\",\"jchhymvhug6n0rn0nxd5\",\"3sm7v0h55uvffanm4rrc\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"f36eec9e-423a-4cdb-bb65-232c7b1b5c45\",\n        \"first_name\": \"Bird\",\n        \"last_name\": \"Man\",\n        \"vendor_name\": \"Henney\",\n        \"fax\": \"1231231234\",\n        \"url\": \"http://sample_url.com\",\n        \"agent_type\": \"individual\"\n    }\n}"}],"_postman_id":"1415ce4c-82d4-47fe-bc1a-ce531e1deba9"}],"id":"2d41164b-78cb-4fe8-ab42-bc1a46e239c2","description":"<p>All sub-agents of an agency.</p>\n","_postman_id":"2d41164b-78cb-4fe8-ab42-bc1a46e239c2"},{"name":"Carriers","item":[{"name":"Carriers","id":"9082826c-15a2-493e-b06b-77b30d5643fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/carriers?limit=10&offset=0","description":"<p>Use this endpoint to fetch all carriers of an agency.</p>\n","urlObject":{"protocol":"https","path":["api","v2","carriers"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"0d8b6767-10d7-474a-95b9-563567b234ca","name":"Carriers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/carriers?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","carriers"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"27942927-75dd-4db5-b0ca-a0b78db8bad7"},{"key":"X-Runtime","value":"0.222289"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"bdpan3nyy98vd92aeihl\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3d47bcd9-d673-475c-80ca-78f53f3b4929\",\n            \"name\": \"AAQHC\",\n            \"provider_link\": null,\n            \"provider_url\": null,\n            \"fax\": null,\n            \"email\": null,\n            \"states\": [],\n            \"agency_email\": null,\n            \"agency_fax\": null,\n            \"draft\": false\n        },\n        {\n            \"id\": \"8fa5ea13-d04d-4643-a963-eccb15080f19\",\n            \"name\": \"ABCD\",\n            \"provider_link\": \"\",\n            \"provider_url\": \"\",\n            \"fax\": \"\",\n            \"email\": \"\",\n            \"states\": [\n                \"AZ\"\n            ],\n            \"agency_email\": \"\",\n            \"agency_fax\": \"\",\n            \"draft\": false\n        },\n        {\n            \"id\": \"481c8322-5d9f-48ee-ade0-b893e425cfde\",\n            \"name\": \"ACCC Insurance Company\",\n            \"provider_link\": null,\n            \"provider_url\": null,\n            \"fax\": null,\n            \"email\": null,\n            \"states\": [],\n            \"agency_email\": null,\n            \"agency_fax\": null,\n            \"draft\": false\n        },\n        {\n            \"id\": \"dd715f86-fef5-4353-9259-f5d8c36ff6ad\",\n            \"name\": \"ACEd Group\",\n            \"provider_link\": \"\",\n            \"provider_url\": \"\",\n            \"fax\": \"7898797988\",\n            \"email\": \"aaa@f.com\",\n            \"states\": [],\n            \"agency_email\": \"\",\n            \"agency_fax\": \"\",\n            \"draft\": false\n        },\n        {\n            \"id\": \"7e28b0e2-ae38-43e8-a18e-4956bb746dfc\",\n            \"name\": \"AD/Individual Dental\",\n            \"provider_link\": null,\n            \"provider_url\": null,\n            \"fax\": null,\n            \"email\": null,\n            \"states\": [],\n            \"agency_email\": null,\n            \"agency_fax\": null,\n            \"draft\": false\n        }\n    ]\n}"}],"_postman_id":"9082826c-15a2-493e-b06b-77b30d5643fe"},{"name":"Get Carrier","id":"5cb485b6-d365-42ea-bec5-81d95c97ce83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/carriers/{{carrier_id}}","description":"<p>Get a particular carrier of an agency by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","carriers","{{carrier_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"e8a1d480-2de4-4d06-a3e9-26703b860a30","name":"Get Carrier","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/carriers/{{carrier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"f831b443-6663-4f20-8976-ccd373691c53"},{"key":"X-Runtime","value":"0.053966"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"l4d8fne49gjdy0oysmqy\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"d4c9317f-f240-4d38-aa37-86d05885badf\",\n        \"name\": \"Blue Cross Blue Shield of Michigan\",\n        \"provider_link\": \"\",\n        \"provider_url\": \"\",\n        \"fax\": \"\",\n        \"email\": \"\",\n        \"states\": [\n            \"MI\"\n        ],\n        \"agency_email\": \"\",\n        \"agency_fax\": \"\",\n        \"draft\": false\n    }\n}"}],"_postman_id":"5cb485b6-d365-42ea-bec5-81d95c97ce83"},{"name":"Search Carriers","id":"ecc10385-349d-4829-885f-dace2e35708d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/carriers/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your carriers in an agency by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","carriers","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"390c6d05-e93b-4536-9e24-1f4c2d3672ff","name":"Search Carriers","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/carriers/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","carriers","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"f51725a5-5dab-4639-bc82-375db6ec1977"},{"key":"X-Runtime","value":"0.170962"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"g3ujhna06e5rranf8u6z\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"cd8d38b8-a745-4b1f-98ac-22095346088d\",\n            \"name\": \"Aetna US Healthcare\",\n            \"provider_link\": null,\n            \"provider_url\": null,\n            \"fax\": null,\n            \"email\": null,\n            \"states\": [],\n            \"agency_email\": null,\n            \"agency_fax\": null,\n            \"draft\": false\n        },\n        {\n            \"id\": \"53a4e57d-7b9c-483d-b20f-7688d5643625\",\n            \"name\": \"Coventry Health Care of GA, Inc./Aetna\",\n            \"provider_link\": null,\n            \"provider_url\": null,\n            \"fax\": null,\n            \"email\": null,\n            \"states\": [],\n            \"agency_email\": null,\n            \"agency_fax\": null,\n            \"draft\": false\n        },\n        {\n            \"id\": \"dd67facd-5847-496e-9d83-e93be242e4a4\",\n            \"name\": \"The Protect Plans\",\n            \"provider_link\": \"http://www.aetna.com/dse/search?site_id=mymeritain\",\n            \"provider_url\": null,\n            \"fax\": \"\",\n            \"email\": \"enroll123@mailinator.com\",\n            \"states\": [\n                \"CA\"\n            ],\n            \"agency_email\": \"gaenroll123@mailintator.com\",\n            \"agency_fax\": \"\",\n            \"draft\": false\n        }\n    ]\n}"}],"_postman_id":"ecc10385-349d-4829-885f-dace2e35708d"},{"name":"Create Carrier","id":"e97229d7-f1d5-411f-bf9e-7f57172cb3cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My new Carrier\",\n    \"provider_link\": \"provider link\",\n    \"provider_url\": \"provider URL\",\n    \"fax\": \"fax\",\n    \"email\": \"email\",\n    \"states\": [\n        \"MI\"\n    ],\n    \"agency_email\": \"agency email\",\n    \"agency_fax\": \"agency fax\",\n    \"draft\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/carriers","description":"<p>Create a new carrier in your agency through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","carriers"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"4b75a673-b611-4aa6-8a23-19c7264085a0","name":"Create Carrier","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My new Carrier\",\n    \"provider_link\": \"provider link\",\n    \"provider_url\": \"provider URL\",\n    \"fax\": \"fax\",\n    \"email\": \"email\",\n    \"states\": [\n        \"MI\"\n    ],\n    \"agency_email\": \"agency email\",\n    \"agency_fax\": \"agency fax\",\n    \"draft\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/carriers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"bb2d1f48-4e17-4bce-a577-a1ff592c0130"},{"key":"X-Runtime","value":"1.055227"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"4gxcmfrpyqtvl4a2rdf4\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\",\"o4aaezkjb8zy9docnxlq\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"877ac21c-ab86-45d7-84b5-70c7b974b3f3\",\n        \"name\": \"My new Carrier\",\n        \"provider_link\": \"provider link\",\n        \"provider_url\": \"provider URL\",\n        \"fax\": \"fax\",\n        \"email\": \"email\",\n        \"states\": [\n            \"MI\"\n        ],\n        \"agency_email\": \"agency email\",\n        \"agency_fax\": \"agency fax\",\n        \"draft\": false\n    }\n}"}],"_postman_id":"e97229d7-f1d5-411f-bf9e-7f57172cb3cb"},{"name":"Update Carrier","id":"c04f79d6-aab5-46ce-affb-909aa3ebae8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My new Carrier\",\n    \"provider_link\": \"provider_link.com\",\n    \"provider_url\": \"provider_URL\",\n    \"fax\": \"fax\",\n    \"email\": \"sample_carrier_email@carrier.com\",\n    \"states\": [\n        \"TX\"\n    ],\n    \"agency_email\": \"agency_email@mail.com\",\n    \"agency_fax\": \"agency fax\",\n    \"draft\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/carriers/{{carrier_id}}","description":"<p>Update your existing carrier attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","carriers","{{carrier_id}}"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"ec4b9dac-e8c6-4e3b-b6f2-6d6c7f5d1ec0","name":"Update Carrier","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"My new Carrier\",\n    \"provider_link\": \"provider_link.com\",\n    \"provider_url\": \"provider_URL\",\n    \"fax\": \"fax\",\n    \"email\": \"sample_carrier_email@carrier.com\",\n    \"states\": [\n        \"TX\"\n    ],\n    \"agency_email\": \"agency_email@mail.com\",\n    \"agency_fax\": \"agency fax\",\n    \"draft\": false\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/carriers/{{carrier_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-store, must-revalidate, private, max-age=0"},{"key":"X-Meta-Request-Version","value":"0.7.0"},{"key":"X-Request-Id","value":"a91f241b-c4b1-4037-b1c0-5f7e8ba5bc04"},{"key":"X-Runtime","value":"0.190449"},{"key":"X-MiniProfiler-Original-Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-MiniProfiler-Ids","value":"[\"yunorek7muus04j463g\",\"t50pu1dnf9btvxwfx57x\",\"g4cmu7es8jzibnga79xp\",\"bdpan3nyy98vd92aeihl\",\"l4d8fne49gjdy0oysmqy\",\"3h8b2nvuf4lolnbuwhgb\",\"dglgbpsfzby55wp6xsfr\",\"vqgoo29tpthnu87kw3nn\",\"x34t4w9dqbyhzrj1esxf\",\"j3tifxpdohc54sbjhq5e\",\"5yrsxpan07nzbh43u63s\",\"9f2gnt2zwnu1ewe1ljy9\",\"2cmwgyvvh4p59pyl57aq\",\"phwnnyfml7pwkcuwun8e\",\"enoefuo0l0c0a6uc1paq\",\"g3ujhna06e5rranf8u6z\",\"o4aaezkjb8zy9docnxlq\",\"4gxcmfrpyqtvl4a2rdf4\"]"},{"key":"Set-Cookie","value":"__profilin=p%3Dt; path=/; HttpOnly"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"877ac21c-ab86-45d7-84b5-70c7b974b3f3\",\n        \"name\": \"My new Carrier\",\n        \"provider_link\": \"provider_link.com\",\n        \"provider_url\": \"provider_URL\",\n        \"fax\": \"fax\",\n        \"email\": \"sample_carrier_email@carrier.com\",\n        \"states\": [\n            \"TX\"\n        ],\n        \"agency_email\": \"agency_email@mail.com\",\n        \"agency_fax\": \"agency fax\",\n        \"draft\": false\n    }\n}"}],"_postman_id":"c04f79d6-aab5-46ce-affb-909aa3ebae8b"}],"id":"d0b28a05-e6db-4433-921e-3bf4505c0a36","description":"<p>All carriers of an agency.</p>\n","_postman_id":"d0b28a05-e6db-4433-921e-3bf4505c0a36"},{"name":"Contacts","item":[{"name":"Contacts","id":"36f3302d-faca-47fa-99db-f9d9bc1efd5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts?limit=10&offset=0","description":"<p>Use this endpoint to fetch contacts.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"3446ca22-2170-4e1a-9072-d9e030453479","name":"Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/contacts?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","contacts"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 08:37:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"7c52abef11c8bc5229106e1467e3f6af\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"99887c23-f62c-44ef-b8dd-81641e2e73e6"},{"key":"X-Runtime","value":"0.137362"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contact_info\": {\n                \"id\": \"0c811199-ca0e-4784-81c9-9e34fba8ff7a\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\",\n                \"county\": \"\",\n                \"address\": \"\",\n                \"physical_address_2\": \"\",\n                \"address_2\": \"\",\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"kyleguthrie1978@yahoo.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"bc3a272e-3f60-4244-9b6d-800456991d9d\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"support+id49XMX9-MWOO@take44.zendesk.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"2ed0029d-a33d-4c92-8ddf-18d553a28592\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"curtischief3@gmail.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"f99e4ba8-540a-46c0-a229-5c7895a87371\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"jamesnathanjenkins@gmail.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"ade4c6e1-a048-4e65-9b87-a23388d3c7be\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"support+id8MZW7V-DEZM@take44.zendesk.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"b0e8f8b0-f413-4817-8881-48531c669645\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"support+id49PO7Q-RQ77@take44.zendesk.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"158dcca7-6729-428d-84d9-3aa157f410d0\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"support+id652EV5-8WEXL@take44.zendesk.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"ed0943bf-eee8-406a-8cf5-db6b77872c53\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"deafhawk_2000@yahoo.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"087facc5-26e2-4941-8ea8-920d0a7d9d13\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"jefferyweston729@yahoo.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"7adfa159-9fe3-42c9-980d-3fa44403407e\",\n                \"first_name\": null,\n                \"last_name\": null,\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"popichewlow@gmail.com\",\n                    \"email_type\": null,\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"36f3302d-faca-47fa-99db-f9d9bc1efd5b"},{"name":"Search Contacts","id":"6426cb38-d946-4223-928d-44ea2e3ae921","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts/search?query={{query}}&limit=10&offset=0","description":"<p>Filter your contacts in an agency by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"a1305ed0-2988-4f83-a714-845c96653b78","name":"Search Contacts","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/contacts/search?query={{query}}&limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","contacts","search"],"query":[{"key":"query","value":"{{query}}"},{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Mar 2023 08:34:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"531dc4398078f4ed41532ba6aea80ba3\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"457f45ff-9a3a-47a8-b80f-caf391097799"},{"key":"X-Runtime","value":"2.059573"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contact_info\": {\n                \"id\": \"43b3737e-34ef-440d-aad4-afc7fe8d0066\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Brady\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": \"\",\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": \"1984-11-10\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": true,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"e863e1e8-4cc4-4111-bc04-6d294ca66136\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Brady\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": \"\",\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": \"1984-11-10\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": true,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"50a27aef-6fbc-4fe8-b3f6-4d2fe3a3b0af\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Brady\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": \"\",\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": \"1984-11-10\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": true,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"8ce3ed7d-650a-4c2a-b198-989b0129ad82\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Brady\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": \"\",\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": \"1984-11-10\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": true,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"69d467ee-dbe5-471f-b078-8fb7ca4afb16\",\n                \"first_name\": \"Dwayne \",\n                \"last_name\": \"Wade \",\n                \"nickname\": \"\",\n                \"middle_name\": \"\",\n                \"prefix\": \"\",\n                \"suffix\": \"\",\n                \"title\": \"\",\n                \"url\": \"\",\n                \"city\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\",\n                \"county\": \"\",\n                \"address\": \"\",\n                \"physical_address_2\": \"\",\n                \"address_2\": \"\",\n                \"mailing_address_2\": \"\",\n                \"mailing_city\": \"\",\n                \"mailing_state\": \"\",\n                \"mailing_zipcode\": \"\",\n                \"mailing_county\": \"\",\n                \"vendor_name\": \"\",\n                \"vendor_type\": \"\",\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"test101@insurance.com\",\n                    \"email_type\": \"Work\",\n                    \"other_type_name\": \"\",\n                    \"is_default\": true\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"0a89664c-a014-4cea-bd0d-01d409e3342f\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Anderson\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"wanderson@tebpros.com\",\n                    \"email_type\": \"Other\",\n                    \"other_type_name\": \"other\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"8165b063-ca49-4681-892d-5f074c8d573d\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"A\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"contact_emails\": [\n                {\n                    \"email\": \"waynea30@hotmail.com\",\n                    \"email_type\": \"Other\",\n                    \"other_type_name\": \"other\",\n                    \"is_default\": false\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"12ae80fa-8f1e-4b4b-aab4-ff7e79210274\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Starks\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"8.175632478E9\",\n                    \"phone_number_type\": \"Home\",\n                    \"is_default\": false,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"db650956-08e6-431d-a5af-f0c3ef10e3d6\",\n                \"first_name\": \"Wayne\",\n                \"last_name\": \"Brady\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": \"\",\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": \"1984-11-10\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": true,\n                    \"extension\": null\n                }\n            ]\n        },\n        {\n            \"contact_info\": {\n                \"id\": \"54c869d5-669e-4f2f-a471-473b8a6401a3\",\n                \"first_name\": \"DeWayne\",\n                \"last_name\": \"Johnson\",\n                \"nickname\": null,\n                \"middle_name\": null,\n                \"prefix\": null,\n                \"suffix\": null,\n                \"title\": null,\n                \"url\": null,\n                \"city\": null,\n                \"state\": null,\n                \"zipcode\": null,\n                \"county\": null,\n                \"address\": null,\n                \"physical_address_2\": null,\n                \"address_2\": null,\n                \"mailing_address_2\": null,\n                \"mailing_city\": null,\n                \"mailing_state\": null,\n                \"mailing_zipcode\": null,\n                \"mailing_county\": null,\n                \"vendor_name\": null,\n                \"vendor_type\": null,\n                \"birth_date\": null\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"7049995623\",\n                    \"phone_number_type\": \"Other\",\n                    \"is_default\": false,\n                    \"extension\": null\n                },\n                {\n                    \"phone_number\": \"9185846443\",\n                    \"phone_number_type\": \"Other\",\n                    \"is_default\": false,\n                    \"extension\": null\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"6426cb38-d946-4223-928d-44ea2e3ae921"},{"name":"Get Contact","id":"bdd33f28-70e9-492f-9018-eb6651263506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts/","description":"<p>Get a particular Contact by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"36017f4c-3eae-4aa7-a234-58341bc14032","name":"Get Contact","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 04 May 2026 08:59:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"55a048d23444c6edabcefebd1eadc03e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"1c65368a-5331-4883-9020-0c8f43e84b24"},{"key":"X-Runtime","value":"0.250958"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"contact_info\": {\n            \"id\": \"9b9b25c7-73a4-4af9-8774-ed7c7a504b1f\",\n            \"first_name\": \"New\",\n            \"last_name\": \"Contact\",\n            \"nickname\": null,\n            \"middle_name\": null,\n            \"prefix\": null,\n            \"suffix\": null,\n            \"title\": null,\n            \"url\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"address\": null,\n            \"physical_address_2\": null,\n            \"address_2\": null,\n            \"mailing_address_2\": null,\n            \"mailing_city\": null,\n            \"mailing_state\": null,\n            \"mailing_zipcode\": null,\n            \"mailing_county\": null,\n            \"vendor_name\": null,\n            \"vendor_type\": null,\n            \"birth_date\": null,\n            \"note\": null,\n            \"tags\": \"\",\n            \"redirect_url\": \"https://yahoo.nextbroker.io/account/contacts?identify=9b9b25c7-73a4-4af9-8774-ed7c7a504b1f&api=true\"\n        },\n        \"phone_numbers\": [\n            {\n                \"phone_number\": \"505-999-3339\",\n                \"phone_number_type\": \"Mobile\",\n                \"is_default\": true,\n                \"extension\": null\n            },\n            {\n                \"phone_number\": \"505-999-3340\",\n                \"phone_number_type\": \"Home\",\n                \"is_default\": false,\n                \"extension\": null\n            }\n        ],\n        \"contact_emails\": [\n            {\n                \"email\": \"qa-test@verify.com\",\n                \"email_type\": \"Work\",\n                \"other_type_name\": null,\n                \"is_default\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"bdd33f28-70e9-492f-9018-eb6651263506"},{"name":"Search By Phone Number","id":"8f31c455-a368-49bf-b03f-512df9df09de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts/search_by_phone_number?phone_numbers={{phone_numbers}}","description":"<p>Filter your contacts in an agency by submitting a phone number as param to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts","search_by_phone_number"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Phone number you want to search for</p>\n","type":"text/plain"},"key":"phone_numbers","value":"{{phone_numbers}}"}],"variable":[]}},"response":[{"id":"77bd0522-2c9b-4d76-9385-674a8d086a00","name":"Search By Phone Number","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/contacts/search_by_phone_number?phone_numbers={{phone_numbers}}","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","contacts","search_by_phone_number"],"query":[{"key":"phone_numbers","value":"{{phone_numbers}}","description":"Phone number you want to search for"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 17 Apr 2023 12:11:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"f36fe3840a54cdc07029c18ae2bd8d81\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0a2f928e-7f41-4c35-a5f6-6aec1ca61281"},{"key":"X-Runtime","value":"3.304307"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"contact_info\": {\n                \"id\": \"e943f6fd-b04b-46d6-9c2e-832beb77067f\",\n                \"first_name\": \"Shoaib\",\n                \"last_name\": \"Akram\",\n                \"nickname\": \"\",\n                \"middle_name\": \"\",\n                \"prefix\": \"\",\n                \"suffix\": \"\",\n                \"title\": \"\",\n                \"url\": \"\",\n                \"city\": \"\",\n                \"state\": \"\",\n                \"zipcode\": \"\",\n                \"county\": \"\",\n                \"address\": \"\",\n                \"physical_address_2\": \"\",\n                \"address_2\": \"\",\n                \"mailing_address_2\": \"\",\n                \"mailing_city\": \"\",\n                \"mailing_state\": \"\",\n                \"mailing_zipcode\": \"\",\n                \"mailing_county\": \"\",\n                \"vendor_name\": \"\",\n                \"vendor_type\": \"\",\n                \"birth_date\": null,\n                \"note\": \"This is a note\",\n                \"tags\": \"Universities great\",\n                \"redirect_url\": \"https://yahoo.nextbroker.io/account/contacts?identify=e943f6fd-b04b-46d6-9c2e-832beb77067f&api=true\"\n            },\n            \"phone_numbers\": [\n                {\n                    \"phone_number\": \"777-988-7678\",\n                    \"phone_number_type\": \"Work\",\n                    \"is_default\": false,\n                    \"extension\": \"\"\n                }\n            ],\n            \"contact_emails\": [\n                {\n                    \"email\": \"shoaib@take44.com\",\n                    \"email_type\": \"Other\",\n                    \"other_type_name\": \"\",\n                    \"is_default\": false\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"8f31c455-a368-49bf-b03f-512df9df09de"},{"name":"Create Contact","id":"55ef314e-6375-4581-b4de-8eef6edd2b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"first_name\": \"New\",\"last_name\": \"Contact\",  \"email\": \"test@gmail.com\", \"phone_numbers\": [\n    {\"phone_number\": \"505-999-3340\", \"phone_number_type\": \"Home\", \"is_default\": false},\n    {\"phone_number\": \"505-999-3339\", \"phone_number_type\": \"Mobile\", \"is_default\": true}\n  ],\n  \"contact_emails_attributes\": [\n    {\"email\": \"qa-test@verify.com\", \"email_type\": \"Work\", \"is_default\": true}\n  ]}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/contacts","description":"<p>Create a new Contact in your agency through this endpoin</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"5512de89-8ccb-43ea-855a-f103eeb121a1","name":"Create Contact","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\"first_name\": \"New\",\"last_name\": \"Contact\",  \"email\": \"test@gmail.com\", \"phone_numbers\": [\n    {\"phone_number\": \"505-999-3340\", \"phone_number_type\": \"Home\", \"is_default\": false},\n    {\"phone_number\": \"505-999-3339\", \"phone_number_type\": \"Mobile\", \"is_default\": true}\n  ],\n  \"contact_emails_attributes\": [\n    {\"email\": \"qa-test@verify.com\", \"email_type\": \"Work\", \"is_default\": true}\n  ]}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/contacts"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 04 May 2026 08:55:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"55a048d23444c6edabcefebd1eadc03e\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f0407acf-15cc-4742-bfbf-c56b4e158c47"},{"key":"X-Runtime","value":"2.016618"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"contact_info\": {\n            \"id\": \"9b9b25c7-73a4-4af9-8774-ed7c7a504b1f\",\n            \"first_name\": \"New\",\n            \"last_name\": \"Contact\",\n            \"nickname\": null,\n            \"middle_name\": null,\n            \"prefix\": null,\n            \"suffix\": null,\n            \"title\": null,\n            \"url\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"address\": null,\n            \"physical_address_2\": null,\n            \"address_2\": null,\n            \"mailing_address_2\": null,\n            \"mailing_city\": null,\n            \"mailing_state\": null,\n            \"mailing_zipcode\": null,\n            \"mailing_county\": null,\n            \"vendor_name\": null,\n            \"vendor_type\": null,\n            \"birth_date\": null,\n            \"note\": null,\n            \"tags\": \"\",\n            \"redirect_url\": \"https://yahoo.nextbroker.io/account/contacts?identify=9b9b25c7-73a4-4af9-8774-ed7c7a504b1f&api=true\"\n        },\n        \"phone_numbers\": [\n            {\n                \"phone_number\": \"505-999-3339\",\n                \"phone_number_type\": \"Mobile\",\n                \"is_default\": true,\n                \"extension\": null\n            },\n            {\n                \"phone_number\": \"505-999-3340\",\n                \"phone_number_type\": \"Home\",\n                \"is_default\": false,\n                \"extension\": null\n            }\n        ],\n        \"contact_emails\": [\n            {\n                \"email\": \"qa-test@verify.com\",\n                \"email_type\": \"Work\",\n                \"other_type_name\": null,\n                \"is_default\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"55ef314e-6375-4581-b4de-8eef6edd2b6d"},{"name":"Update Contact","id":"3cccaa4c-2360-4b00-b945-a0f26131f022","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Existing\"}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/contacts/","description":"<p>Update your existing contact attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts",""],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"2c4f0fac-a805-460b-8583-93419a84b8ac","name":"Update Contact","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Existing\"}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/contacts/"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 04 May 2026 09:00:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"c9f711b83868d4e7aa70b269c8f9947c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c30a53a0-04eb-48b0-afd8-ed76daede7ed"},{"key":"X-Runtime","value":"0.330224"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"contact_info\": {\n            \"id\": \"9b9b25c7-73a4-4af9-8774-ed7c7a504b1f\",\n            \"first_name\": \"Existing\",\n            \"last_name\": \"Contact\",\n            \"nickname\": null,\n            \"middle_name\": null,\n            \"prefix\": null,\n            \"suffix\": null,\n            \"title\": null,\n            \"url\": null,\n            \"city\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"county\": null,\n            \"address\": null,\n            \"physical_address_2\": null,\n            \"address_2\": null,\n            \"mailing_address_2\": null,\n            \"mailing_city\": null,\n            \"mailing_state\": null,\n            \"mailing_zipcode\": null,\n            \"mailing_county\": null,\n            \"vendor_name\": null,\n            \"vendor_type\": null,\n            \"birth_date\": null,\n            \"note\": null,\n            \"tags\": \"\",\n            \"redirect_url\": \"https://yahoo.nextbroker.io/account/contacts?identify=9b9b25c7-73a4-4af9-8774-ed7c7a504b1f&api=true\"\n        },\n        \"phone_numbers\": [\n            {\n                \"phone_number\": \"505-999-3339\",\n                \"phone_number_type\": \"Mobile\",\n                \"is_default\": true,\n                \"extension\": null\n            },\n            {\n                \"phone_number\": \"505-999-3340\",\n                \"phone_number_type\": \"Home\",\n                \"is_default\": false,\n                \"extension\": null\n            }\n        ],\n        \"contact_emails\": [\n            {\n                \"email\": \"qa-test@verify.com\",\n                \"email_type\": \"Work\",\n                \"other_type_name\": null,\n                \"is_default\": true\n            }\n        ]\n    }\n}"}],"_postman_id":"3cccaa4c-2360-4b00-b945-a0f26131f022"},{"name":"Get contact associated entities","id":"1ebd76eb-736d-4736-bb3a-677bddb073e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/contacts//associated_entities?offset=0&limit=10","description":"<p>Get associated cases of contact through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","contacts","","associated_entities"],"host":["yahoo.nextbroker.io"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"10"}],"variable":[]}},"response":[{"id":"552c5108-9942-49d0-8caf-65ca38b0e93c","name":"Get contact associated entities","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/contacts//associated_entities?offset=0&limit=10","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","contacts","","associated_entities"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 05 Nov 2025 11:20:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"87ea98c4d4a4045ac4a0790edb55af66\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"88349ebf-a05b-4833-a8b6-db4b4ef53c53"},{"key":"X-Runtime","value":"0.308688"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"associated_entities\": {\n            \"associated_cases\": [\n                {\n                    \"uuid\": \"dcaf327b-7ae7-48e0-b55d-30bae3543512\",\n                    \"name\": \"Saul Conners\",\n                    \"created_at\": \"2025-06-27T15:44:43.155Z\"\n                },\n                {\n                    \"uuid\": \"b5aa6001-9432-43ac-9963-e7e522a549c5\",\n                    \"name\": \"Small and Large\",\n                    \"created_at\": \"2025-09-30T20:35:21.401Z\"\n                },\n                {\n                    \"uuid\": \"b5aa6001-9432-43ac-9963-e7e522a549c5\",\n                    \"name\": \"check script\",\n                    \"created_at\": \"2025-06-04T10:29:31.203Z\"\n                }\n            ]\n        }\n    }\n}"}],"_postman_id":"1ebd76eb-736d-4736-bb3a-677bddb073e8"}],"id":"d333162a-3ffe-46b5-9636-9af8cbd2f9a9","_postman_id":"d333162a-3ffe-46b5-9636-9af8cbd2f9a9","description":""},{"name":"Voip Recordings","item":[{"name":"Voip Recordings","id":"15c9f328-8e94-44db-a9e2-dc51cb9c0bb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings?limit=50&offset=0","description":"<p>Use this endpoint to fetch all voip recordings of the agency</p>\n","urlObject":{"protocol":"https","path":["api","v2","voip_recordings"],"host":["yahoo.nextbroker.io"],"query":[{"key":"limit","value":"50"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"99fab39b-b568-4618-88d3-bbf46151d7b6","name":"Voip Recordings","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/voip_recordings?limit=50&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","voip_recordings"],"query":[{"key":"limit","value":"50"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 11:58:25 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"1e3d9164d29c752b09a60f3e3f42f25c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e81609d5-6bb0-4734-8e25-6b87aba5490b"},{"key":"X-Runtime","value":"0.737632"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"9b1d3ad5-9148-42ba-9289-a56de5d40846\",\n            \"talked_at\": \"2022-09-09T15:22:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"1eef2e79-aa16-4810-9068-a09cb0200904\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"fe3695d6-ecef-468d-a1e5-540c7d7e0cb6\",\n            \"talked_at\": \"2022-10-06T14:32:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [],\n                \"by_custom_names\": [\n                    \"OGGY\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"6d42158a-ded7-4cbd-9f2c-8b6f4e78cef1\",\n            \"talked_at\": \"2022-11-03T07:31:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"dd5dadba-b752-425c-b07a-909b6a3b37ff\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"96a231a2-265a-4d3c-8f15-d49b315a277b\",\n            \"talked_at\": \"2023-03-28T15:26:00.000Z\",\n            \"phone_number\": \"111-111-1111\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"naeembashir.dev@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"b1da9f26-e30c-4ce3-922c-c4f54f9338e8\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"bfd026f4-0e2c-49b2-9a3c-93b5ecf0eec4\",\n            \"talked_at\": \"2023-04-06T17:45:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [],\n                \"by_custom_names\": [\n                    \"Tom\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"d0fd4537-512a-45de-b550-5a508083ad38\",\n            \"talked_at\": \"2023-04-01T17:19:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"4707627c-b11d-4148-b39e-da508c260017\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"b33d25dc-4c86-480b-ba32-03725ea5db48\",\n            \"talked_at\": \"2022-09-07T09:36:00.000Z\",\n            \"phone_number\": \"999-888-5555\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"221d6f84-8505-4143-bfd4-107a0f7f73d7\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"bfed88b7-952b-4125-84b9-8738f912723d\",\n            \"talked_at\": \"2022-09-13T16:28:00.000Z\",\n            \"phone_number\": \"123-456-7899\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"f2fd42c4-3546-4d2c-a484-4ae6866162f4\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"d731bdaf-f9b0-4283-ba4a-87978f0a59d7\",\n            \"talked_at\": \"2022-09-28T19:27:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"9405618f-8e11-46ba-b360-5a32b72272a9\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"53d8cfae-9d57-440e-b26f-7c6de18c075c\",\n            \"talked_at\": \"2022-10-06T12:06:00.000Z\",\n            \"phone_number\": \"232-323-2322\",\n            \"link\": \"https://www.youtube.com\",\n            \"topics\": [\n                \"case security\"\n            ],\n            \"source\": [\n                \"new\"\n            ],\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"3157777c-5f88-4a67-8e51-96fbd3ff536e\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"212f2b8b-9d61-42f7-a0dc-0f704933d76d\",\n            \"talked_at\": \"2022-10-06T14:31:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"63401788-d1bc-4875-aafc-0def022c43db\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"0f49d35c-7b62-482d-94a1-04d50b0adc8f\",\n            \"talked_at\": \"2022-11-03T07:21:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": null,\n            \"talked_with\": {\n                \"by_contact_ids\": [],\n                \"by_custom_names\": [\n                    \"HI\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"74c50881-0808-4581-b397-8d1ba9a8a561\",\n            \"talked_at\": \"2022-12-01T09:34:00.000Z\",\n            \"phone_number\": \"999-888-5555\",\n            \"link\": \"https://www.youtube.com/\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"nikki@sixx.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"221d6f84-8505-4143-bfd4-107a0f7f73d7\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"cd074fa3-b9da-4d80-aeff-576c3c656c25\",\n            \"talked_at\": \"2023-02-22T19:38:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"12345@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"730d9611-4d9a-4289-9dc7-8a2f96418ed2\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"3cfee2a7-2901-417c-9c22-e4a3e35ef56a\",\n            \"talked_at\": \"2023-03-16T16:41:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"kj@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"74d1d22b-b2e9-461f-9307-43a2ce569573\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"dd13c261-98e0-42fb-875f-b04edc781a91\",\n            \"talked_at\": \"2023-03-20T18:39:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": [\n                \"Call tab\"\n            ],\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"e426b9be-dd9e-4064-a313-d1a2c17c1a46\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"babd1005-3035-4841-8b0d-07b28f64c138\",\n            \"talked_at\": \"2023-03-28T14:23:00.000Z\",\n            \"phone_number\": \"111-111-1111\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": [\n                \"new\"\n            ],\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"b506efd9-4735-47eb-8d1e-328e197f0fa0\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"c48b1dac-548b-412a-a1a6-33d175b572a1\",\n            \"talked_at\": \"2023-03-28T15:25:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [],\n                \"by_custom_names\": [\n                    \"axaxaax\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"c9836cbe-7e76-473a-bddc-cb51c9030704\",\n            \"talked_at\": \"2023-04-06T17:38:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [],\n                \"by_custom_names\": [\n                    \"James\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"051d58c3-62f8-4cf4-881a-3b4ded471910\",\n            \"talked_at\": \"2023-04-10T13:55:00.000Z\",\n            \"phone_number\": \"814-823-9331\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"eli@churchofeli.org\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"89dfb2e0-e8be-4fe1-8617-027f76b136c5\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"64d08a47-7faf-41d4-9376-985a6e303e70\",\n            \"talked_at\": \"2023-04-14T13:04:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"d5c68f48-4617-41d9-8ae7-ee738b2fde8e\",\n                    \"80db6b9f-01bc-4d45-bf98-1512a4522da8\",\n                    \"e1485448-2cd9-4a8b-b2ae-46924edfe868\",\n                    \"b1da9f26-e30c-4ce3-922c-c4f54f9338e8\",\n                    \"a31c778b-f649-4359-9313-45d44d75ed7c\",\n                    \"5eb55dd4-e503-4311-a70a-02278539a139\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"16b62a55-5f25-48c8-bd97-3587d53c6300\",\n            \"talked_at\": \"2023-04-14T12:54:00.000Z\",\n            \"phone_number\": \"111-111-1111\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"naeembashir.dev@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"e1485448-2cd9-4a8b-b2ae-46924edfe868\",\n                    \"b1da9f26-e30c-4ce3-922c-c4f54f9338e8\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"6b68e9f6-19a8-403a-b80c-5d464dbee675\",\n            \"talked_at\": \"2023-04-21T17:48:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": [\n                \"case security\"\n            ],\n            \"source\": [\n                \"new\"\n            ],\n            \"email\": \"12345@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"730d9611-4d9a-4289-9dc7-8a2f96418ed2\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"fad0195e-2559-4a5d-b063-d63e447e2788\",\n            \"talked_at\": \"2023-04-26T07:28:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"devshoaib.akram@gmail.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"05612d73-ec04-4ea2-be09-037fd8caeeb4\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"6dd42139-1caf-47aa-ae34-6fb946867562\",\n            \"talked_at\": \"2023-04-28T18:01:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": [\n                \"case security\"\n            ],\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"476210f4-fbd4-48c3-8b23-f8dd63df0555\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"560fee21-1d33-42f7-bbda-a49d46fec56d\",\n            \"talked_at\": \"2023-05-01T16:02:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"c1d09805-1139-435a-9449-69471a038780\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"3f954566-d763-4620-bbbc-6082829fb83c\",\n            \"talked_at\": \"2023-05-04T13:30:00.000Z\",\n            \"phone_number\": \"\",\n            \"link\": \"\",\n            \"topics\": null,\n            \"source\": null,\n            \"email\": \"\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"a31c778b-f649-4359-9313-45d44d75ed7c\"\n                ],\n                \"by_custom_names\": [],\n                \"by_account_contact_ids\": []\n            }\n        }\n    ]\n}"}],"_postman_id":"15c9f328-8e94-44db-a9e2-dc51cb9c0bb4"},{"name":"Get Voip Recording","id":"061a2515-99fb-4c0a-8194-23b2c4e05812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings/voip_recording_id","description":"<p>Get a particular voip recording of an agency by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","voip_recordings","voip_recording_id"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"3ba2771f-2d97-4996-8e10-4341fb1e8d93","name":"Get Voip Recording","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/voip_recordings/{{voip_recording_id}}","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","voip_recordings","{{voip_recording_id}}"],"query":[{"key":"","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 12:04:46 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"8f3da6f20b736b6cceb28d7df7d5ea0b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d16a06a7-0239-47a7-b804-c868d667b3a8"},{"key":"X-Runtime","value":"0.048960"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9b1d3ad5-9148-42ba-9289-a56de5d40846\",\n        \"talked_at\": \"2022-09-09T15:22:00.000Z\",\n        \"phone_number\": \"\",\n        \"link\": \"\",\n        \"topics\": null,\n        \"source\": null,\n        \"email\": null,\n        \"talked_with\": {\n            \"by_contact_ids\": [\n                \"1eef2e79-aa16-4810-9068-a09cb0200904\"\n            ],\n            \"by_custom_names\": [],\n            \"by_account_contact_ids\": []\n        }\n    }\n}"}],"_postman_id":"061a2515-99fb-4c0a-8194-23b2c4e05812"},{"name":"Create VOIP Recording","id":"0c8d922f-af67-4aaf-b137-cd204c0326a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"talked_at\" : \"2023-05-05 12:20:23 +0000\",\n    \"link\": \"www.example.com\" ,\n    \"topics\": [\"Meeting Call up\"],\n    \"source\": [\"Here and there\"],\n    \"note\"  : \"This is an example note\",\n    \"talked_with_list\": [\"Custom Contact Name\",\"3848e3a4-8b92-49b4-bcba-3173a7949a99\"],\n    \"email\" : \"johncena@gmail.com\",\n    \"phone_number\": \"111-202123\",\n    \"referenceable_id\":\"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n\n}\n","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings","description":"<p>Create a new voip recording in your agency through this endpoint.</p>\n<p>Following are params details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>talked_at</td>\n<td>This params contain the time when recording takes place</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email Address of the contact</td>\n</tr>\n<tr>\n<td>phone number</td>\n<td>Phone Number of the Contact</td>\n</tr>\n<tr>\n<td>topics</td>\n<td>[Topics of the voip recording</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Source of the Voip Recording</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Link of the voip recording</td>\n</tr>\n<tr>\n<td>talked_with_list</td>\n<td>Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Contain the details of the voip recording</td>\n</tr>\n<tr>\n<td>referenceable_id</td>\n<td>Id of the parent(can be the Business ID or Contact ID)  <br />*required params</td>\n</tr>\n<tr>\n<td>referenceable_type</td>\n<td>Parent Type(can be either Business or Contact)  <br />*required params</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","voip_recordings"],"host":["yahoo.nextbroker.io"],"query":[{"disabled":true,"description":{"content":"<p>This params contain the time when recording takes place</p>\n","type":"text/plain"},"key":"talked_at","value":""},{"disabled":true,"description":{"content":"<p>Email Address of the contact </p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p>Phone Number of the Contact</p>\n","type":"text/plain"},"key":"phone number","value":""},{"disabled":true,"description":{"content":"<p>Topic</p>\n","type":"text/plain"},"key":"topics","value":""},{"disabled":true,"description":{"content":"<p>Source of the Voip Recording</p>\n","type":"text/plain"},"key":"source","value":""},{"disabled":true,"description":{"content":"<p>Link of the recording if available</p>\n","type":"text/plain"},"key":"link","value":""},{"disabled":true,"description":{"content":"<p>Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording</p>\n","type":"text/plain"},"key":"talked_with_list","value":""},{"disabled":true,"description":{"content":"<p>Store any detail regarding the voip recording</p>\n","type":"text/plain"},"key":"note","value":""}],"variable":[]}},"response":[{"id":"a3ba0757-0983-46a5-a0cb-b52a593d1c53","name":"Create VOIP Recording","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"talked_at\" : \"2023-05-05 12:20:23 +0000\",\n    \"link\": \"www.example.com\" ,\n    \"topics\": [\"Meeting Call up\"],\n    \"source\": [\"Here and there\"],\n    \"note\"  : \"This is an example note\",\n    \"talked_with_list\": [\"Custom Contact Name\",\"3848e3a4-8b92-49b4-bcba-3173a7949a99\"],\n    \"email\" : \"johncena@gmail.com\",\n    \"phone_number\": \"111-202123\",\n    \"referenceable_id\":\"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n\n}\n","options":{"raw":{"language":"json"}}},"url":{"raw":"https://yahoo.nextbroker.io/api/v2/voip_recordings","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","voip_recordings"],"query":[{"key":"talked_at","value":"","description":"This params contain the time when recording takes place","disabled":true},{"key":"email","value":"","description":"Email Address of the contact ","disabled":true},{"key":"phone number","value":"","description":"Phone Number of the Contact","disabled":true},{"key":"topics","value":"","description":"Topic","disabled":true},{"key":"source","value":"","description":"Source of the Voip Recording","disabled":true},{"key":"link","value":"","description":"Link of the recording if available","disabled":true},{"key":"talked_with_list","value":"","description":"Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording","disabled":true},{"key":"note","value":"","description":"Store any detail regarding the voip recording","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 14:13:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"289773217a674e57795bf370aff40265\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_nextagency_session=d3k2TXp6b2JKK1VURU1GVVR1K01mZEM0YkRZbDlNZ2tvQTZ0Y2VxM2dPeTdENEVwdVRtMHR2c0NMMkN5QXZudEN0bzM4Nm5ObjZjRnE4TmxSeUJheEpuWU10dWt6TE5QL0hBY3ZUTUl2WXRQVEphRWdSblVDc3NEWFIxV3JoVWV3WTErUnl6OTJ6bjU0L2RvQ1JzNFdnPT0tLU9LUGtNbGl3aThOLytweGNuNk1COHc9PQ%3D%3D--550c9ab0d0f28c62985cea37ed63678d8983e706; path=/; HttpOnly"},{"key":"X-Request-Id","value":"fac8d0d4-817e-49e7-b2a2-8c09fd0773a7"},{"key":"X-Runtime","value":"0.232011"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Recording successfully added.\",\n    \"data\": {\n        \"id\": \"5c778f8b-55d5-4ab9-a0f1-1d508a6ffb58\",\n        \"talked_at\": \"2023-05-05T12:20:23.000Z\",\n        \"phone_number\": \"112-212-1212\",\n        \"link\": \"www.example.com\",\n        \"topics\": [],\n        \"source\": [],\n        \"email\": \"tt@pp.com\",\n        \"talked_with\": {\n            \"by_contact_ids\": [\n                \"3848e3a4-8b92-49b4-bcba-3173a7949a99\",\n                \"bd311bef-f634-4e17-9092-c2baedad460a\"\n            ],\n            \"by_custom_names\": [\n                \"Custom Contact Name\"\n            ],\n            \"by_account_contact_ids\": []\n        }\n    }\n}"}],"_postman_id":"0c8d922f-af67-4aaf-b137-cd204c0326a9"},{"name":"Update the voip recordings","id":"ab600b0d-d9cd-4741-aefc-c6deb9f4a881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"talked_at\" : \"2023-05-05 12:20:23 +0000\",\n    \"link\": \"www.exampasdle.com\" ,\n    \"topics\": [\"Meeting Call up\"],\n    \"source\": [\"Here and there\"],\n    \"note\"  : \"This is an exaasdmple note\",\n    \"talked_with_list\": [\"Custom Contact Name\",\"3848e3a4-8b92-49b4-bcba-3173a7949a99\"],\n    \"email\" : \"johncena@gmail.com\",\n    \"phone_number\": \"111-202123\",\n    \"referenceable_id\":\"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings/3656f8e0-29dd-4e9b-86d7-8d2cfdc67b32","description":"<p>Update a voip recording in your agency through this endpoint.</p>\n<p>Following are params details</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Params</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>talked_at</td>\n<td>This params contain the time when recording takes place</td>\n</tr>\n<tr>\n<td>email</td>\n<td>Email Address of the contact</td>\n</tr>\n<tr>\n<td>phone number</td>\n<td>Phone Number of the Contact</td>\n</tr>\n<tr>\n<td>topics</td>\n<td>[Topics of the voip recording</td>\n</tr>\n<tr>\n<td>source</td>\n<td>Source of the Voip Recording</td>\n</tr>\n<tr>\n<td>link</td>\n<td>Link of the voip recording</td>\n</tr>\n<tr>\n<td>talked_with_list</td>\n<td>Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording</td>\n</tr>\n<tr>\n<td>note</td>\n<td>Contain the details of the voip recording</td>\n</tr>\n<tr>\n<td>referenceable_id</td>\n<td>Id of the parent(can be the Business ID or Contact ID)  <br />*required params</td>\n</tr>\n<tr>\n<td>referenceable_type</td>\n<td>Parent Type(can be either Business or Contact)  <br />*required params</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["api","v2","voip_recordings","3656f8e0-29dd-4e9b-86d7-8d2cfdc67b32"],"host":["yahoo.nextbroker.io"],"query":[{"disabled":true,"description":{"content":"<p>This params contain the time when recording takes place</p>\n","type":"text/plain"},"key":"talked_at","value":""},{"disabled":true,"description":{"content":"<p>Email Address of the contact </p>\n","type":"text/plain"},"key":"email","value":""},{"disabled":true,"description":{"content":"<p>Phone Number of the Contact</p>\n","type":"text/plain"},"key":"phone number","value":""},{"disabled":true,"description":{"content":"<p>Topic</p>\n","type":"text/plain"},"key":"topics","value":""},{"disabled":true,"description":{"content":"<p>Source of the Voip Recording</p>\n","type":"text/plain"},"key":"source","value":""},{"disabled":true,"description":{"content":"<p>Link of the recording if available</p>\n","type":"text/plain"},"key":"link","value":""},{"disabled":true,"description":{"content":"<p>Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording</p>\n","type":"text/plain"},"key":"talked_with_list","value":""},{"disabled":true,"description":{"content":"<p>Store any detail regarding the voip recording</p>\n","type":"text/plain"},"key":"note","value":""}],"variable":[]}},"response":[{"id":"ff0d055a-c82d-4e02-b8d2-ccd09fa8e5e7","name":"Update the voip recordings","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"talked_at\" : \"2023-05-05 12:20:23 +0000\",\n    \"link\": \"www.exampasdle.com\" ,\n    \"topics\": [\"Meeting Call up\"],\n    \"source\": [\"Here and there\"],\n    \"note\"  : \"This is an exaasdmple note\",\n    \"talked_with_list\": [\"Custom Contact Name\",\"3848e3a4-8b92-49b4-bcba-3173a7949a99\"],\n    \"email\" : \"johncena@gmail.com\",\n    \"phone_number\": \"111-202123\",\n    \"referenceable_id\":\"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://yahoo.nextbroker.io/api/v2/voip_recordings/3656f8e0-29dd-4e9b-86d7-8d2cfdc67b32","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","voip_recordings","3656f8e0-29dd-4e9b-86d7-8d2cfdc67b32"],"query":[{"key":"talked_at","value":"","description":"This params contain the time when recording takes place","disabled":true},{"key":"email","value":"","description":"Email Address of the contact ","disabled":true},{"key":"phone number","value":"","description":"Phone Number of the Contact","disabled":true},{"key":"topics","value":"","description":"Topic","disabled":true},{"key":"source","value":"","description":"Source of the Voip Recording","disabled":true},{"key":"link","value":"","description":"Link of the recording if available","disabled":true},{"key":"talked_with_list","value":"","description":"Contain the contact ids of the contact invovled in the recording and any custom Contact details part of the recording","disabled":true},{"key":"note","value":"","description":"Store any detail regarding the voip recording","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 14:17:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"0746758cf198f063ab5442d73ed8c1d4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2b83ff73-99bb-4cd8-bd58-0e7e562ac572"},{"key":"X-Runtime","value":"0.132908"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Recording successfully Updated.\",\n    \"data\": {\n        \"id\": \"3656f8e0-29dd-4e9b-86d7-8d2cfdc67b32\",\n        \"talked_at\": \"2023-05-05T12:20:23.000Z\",\n        \"phone_number\": \"111-202123\",\n        \"link\": \"www.exampasdle.com\",\n        \"topics\": [],\n        \"source\": [],\n        \"email\": \"johncena@gmail.com\",\n        \"talked_with\": {\n            \"by_contact_ids\": [\n                \"3848e3a4-8b92-49b4-bcba-3173a7949a99\"\n            ],\n            \"by_custom_names\": [\n                \"Custom Contact Name\"\n            ],\n            \"by_account_contact_ids\": []\n        }\n    }\n}"}],"_postman_id":"ab600b0d-d9cd-4741-aefc-c6deb9f4a881"},{"name":"Get Voip Recordings By Referenceable","id":"e5a5b0f3-18fc-46d1-b979-68b221413b6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"referenceable_id\": \"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings/get_voip_recordings_via_referenceable","description":"<p>Get the voip recordings assoicated with business or contact using this endpoind.</p>\n","urlObject":{"protocol":"https","path":["api","v2","voip_recordings","get_voip_recordings_via_referenceable"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"cb26e579-4ab1-4121-918d-a93a37e40663","name":"Get Voip Recordings By Referenceable","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":"{\n    \"referenceable_id\": \"bd311bef-f634-4e17-9092-c2baedad460a\",\n    \"referenceable_type\": \"Contact\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/voip_recordings/get_voip_recordings_via_referenceable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 05 May 2023 13:39:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"close"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"4995c92237d8771d328291948bc53920\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"Set-Cookie","value":"_nextagency_session=b0RjQnp0TVBaNDdGd3NBSElCSk5pQ3ZKRXFpN05BeVliY212NUkxemxVdW1aNHFvZ2FkaUhKZy83ekZpbTRwMXlHNitqa1M4SUloWDBIREJheUpZd3JjNTNQc2IrdGhWdWxpSXFpVStzQ2Z2cGFDTHRCTE5DNzkyMlYwQzNOd0VGN3BGZjVJRjBTeGpZVDIyVHBpOU9RPT0tLXBXbENZdTNSUkZZdDFlbjhYL0xCSkE9PQ%3D%3D--78af4eb2365e0fe0b5d53c731208c843cc00622c; path=/; HttpOnly"},{"key":"X-Request-Id","value":"265dfae7-f462-4453-9614-f94236bcf48b"},{"key":"X-Runtime","value":"0.111293"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"d08b6859-fc6b-4902-8603-cb3077def469\",\n            \"talked_at\": \"2023-05-05T12:20:23.000Z\",\n            \"phone_number\": \"112-212-1212\",\n            \"link\": \"www.example.com\",\n            \"topics\": [],\n            \"source\": [],\n            \"email\": \"tt@pp.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"bd311bef-f634-4e17-9092-c2baedad460a\"\n                ],\n                \"by_custom_names\": [\n                    \"Custom Contact Name\",\n                    \"9b1d3ad5-9148-42ba-9289-a56de5d40846\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"060aaa9a-d65f-4a28-ad5f-6e021303a0ef\",\n            \"talked_at\": \"2023-05-05T12:20:23.000Z\",\n            \"phone_number\": \"112-212-1212\",\n            \"link\": \"www.example.com\",\n            \"topics\": [],\n            \"source\": [],\n            \"email\": \"tt@pp.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"bd311bef-f634-4e17-9092-c2baedad460a\"\n                ],\n                \"by_custom_names\": [\n                    \"Custom Contact Name\",\n                    \"9b1d3ad5-9148-42ba-9289-a56de5d40846\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        },\n        {\n            \"id\": \"698bbfa6-5be4-474a-9fd9-9cf2e39491ba\",\n            \"talked_at\": \"2023-05-05T12:20:23.000Z\",\n            \"phone_number\": \"112-212-1212\",\n            \"link\": \"www.example.com\",\n            \"topics\": [],\n            \"source\": [],\n            \"email\": \"tt@pp.com\",\n            \"talked_with\": {\n                \"by_contact_ids\": [\n                    \"3848e3a4-8b92-49b4-bcba-3173a7949a99\",\n                    \"bd311bef-f634-4e17-9092-c2baedad460a\"\n                ],\n                \"by_custom_names\": [\n                    \"Custom Contact Name\"\n                ],\n                \"by_account_contact_ids\": []\n            }\n        }\n    ]\n}"}],"_postman_id":"e5a5b0f3-18fc-46d1-b979-68b221413b6c"}],"id":"2e4cd863-ec50-4ba4-b459-77aa449e9cf8","_postman_id":"2e4cd863-ec50-4ba4-b459-77aa449e9cf8","description":""},{"name":"Employees","item":[{"name":"Employees","id":"108bcc22-4888-484f-b2a2-ea9b16328788","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees?limit=10&offset=0","description":"<p>Use this endpoint to fetch employees of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"26776493-7851-45e0-8574-0cde2afff13b","name":"Employees","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees"],"query":[{"key":"limit","value":"10","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 12:29:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"2c3278cd8f8b97ecad4fb920ede64569\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"455e571b-3137-47a4-84bc-407ce1523342"},{"key":"X-Runtime","value":"0.072372"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"53383dc0-289e-4247-b95e-4324aed6eeaa\",\n            \"first_name\": \"first empwew\",\n            \"last_name\": \"api\",\n            \"employment_type\": \"full_time\",\n            \"phone_number\": null,\n            \"age\": null,\n            \"gender\": \"female\",\n            \"state\": \"AL\",\n            \"zipcode\": \"54000\",\n            \"email\": \"demmvoib.akram@gmail.com\",\n            \"pay_cycle\": null,\n            \"start_date\": null,\n            \"termination_date\": null\n        },\n        {\n            \"id\": \"02a6a3c5-f5d6-43bc-a1c4-016e662a07af\",\n            \"first_name\": \"New\",\n            \"last_name\": \"Employee\",\n            \"employment_type\": \"full_time\",\n            \"phone_number\": \"\",\n            \"age\": null,\n            \"gender\": \"male\",\n            \"state\": \"AL\",\n            \"zipcode\": \"717171\",\n            \"email\": \"\",\n            \"pay_cycle\": \"\",\n            \"start_date\": null,\n            \"termination_date\": null\n        }\n    ]\n}"}],"_postman_id":"108bcc22-4888-484f-b2a2-ea9b16328788"},{"name":"Get Employee","id":"f1f9bfa2-d84c-4709-95ec-2297df2a362e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/02a6a3c5-f5d6-43bc-a1c4-016e662a07af?limit=100&offset=0","description":"<p>Get a particular employee of a case by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees","02a6a3c5-f5d6-43bc-a1c4-016e662a07af"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"a021ddfb-5eee-4ba2-a760-1ce8349b9f9a","name":"Get Employee","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/02a6a3c5-f5d6-43bc-a1c4-016e662a07af?limit=100&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees","02a6a3c5-f5d6-43bc-a1c4-016e662a07af"],"query":[{"key":"limit","value":"100"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 13:02:47 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"e24d4a51eb9a7dbae1f605a86a5bb0a2\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2799aaaa-0746-4c22-aeb7-93054d4e42ff"},{"key":"X-Runtime","value":"0.084571"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02a6a3c5-f5d6-43bc-a1c4-016e662a07af\",\n        \"first_name\": \"New\",\n        \"last_name\": \"Employee\",\n        \"employment_type\": \"full_time\",\n        \"phone_number\": \"\",\n        \"age\": null,\n        \"gender\": \"male\",\n        \"state\": \"AL\",\n        \"zipcode\": \"717171\",\n        \"email\": \"\",\n        \"pay_cycle\": \"\",\n        \"start_date\": null,\n        \"termination_date\": null\n    }\n}"}],"_postman_id":"f1f9bfa2-d84c-4709-95ec-2297df2a362e"},{"name":"Create Employee","id":"d4e0ac08-24d9-4a34-a37d-4bb230addf02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"first employee\",\n    \"last_name\": \"api\",\n    \"gender\": \"female\",\n    \"state\": \"AL\",\n    \"zipcode\": \"54000\",\n    \"email\": \"developetest@gmail.com\",\n    \"employment_type\": \"full_time\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees","description":"<p>Create a new employee of a case through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"983ba015-a610-48e4-a95f-05c20b752680","name":"Create Employee","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"first employee\",\n    \"last_name\": \"api\",\n    \"gender\": \"female\",\n    \"state\": \"AL\",\n    \"zipcode\": \"54000\",\n    \"email\": \"developetest@gmail.com\",\n    \"employment_type\": \"full_time\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 13:15:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"de0be944b3abd9fcadeeb0e0c1be894d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"c69286c6-ed50-44d6-b151-7012b43f085e"},{"key":"X-Runtime","value":"1.228437"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"b60d3095-c591-4fe7-ac8a-6a896b093d14\",\n        \"first_name\": \"first employee\",\n        \"last_name\": \"api\",\n        \"employment_type\": \"full_time\",\n        \"phone_number\": null,\n        \"age\": null,\n        \"gender\": \"female\",\n        \"state\": \"AL\",\n        \"zipcode\": \"54000\",\n        \"email\": \"developetest@gmail.com\",\n        \"pay_cycle\": null,\n        \"start_date\": null,\n        \"termination_date\": null\n    }\n}"}],"_postman_id":"d4e0ac08-24d9-4a34-a37d-4bb230addf02"},{"name":"Update Employee","id":"c7c1ca37-91f3-4283-b645-799b1bbd9631","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"gender\":\"male\",\n    \"state\":\"BW\",\n    \"zipcode\":\"71717\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/02a6a3c5-f5d6-43bc-a1c4-016e662a07af","description":"<p>Update your existing employee attributes through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees","02a6a3c5-f5d6-43bc-a1c4-016e662a07af"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"e1068be7-8287-41fe-a7b5-02b5feaaa873","name":"Update Employee","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"gender\":\"male\",\n    \"state\":\"AK\",\n    \"zipcode\":\"71717\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/02a6a3c5-f5d6-43bc-a1c4-016e662a07af"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 13:21:16 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"126e18f91a19860cbb77089f392d51fb\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3f4003c7-b3ff-4485-9967-ecf84af46944"},{"key":"X-Runtime","value":"0.263388"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02a6a3c5-f5d6-43bc-a1c4-016e662a07af\",\n        \"first_name\": \"New\",\n        \"last_name\": \"Employee\",\n        \"employment_type\": \"full_time\",\n        \"phone_number\": \"\",\n        \"age\": null,\n        \"gender\": \"male\",\n        \"state\": \"BW\",\n        \"zipcode\": \"71717\",\n        \"email\": \"\",\n        \"pay_cycle\": \"\",\n        \"start_date\": null,\n        \"termination_date\": null\n    }\n}"}],"_postman_id":"c7c1ca37-91f3-4283-b645-799b1bbd9631"},{"name":"Search Employee","id":"3989590e-84a9-4255-8d71-401151336c36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/search?query={{query}}&limit=100&offset=0","description":"<p>Filter your employees in a case by submitting a query to this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees","search"],"host":["yahoo.nextbroker.io"],"query":[{"description":{"content":"<p>Search term to filter records from.</p>\n","type":"text/plain"},"key":"query","value":"{{query}}"},{"description":{"content":"<p>Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"description":{"content":"<p>Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"1e67b0bc-d001-48b9-9bd3-5917155d18c9","name":"Search Employee","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/employees/search?query={{query}}&limit=100&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","employees","search"],"query":[{"key":"query","value":"{{query}}","description":"Search term to filter records from."},{"key":"limit","value":"100","description":"Optional parameter to define the number of objects to return. Defaults to 10 and maximum can be set to 50, can be used for pagination."},{"key":"offset","value":"0","description":"Optional parameter to define records to start fetching from.  Default is 0, can be used for pagination."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 28 Feb 2025 13:33:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.16.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"93ff2a3761530b0c02e7549ff9c23b7d\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"fd28af76-e9a9-436d-86a1-d1810f87be7c"},{"key":"X-Runtime","value":"0.072923"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"216847e5-f038-42b2-90f2-d2060e4d8cf5\",\n            \"first_name\": \"James\",\n            \"last_name\": \"Johnson\",\n            \"employment_type\": \"full_time\",\n            \"phone_number\": null,\n            \"age\": 69,\n            \"gender\": \"female\",\n            \"state\": null,\n            \"zipcode\": null,\n            \"email\": \"james.johnson@outlook.com\",\n            \"pay_cycle\": null,\n            \"start_date\": null,\n            \"termination_date\": null\n        },\n        {\n            \"id\": \"d5f84107-4ef9-49ba-8810-f056a9c7766f\",\n            \"first_name\": \"Tyler\",\n            \"last_name\": \"Johnson\",\n            \"employment_type\": \"full_time\",\n            \"phone_number\": null,\n            \"age\": 72,\n            \"gender\": null,\n            \"state\": null,\n            \"zipcode\": null,\n            \"email\": \"tyler.johnson@outlook.com\",\n            \"pay_cycle\": null,\n            \"start_date\": null,\n            \"termination_date\": null\n        }\n    ]\n}"}],"_postman_id":"3989590e-84a9-4255-8d71-401151336c36"}],"id":"7b093b03-3913-485c-aea9-f8f16f01192f","_postman_id":"7b093b03-3913-485c-aea9-f8f16f01192f","description":""},{"name":"Users","item":[{"name":"Users","id":"4b463958-5f52-4f2d-8507-483df922a5c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/users?limit=10&offset=0","description":"<p>Use this endpoint to fetch users of an agency.</p>\n","urlObject":{"protocol":"https","path":["api","v2","users"],"host":["yahoo.nextbroker.io"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"79a77917-7fbc-4ad8-8480-7463583a6722","name":"Users","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/users?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","users"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 18 Mar 2026 10:03:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"9315783fe1ce25034619f55654c8e630\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"139b234b-a713-441a-aa85-4ee9e091f88f"},{"key":"X-Runtime","value":"0.083508"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"f1b30b57-7196-4f1b-9503-8c3d3c334a54\",\n            \"first_name\": \"enable \",\n            \"last_name\": \"sort\",\n            \"email\": \"enablesort@gmail.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"d5cf29e6-54f3-46e0-bc0f-d8d1e9977f2f\",\n            \"first_name\": \"Robert\",\n            \"last_name\": \"Alvarez\",\n            \"email\": \"robert@take44.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"83289317-2da3-4187-bbdd-59eba995f889\",\n            \"first_name\": \"Bilal\",\n            \"last_name\": \"Iqbal\",\n            \"email\": \"bilaliqbal.dev+01@outlook.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"c66d105f-2a58-4e81-9368-7a573e8262ba\",\n            \"first_name\": \"Abraham\",\n            \"last_name\": \"Olatunji\",\n            \"email\": \"ifeoluwa@take44.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"5f0a9498-1952-46c0-8243-0ef94170153f\",\n            \"first_name\": \"Michael\",\n            \"last_name\": \"Ramer\",\n            \"email\": \"michael@take44.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"80df8b8f-e3af-45e4-be17-3899bb779e64\",\n            \"first_name\": \"Tahir\",\n            \"last_name\": \"Javed\",\n            \"email\": \"devtahir.javed@gmail.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"88860fc3-5e63-4f14-8fea-26729668f85d\",\n            \"first_name\": \"Evelyn\",\n            \"last_name\": \"Arvelo\",\n            \"email\": \"evelyn@take44.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"3c03ec65-7b2d-4966-8bf4-5368d79f8c50\",\n            \"first_name\": \"Matt\",\n            \"last_name\": \"Stapleton\",\n            \"email\": \"matt@take44.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"c2b96efc-9c7b-4930-ba17-c5d4391b8125\",\n            \"first_name\": \"Hiro S\",\n            \"last_name\": \"Maeda\",\n            \"email\": \"hiro@beenext.com\",\n            \"role\": \"Broker (admin)\"\n        },\n        {\n            \"id\": \"9a814870-4d00-4615-a678-6eb8b40109ca\",\n            \"first_name\": \"Charlie\",\n            \"last_name\": \"Cullinane\",\n            \"email\": \"charlie@take44.com\",\n            \"role\": \"Broker (admin)\"\n        }\n    ]\n}"}],"_postman_id":"4b463958-5f52-4f2d-8507-483df922a5c5"},{"name":"Get User","id":"606a4a21-a1ca-45a9-b41a-d5d2b1d0dadf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/users/?limit=100&offset=0","description":"<p>Get a particular user of an agency by providing a unique ID through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","users",""],"host":["yahoo.nextbroker.io"],"query":[{"key":"limit","value":"100"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"fd48b6f7-f4ea-4841-9020-c1d7b08784c3","name":"Get User","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/users/?limit=100&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","users",""],"query":[{"key":"limit","value":"100"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 18 Mar 2026 10:11:35 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"696302512a4c3929ec4532a5f82c5240\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5a070807-34f7-4be2-8387-0c632b404702"},{"key":"X-Runtime","value":"0.047745"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"c66d105f-2a58-4e81-9368-7a573e8262ba\",\n        \"first_name\": \"Abraham\",\n        \"last_name\": \"Olatunji\",\n        \"email\": \"ifeoluwa@take44.com\",\n        \"role\": \"Broker (admin)\"\n    }\n}"}],"_postman_id":"606a4a21-a1ca-45a9-b41a-d5d2b1d0dadf"},{"name":"Get Profile","id":"10d8bd65-496a-48fc-ab4d-ab6ac6c2de1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/users/me","description":"<p>Get profile through this endpoint.</p>\n","urlObject":{"protocol":"https","path":["api","v2","users","me"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"83da2024-0124-418e-a53d-0be111068228","name":"Profile","originalRequest":{"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/users/me"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 29 Dec 2025 11:42:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"bf144049a79ba9d585deb2eca628d401\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"87e0572e-b66b-4949-b9fb-cd50bd0ab426"},{"key":"X-Runtime","value":"0.076110"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"955224e5-24fd-431b-a6af-0c712a4807ce\",\n        \"first_name\": \"Zaeem\",\n        \"last_name\": \"Asif\",\n        \"email\": \"devzaeem.asif+007@gmail.com\",\n        \"role\": \"Broker (admin)\"\n    }\n}"}],"_postman_id":"10d8bd65-496a-48fc-ab4d-ab6ac6c2de1e"}],"id":"58d877c9-aadb-4afe-a937-07becdcfaa47","_postman_id":"58d877c9-aadb-4afe-a937-07becdcfaa47","description":""},{"name":"Custom Fields","item":[{"name":"Custom Fields","id":"6e4862ee-4b60-4085-8f2f-0540ceea2715","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"GET","header":[],"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/custom_fields?limit=10&offset=0","description":"<p>Use this endpoint to fetch custom fields of a case.</p>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","custom_fields"],"host":["yahoo.nextbroker.io"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"e32de5f5-f327-4a90-9b86-1831c5eae39c","name":"Custom Fields","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/custom_fields?limit=10&offset=0","protocol":"https","host":["yahoo.nextbroker.io"],"path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","custom_fields"],"query":[{"key":"limit","value":"10"},{"key":"offset","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:43:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"d501af50d593996c697a1f7a8edb6db6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"115f7c51-2698-4cfb-818b-ecec235e5a30"},{"key":"X-Runtime","value":"0.108711"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"case_name\": \"My New Case\",\n        \"case_id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n        \"custom_fields\": {\n            \"aacf2007-7e94-4516-b198-5ba3ce9a066a\": {\n                \"name\": \"Sub-agent\",\n                \"type\": \"dropdown\",\n                \"uuid\": \"aacf2007-7e94-4516-b198-5ba3ce9a066a\",\n                \"value\": []\n            },\n            \"dfc4e703-fe5e-4d6c-857a-1d515b2395b7\": {\n                \"name\": \"Employed?\",\n                \"type\": \"checkbox_field\",\n                \"uuid\": \"dfc4e703-fe5e-4d6c-857a-1d515b2395b7\",\n                \"value\": []\n            }\n        }\n    }\n}"}],"_postman_id":"6e4862ee-4b60-4085-8f2f-0540ceea2715"},{"name":"Create Custom Fields","id":"6eaf44ab-7aa1-45c5-a0d7-8a5aef6e71e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"My New Dropdown\",\n  \"type\": \"dropdown\",\n  \"option_values\": [\"Low\", \"Medium\", \"High\"],\n  \"value\": \"High\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/custom_fields","description":"<p>Create a new custom field of a case through this endpoint, of following types.</p>\n<ul>\n<li><p>input_field</p>\n</li>\n<li><p>dropdown</p>\n</li>\n<li><p>date_field</p>\n</li>\n<li><p>url_field</p>\n</li>\n<li><p>text_area_field</p>\n</li>\n<li><p>number_field</p>\n</li>\n<li><p>percent_field</p>\n</li>\n<li><p>currency</p>\n</li>\n<li><p>checkbox_field</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["api","v2","businesses","ba3d6ecd-6787-43f7-859d-0dc4dfda3181","custom_fields"],"host":["yahoo.nextbroker.io"],"query":[],"variable":[]}},"response":[{"id":"575d3867-0622-49a2-bf2a-3f00955d507f","name":"Create Custom Fields","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"name\": \"My New Dropdown\",\n  \"type\": \"dropdown\",\n  \"option_values\": [\"Low\", \"Medium\", \"High\"],\n  \"value\": \"High\"\n}","options":{"raw":{"language":"json"}}},"url":"https://yahoo.nextbroker.io/api/v2/businesses/ba3d6ecd-6787-43f7-859d-0dc4dfda3181/custom_fields"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Thu, 09 Apr 2026 09:48:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.14.1"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"ETag","value":"W/\"8f7ed229798a6f9197089106da4ccbdf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"652bf8b7-8d2c-4875-ac59-f670f9e94c9f"},{"key":"X-Runtime","value":"0.189798"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"case_name\": \"My New Case\",\n        \"case_id\": \"95096356-ddcd-4926-b5b9-db86f6b258e2\",\n        \"custom_fields\": {\n            \"aacf2007-7e94-4516-b198-5ba3ce9a066a\": {\n                \"name\": \"Sub-agent\",\n                \"type\": \"dropdown\",\n                \"uuid\": \"aacf2007-7e94-4516-b198-5ba3ce9a066a\",\n                \"value\": []\n            },\n            \"dfc4e703-fe5e-4d6c-857a-1d515b2395b7\": {\n                \"name\": \"Employed?\",\n                \"type\": \"checkbox_field\",\n                \"uuid\": \"dfc4e703-fe5e-4d6c-857a-1d515b2395b7\",\n                \"value\": []\n            },\n            \"38283acc-221b-49d9-8a3e-bf41745b9341\": {\n                \"name\": \"My New Dropdown\",\n                \"type\": \"dropdown\",\n                \"uuid\": \"38283acc-221b-49d9-8a3e-bf41745b9341\",\n                \"value\": [\n                    \"High\"\n                ]\n            }\n        }\n    }\n}"}],"_postman_id":"6eaf44ab-7aa1-45c5-a0d7-8a5aef6e71e7"}],"id":"e162b993-2444-4c6e-8221-c0ba17edd2c6","_postman_id":"e162b993-2444-4c6e-8221-c0ba17edd2c6","description":""}],"event":[{"listen":"prerequest","script":{"id":"3436539a-95a0-4b2c-ac39-8de88f9631e0","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"7e5879b3-93b1-4628-ac59-e6844c271a78","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"domain","value":"yahoo.nextbroker.io"},{"key":"access_token","value":"xwVICkMXVlaCQaA31S_opONw6eT92f2WkzKNHyr67Yc"},{"key":"limit","value":"10"},{"key":"offset","value":"0"},{"key":"voip_recording_id","value":"","disabled":true},{"key":"case_id","value":"ba3d6ecd-6787-43f7-859d-0dc4dfda3181"},{"key":"employee_id","value":"02a6a3c5-f5d6-43bc-a1c4-016e662a07af"},{"key":"user_id","value":""},{"key":"task_id","value":""},{"key":"document_id","value":""},{"key":"benefit_id","value":""},{"key":"contact_id","value":""},{"key":"note_id","value":""}]}