{
  "info": {
    "_postman_id": "f7979ab2-3da8-4ef1-972f-e9c5db52ce22",
    "name": "CareLink Open API - Complete",
    "description": "Postman collection for the CareLink Open API v2. All calls use POST with JSON bodies. Set domain, apiKey, basicUsername, and basicPassword before use. Run Authorization / Get Token to populate bearerToken automatically. Public reference: https://www.mymobilepracticemanager.com/openapi.php\n\nRate limit: approximately 10 calls per minute. Maintenance windows: nightly 1:30–3:30 AM Pacific and Sunday 9:00–9:30 AM Pacific.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [{ "key": "token", "value": "{{bearerToken}}", "type": "string" }]
  },
  "event": [{
    "listen": "prerequest",
    "script": {
      "type": "text/javascript",
      "exec": [
        "if (!pm.collectionVariables.get('apiKey')) {",
        "    console.warn('Set the apiKey collection variable before sending requests.');",
        "}"
      ]
    }
  }],
  "variable": [
    { "key": "domain", "value": "yourdomain", "type": "string" },
    { "key": "baseUrl", "value": "https://{{domain}}.mymobilepracticemanager.com/carelink/apiv2", "type": "string" },
    { "key": "apiKey", "value": "", "type": "string" },
    { "key": "basicUsername", "value": "", "type": "string" },
    { "key": "basicPassword", "value": "", "type": "string" },
    { "key": "bearerToken", "value": "", "type": "string" },
    { "key": "patientId", "value": "2633", "type": "string" },
    { "key": "scheduleId", "value": "78561", "type": "string" },
    { "key": "practitionerId", "value": "11", "type": "string" },
    { "key": "encounterId", "value": "40", "type": "string" },
    { "key": "providerEventId", "value": "1", "type": "string" },
    { "key": "facilityId", "value": "6", "type": "string" },
    { "key": "queueId", "value": "20", "type": "string" },
    { "key": "dispatchId", "value": "514", "type": "string" },
    { "key": "contactId", "value": "51", "type": "string" },
    { "key": "tagId", "value": "15", "type": "string" }
  ],
  "item": [
    {
      "name": "Authorization",
      "item": [
        {
          "name": "Get Token",
          "event": [{ "listen": "test", "script": { "type": "text/javascript", "exec": ["const data = pm.response.json();", "if (data.token) pm.collectionVariables.set('bearerToken', data.token);"] } }],
          "request": {
            "auth": { "type": "basic", "basic": [{ "key": "username", "value": "{{basicUsername}}", "type": "string" }, { "key": "password", "value": "{{basicPassword}}", "type": "string" }] },
            "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }],
            "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } },
            "url": "{{baseUrl}}/authorize/", "description": "Creates a bearer token valid for one hour. The test script saves it as bearerToken."
          }
        },
        {
          "name": "Renew Token",
          "event": [{ "listen": "test", "script": { "type": "text/javascript", "exec": ["const data = pm.response.json();", "if (data.token) pm.collectionVariables.set('bearerToken', data.token);"] } }],
          "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"token\": \"{{bearerToken}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/authorize/renew" }
        },
        {
          "name": "Expire Token",
          "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"token\": \"{{bearerToken}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/authorize/expire" }
        }
      ]
    },
    {
      "name": "Patients",
      "item": [
        { "name": "List Patients", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"page\": 1,\n  \"showinactive\": 0\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/", "description": "Optional filters: patientfirstname, patientlastname, patientbirthday, patientemrid, lastupdate, page, showinactive, patientlist." } },
        { "name": "Patient Details", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}" } },
        { "name": "Create Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientfirstname\": \"Test\",\n  \"patientlastname\": \"Patient\",\n  \"patientbirthday\": \"01/01/1950\",\n  \"patientsex\": \"Unknown\",\n  \"patientaddress\": \"123 Main St\",\n  \"patientcity\": \"Phoenix\",\n  \"patientstate\": \"AZ\",\n  \"patientzip\": \"85001\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/add", "description": "Required fields are documented in the CareLink reference. Add optional patient fields as needed." } },
        { "name": "Edit Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"patientschedulenote\": \"Updated by API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}/edit" } },
        { "name": "Inactivate Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"inactivereason\": \"Inactive\",\n  \"inactivedate\": \"12/31/2026\",\n  \"deletefuture\": 0\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}/inactive" } },
        { "name": "Place Patient on Hold", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"holddate\": \"12/31/2026\",\n  \"holdreason\": \"On hold\",\n  \"deletefuture\": 0\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}/hold" } },
        { "name": "Activate Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}/active" } },
        { "name": "Delete Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/{{patientId}}/delete" } }
      ]
    },
    {
      "name": "Schedule",
      "item": [
        { "name": "List Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\",\n  \"startdate\": \"09/16/2026\",\n  \"enddate\": \"09/16/2026\",\n  \"page\": 1\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/" } },
        { "name": "Create Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"schedulepatientid\": \"{{patientId}}\",\n  \"schedulepractitionerid\": \"{{practitionerId}}\",\n  \"scheduleappointmenttypeid\": 1,\n  \"scheduledate\": \"12/31/2026\",\n  \"scheduletime\": \"9:00am\",\n  \"scheduleduration\": \"0.5\",\n  \"scheduleconfirmed\": 0,\n  \"schedulelocation\": 0\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/add" } },
        { "name": "Get Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"scheduleid\": \"{{scheduleId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/{{scheduleId}}" } },
        { "name": "Edit Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"scheduleid\": \"{{scheduleId}}\",\n  \"schedulenote\": \"Updated by API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/{{scheduleId}}/edit" } },
        { "name": "Delete Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"scheduleid\": \"{{scheduleId}}\",\n  \"scheduledeletedreason\": \"Cancelled via API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/{{scheduleId}}/delete" } },
        { "name": "Optimize Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\",\n  \"startdate\": \"12/31/2026\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/schedule/{{practitionerId}}/optimize" } }
      ]
    },
    {
      "name": "Encounters",
      "item": [
        { "name": "List Encounters", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"page\": 1\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/encounters/" } },
        { "name": "Add Encounter", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"encounterdate\": \"12/31/2026\",\n  \"encountertext\": \"Encounter created by API\",\n  \"resultcode\": \"\",\n  \"createdby\": \"\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/encounters/add" } },
        { "name": "Delete Encounter", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"encounterid\": \"{{encounterId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/encounters/{{encounterId}}/delete" } }
      ]
    },
    {
      "name": "Find Close By Patients",
      "item": [
        { "name": "Find Close By Schedule", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\",\n  \"startdate\": \"09/04/2026\",\n  \"excludescheduled\": 1,\n  \"miles\": 5\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/closeby" } },
        { "name": "Find Close By Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"miles\": 5\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/closeby/patientid" } }
      ]
    },
    {
      "name": "Scheduling Wizard",
      "item": [
        { "name": "Run Wizard", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"providerlist\": \"{{practitionerId}}\",\n  \"appointmenttype\": \"1\",\n  \"scheduleduration\": \"1\",\n  \"maxdistance\": \"50\",\n  \"maxdistancenearest\": \"100\",\n  \"startdate\": \"12/28/2026\",\n  \"enddate\": \"12/31/2026\",\n  \"showavailabletimes\": 1\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/wizard/{{patientId}}" } }
      ]
    },
    {
      "name": "Patient Tags",
      "item": [
        { "name": "List Tags", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/tags" } },
        { "name": "Add Tag to Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"tagid\": \"{{tagId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/tags/add" } },
        { "name": "Remove Tag from Patient", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"tagid\": \"{{tagId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/patients/tags/delete" } }
      ]
    },
    {
      "name": "Providers",
      "item": [
        { "name": "List Providers", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"showworktimes\": 1\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/" } },
        { "name": "List Non Working Days", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/nonworkdays/" } },
        { "name": "Add Non Working Day", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\",\n  \"nonworkingdaydate\": \"12/31/2026\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/nonworkdays/add" } },
        { "name": "Delete Non Working Day", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"id\": \"{{providerEventId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/nonworkdays/{{providerEventId}}/delete" } },
        { "name": "List Break Times", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/breaktimes" } },
        { "name": "Add Break Time", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"practitionerid\": \"{{practitionerId}}\",\n  \"breaktimedate\": \"12/31/2026\",\n  \"breaktimestarttime\": \"12:00\",\n  \"breaktimeduration\": \"1.5\",\n  \"breaktimenote\": \"Break created by API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/breaktimes/add" } },
        { "name": "Delete Break Time", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"id\": \"{{providerEventId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/providers/breaktimes/{{providerEventId}}/delete" } }
      ]
    },
    {
      "name": "Facilities",
      "item": [
        { "name": "List Facilities", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/facilities/" } },
        { "name": "Facility Details", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"facilityid\": \"{{facilityId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/facilities/{{facilityId}}" } },
        { "name": "Add Facility", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"facilityname\": \"Test API Facility\",\n  \"facilityaddress\": \"123 Main St\",\n  \"facilitycity\": \"Phoenix\",\n  \"facilitystate\": \"AZ\",\n  \"facilityzip\": \"85001\",\n  \"facilityfax\": \"555-555-1112\",\n  \"facilityphone\": \"555-555-1111\",\n  \"facilitynotes\": \"Created by API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/facilities/add" } }
      ]
    },
    {
      "name": "Waitlist / Dispatch",
      "item": [
        { "name": "List Patients on Queue", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"queueid\": \"{{queueId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/waitlist/{{queueId}}" } },
        { "name": "Add Patient to Queue", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"queueid\": \"{{queueId}}\",\n  \"urgency\": 2,\n  \"appointmenttypeid\": 1,\n  \"dispatchnotes\": \"Added by API\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/waitlist/add" } },
        { "name": "Remove Patient from Queue", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"dispatchid\": \"{{dispatchId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/waitlist/{{dispatchId}}/delete" } }
      ]
    },
    {
      "name": "Patient Contacts",
      "item": [
        { "name": "List Contacts", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/contacts/{{patientId}}" } },
        { "name": "Add Contact", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"contactname\": \"Test Contact\",\n  \"contactphone\": \"555-555-1234\",\n  \"relationship\": \"Other\",\n  \"smsenabled\": 0\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/contacts/add" } },
        { "name": "Delete Contact", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"contactid\": \"{{contactId}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/contacts/{{contactId}}/delete" } }
      ]
    },
    {
      "name": "SMS Messaging",
      "item": [
        { "name": "List Messages", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/sms/list" } },
        { "name": "Send Message", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\",\n  \"patientid\": \"{{patientId}}\",\n  \"smskey\": \"requestconsent\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/sms/send" } }
      ]
    },
    {
      "name": "Configuration",
      "item": [
        { "name": "List Appointment Types", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/appointmenttypes/" } },
        { "name": "List Companies", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/companies/" } },
        { "name": "Acuity Levels", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/acuities/" } },
        { "name": "List Queues", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/queues/" } },
        { "name": "Languages", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/languages/" } },
        { "name": "Result Codes", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/resultcodes/" } },
        { "name": "Referral Sources", "request": { "method": "POST", "header": [{ "key": "Content-Type", "value": "application/json" }], "body": { "mode": "raw", "raw": "{\n  \"apikey\": \"{{apiKey}}\"\n}", "options": { "raw": { "language": "json" } } }, "url": "{{baseUrl}}/referralsources/" } }
      ]
    }
  ]
}
