{"info":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","description":"<html><head></head><body><p>Welcome to the documentation for the LineLeader by ChildcareCRM API. This API will allow you to engage with your LineLeader® data, potentially allowing your development team capabilities such as:</p>\n<ul>\n<li>Create or update families, guardians, and children</li>\n<li>Reject pending leads</li>\n<li>Add, complete, or cancel tasks</li>\n<li>Get a list of enrolled children at a center</li>\n<li>Get a list of centers that users can access</li>\n</ul>\n<h1 id=\"common-use-cases\">Common Use Cases</h1>\n<p><strong>Data Warehouse</strong> operations can use the API to retrieve data about leads, children, task statuses, etc. to keep their warehouse current and to produce custom reports or connect to internal systems (for example, systems used for marketing). Data can also be sent to LineLeader™, keeping Enrodata up to date with the warehouse.</p>\n<p><strong>Integrations</strong> with your other software solutions can eliminate duplicate data entry into other systems and can ensure synchronicity of data between the systems, reducing errors while freeing up staff to do other things. You can request that your system vendors create this functionality for you—vendors are always looking for the opportunity to increase the value of their product to their customers and many will welcome the opportunity to do this for you.</p>\n<h1 id=\"organization\">Organization</h1>\n<p>This documentation is organized so that the most useful and most commonly used endpoints are at the top. All other endpoints are ordered alphabetically.</p>\n<h1 id=\"useful-information\">Useful Information</h1>\n<ul>\n<li>Generally speaking, all the data an API user would need should already be available. If you don’t see it, contact support (<a href=\"mailto:support@childcarecrm.com\">support@golinleader.com</a> for assistance; we can either explain how to use the existing API to accomplish your goals or we can update the API to meet your needs.</li>\n<li>We recommend the creation and use of service accounts to access the API. (From within LineLeader Enroll, click Settings &gt; Staff Settings &gt; Service Accounts &gt; Create Service Account.) Service accounts have different access levels: read-only, “read and write”, or “read, write, and delete”.</li>\n<li>Results are limited to a maximum of 100 records at a time. All results will return an X-Total-Count header indicating the total number of records that match your query. To retrieve results beyond the first 100 records, add the parameter \"offset=N\". For example, to retrieve the second 100 records for a query: \"offset=100\". You can also change the number of records returned at a time to be fewer than 100 by using the \"limit\" parameter.</li>\n<li>Creating a family and adding a child can at the same time or children can be added later.</li>\n<li>To see all tour tasks and results: 1) Get task types, 2) Send a query to the tasks endpoint with the specific task type as a filter or with the specific result type as a filter.</li>\n<li>To use the updates endpoint, you must include a timestamp for updates since that time.</li>\n<li>ChildCareCRM uses JSON Web Token (JWT) authentication. Tokens are valid for 1 hour. Along with the JWT, the API provides a refresh token, which is valid for up to 72 hours. The refresh token will generate a new JWT, as needed.</li>\n<li>If you are using the API for a data warehouse, you may want to consider disabling business rules upon login, if you do not want automated tasks/email communications/etc. created as you update data. When creating bulk records, for example, we recommend that you disable business rules.</li>\n<li>For US users, the {{url}} is <a href=\"https://live.childcarecrm.com/\">https://live.childcarecrm.com/</a></li>\n<li>For Australian users, the {{url}} is <a href=\"https://live.childcarecrm.com.au/\">https://live.childcarecrm.com.au/</a></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Common Use Cases","slug":"common-use-cases"},{"content":"Organization","slug":"organization"},{"content":"Useful Information","slug":"useful-information"}],"owner":"8336132","collectionId":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","publishedId":"SVmsW1M7","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2024-07-24T19:43:35.000Z"},"item":[{"name":"Login","item":[{"name":"Login","event":[{"listen":"test","script":{"id":"0c5806fb-3678-445a-a627-499f57ac197d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"token\");","});","","pm.test(\"Nonchanging part of token\", function () {","    pm.expect(pm.response.text()).to.include(\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9\");","});","","pm.test(\"Refresh token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"refresh_token\");","});","","let loginToken = pm.response.json().token;","let refreshToken = pm.response.json().refresh_token;","","pm.environment.set('loginToken', loginToken);","pm.environment.set('refreshToken', refreshToken);"],"type":"text/javascript"}}],"id":"49b4b412-ca5b-46dd-8236-1dd456986368","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"{{username}}\",\n\t\"password\": \"{{password}}\"\n}"},"url":"{{url}}/api/v3/login","urlObject":{"path":["api","v3","login"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"49b4b412-ca5b-46dd-8236-1dd456986368"},{"name":"Login - with disabled workflows","event":[{"listen":"test","script":{"id":"de685586-2d99-4947-b974-da0d0e1a5682","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"token\");","});","","pm.test(\"Nonchanging part of token\", function () {","    pm.expect(pm.response.text()).to.include(\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9\");","});","","pm.test(\"Refresh token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"refresh_token\");","});","","let loginToken = pm.response.json().token;","let refreshToken = pm.response.json().refresh_token;","","pm.environment.set('loginToken', loginToken);","pm.environment.set('refreshToken', refreshToken);"],"type":"text/javascript"}}],"id":"0583ff29-5479-4520-b3cf-680a188f7b99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"username\": \"{{username}}\",\n\t\"password\": \"{{password}}\",\n    \"disable_business_rules\": true\n}"},"url":"{{url}}/api/v3/login","description":"<p>Note, in this example, we use the setting of \"disable_business_rules\": true. This is meant as an example to show how you might disable business rules / workflow automations for all API requests. If you are using the API to create new families and <em>want</em> automations to happen, then you should <em>not</em> set this flag.</p>\n","urlObject":{"path":["api","v3","login"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0583ff29-5479-4520-b3cf-680a188f7b99"},{"name":"Refresh JWT","event":[{"listen":"test","script":{"id":"0f76354e-4fb2-4cb7-aabb-509cd42f958c","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"token\");","});","","pm.test(\"Nonchanging part of token\", function () {","    pm.expect(pm.response.text()).to.include(\"eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9\");","});","","pm.test(\"Refresh token in response\", function () {","    pm.expect(pm.response.text()).to.include(\"refresh_token\");","});"],"type":"text/javascript"}}],"id":"b9e059c3-3061-4b68-b13c-4df2a9a55b0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"refresh_token\": \"{{refreshToken}}\"\n}"},"url":"{{url}}/api/v3/login/refresh","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","login","refresh"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b9e059c3-3061-4b68-b13c-4df2a9a55b0d"},{"name":"Forgot username","id":"064ab23a-a74e-4a68-8640-832a62211382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/forgot-username?email={{emailAddress}","description":"<p>Will email the username to the address on file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","forgot-username"],"host":["{{url}}"],"query":[{"key":"email","value":"{{emailAddress}"}],"variable":[]}},"response":[],"_postman_id":"064ab23a-a74e-4a68-8640-832a62211382"},{"name":"Forgot password","id":"5bc88845-1519-4491-8273-0c57856496bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/forgot-username?email={{emailAddress}&username={{username}}","description":"<p>Will send a reset password link to the email address on file.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","forgot-username"],"host":["{{url}}"],"query":[{"key":"email","value":"{{emailAddress}"},{"key":"username","value":"{{username}}"}],"variable":[]}},"response":[],"_postman_id":"5bc88845-1519-4491-8273-0c57856496bb"}],"id":"26da3a6b-211a-434e-958f-569ad9e0763d","description":"<p>ChildCareCRM uses JSON Web Token (JWT) authentication.  Tokens are valid for 1 hour.  Along with the JWT, the API provides a refresh token, which is valid for up to 72 hours. The refresh token will generate a new JWT, as needed.</p>\n","event":[{"listen":"prerequest","script":{"id":"a4eee5c1-57b2-4d89-91a8-03e0b3a39858","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d7c61765-f090-45f4-b733-7bc4f4156a7c","type":"text/javascript","exec":[""]}}],"_postman_id":"26da3a6b-211a-434e-958f-569ad9e0763d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Search","item":[{"name":"Search families by specific filters","id":"1a1b0fb8-095f-4c65-a348-d4a8b5ee3fdc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/search?guardian_last_name=string&guardian_first_name=string&child_first_name=string&child_last_name=string&phone_number=string&email_address=string&center_ids=int[]","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","search"],"host":["{{url}}"],"query":[{"key":"guardian_last_name","value":"string"},{"key":"guardian_first_name","value":"string"},{"key":"child_first_name","value":"string"},{"key":"child_last_name","value":"string"},{"description":{"content":"<p>Should be an E.164-formatted phone number</p>\n","type":"text/plain"},"key":"phone_number","value":"string"},{"key":"email_address","value":"string"},{"description":{"content":"<p>A comma-separated list of center ids to limit searching</p>\n","type":"text/plain"},"key":"center_ids","value":"int[]"}],"variable":[]}},"response":[{"id":"761aa41c-668b-4002-b75f-73af0897e473","name":"Search families by specific filters","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{url}}/api/v3/search?guardian_last_name=Smith","host":["{{url}}"],"path":["api","v3","search"],"query":[{"key":"guardian_last_name","value":"Smith"},{"key":"guardian_first_name","value":"string","disabled":true},{"key":"child_first_name","value":"string","disabled":true},{"key":"child_last_name","value":"string","disabled":true},{"key":"phone_number","value":"string","disabled":true},{"key":"email_address","value":"string","disabled":true},{"key":"center_ids","value":"int[]","description":"A comma-separated list of center ids to limit searching","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 06 Dec 2021 22:53:20 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=cg7emmsclc5o8h4mrao0jum5ui; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Sun, 06-Dec-2020 22:53:31 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"354"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"55eccd"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/55eccd"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Mon, 06 Dec 2021 22:53:32 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"0\": {\n        \"id\": 71691,\n        \"values\": {\n            \"name\": \"Akopian Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/71691\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"1\": {\n        \"id\": 71565,\n        \"values\": {\n            \"name\": \"Dana Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/71565\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"2\": {\n        \"id\": 71130,\n        \"values\": {\n            \"name\": \"Ishmerana Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/71130\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"3\": {\n        \"id\": 70802,\n        \"values\": {\n            \"name\": \"Megan Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/70802\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"4\": {\n        \"id\": 70707,\n        \"values\": {\n            \"name\": \"Karis Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/70707\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"5\": {\n        \"id\": 70350,\n        \"values\": {\n            \"name\": \"Tonya Smith \"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/70350\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"6\": {\n        \"id\": 70326,\n        \"values\": {\n            \"name\": \"Shan'Drea Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/70326\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"7\": {\n        \"id\": 69788,\n        \"values\": {\n            \"name\": \"John Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/69788\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"8\": {\n        \"id\": 69263,\n        \"values\": {\n            \"name\": \"Greg Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/69263\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"9\": {\n        \"id\": 69230,\n        \"values\": {\n            \"name\": \"Adriana Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/69230\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"10\": {\n        \"id\": 69162,\n        \"values\": {\n            \"name\": \"Shayanne Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/69162\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"11\": {\n        \"id\": 68866,\n        \"values\": {\n            \"name\": \"Paul Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68866\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"12\": {\n        \"id\": 68826,\n        \"values\": {\n            \"name\": \"Sydney Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68826\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"13\": {\n        \"id\": 68560,\n        \"values\": {\n            \"name\": \"Jess Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68560\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"14\": {\n        \"id\": 68361,\n        \"values\": {\n            \"name\": \"Rachel Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68361\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"15\": {\n        \"id\": 68333,\n        \"values\": {\n            \"name\": \"Kira Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68333\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"16\": {\n        \"id\": 68074,\n        \"values\": {\n            \"name\": \"Lacretia Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/68074\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"17\": {\n        \"id\": 67841,\n        \"values\": {\n            \"name\": \"Carly Walter-smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67841\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"18\": {\n        \"id\": 67829,\n        \"values\": {\n            \"name\": \"Taylor Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67829\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"19\": {\n        \"id\": 67673,\n        \"values\": {\n            \"name\": \"Rose Rhinesmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67673\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"20\": {\n        \"id\": 67620,\n        \"values\": {\n            \"name\": \"Robert Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67620\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"21\": {\n        \"id\": 67535,\n        \"values\": {\n            \"name\": \"Tracy Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67535\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"22\": {\n        \"id\": 67463,\n        \"values\": {\n            \"name\": \"Ashley Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/67463\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"23\": {\n        \"id\": 66474,\n        \"values\": {\n            \"name\": \"Megan Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/66474\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"24\": {\n        \"id\": 66335,\n        \"values\": {\n            \"name\": \"Alana Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/66335\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"25\": {\n        \"id\": 66152,\n        \"values\": {\n            \"name\": \"Brandon Stallsmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/66152\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"26\": {\n        \"id\": 65778,\n        \"values\": {\n            \"name\": \"Nicole Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/65778\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"27\": {\n        \"id\": 65626,\n        \"values\": {\n            \"name\": \"Marlene Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/65626\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"28\": {\n        \"id\": 65433,\n        \"values\": {\n            \"name\": \"Jennifer Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/65433\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"29\": {\n        \"id\": 65198,\n        \"values\": {\n            \"name\": \"Erin Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/65198\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"30\": {\n        \"id\": 64757,\n        \"values\": {\n            \"name\": \"Aliyah Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/64757\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"31\": {\n        \"id\": 64596,\n        \"values\": {\n            \"name\": \"Davis  Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/64596\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"32\": {\n        \"id\": 64456,\n        \"values\": {\n            \"name\": \"Dekaya  Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/64456\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"33\": {\n        \"id\": 64437,\n        \"values\": {\n            \"name\": \"KERIA SMITH\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/64437\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"34\": {\n        \"id\": 64366,\n        \"values\": {\n            \"name\": \"Keiara Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/64366\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"35\": {\n        \"id\": 63834,\n        \"values\": {\n            \"name\": \"Samantha Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/63834\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"36\": {\n        \"id\": 63820,\n        \"values\": {\n            \"name\": \"Sierra Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/63820\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"37\": {\n        \"id\": 63790,\n        \"values\": {\n            \"name\": \"Maiya Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/63790\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"38\": {\n        \"id\": 62791,\n        \"values\": {\n            \"name\": \"Glenn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/62791\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"39\": {\n        \"id\": 62496,\n        \"values\": {\n            \"name\": \"Marissa Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/62496\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"40\": {\n        \"id\": 61940,\n        \"values\": {\n            \"name\": \"Destiny Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/61940\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"41\": {\n        \"id\": 61697,\n        \"values\": {\n            \"name\": \"Krystal Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/61697\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"42\": {\n        \"id\": 61147,\n        \"values\": {\n            \"name\": \"Jolene Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/61147\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"43\": {\n        \"id\": 60932,\n        \"values\": {\n            \"name\": \"Jen Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/60932\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"44\": {\n        \"id\": 60859,\n        \"values\": {\n            \"name\": \"Tasia Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/60859\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"45\": {\n        \"id\": 60694,\n        \"values\": {\n            \"name\": \"Samantha Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/60694\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"46\": {\n        \"id\": 60431,\n        \"values\": {\n            \"name\": \"Lindsey Nesmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/60431\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"47\": {\n        \"id\": 60326,\n        \"values\": {\n            \"name\": \"Meca Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/60326\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"48\": {\n        \"id\": 59795,\n        \"values\": {\n            \"name\": \"Makaylah Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/59795\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"49\": {\n        \"id\": 59474,\n        \"values\": {\n            \"name\": \"Sean Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/59474\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"50\": {\n        \"id\": 59156,\n        \"values\": {\n            \"name\": \"Amber Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/59156\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"51\": {\n        \"id\": 58910,\n        \"values\": {\n            \"name\": \"Megan Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/58910\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"52\": {\n        \"id\": 58852,\n        \"values\": {\n            \"name\": \"Kevin Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/58852\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"53\": {\n        \"id\": 58574,\n        \"values\": {\n            \"name\": \"Marlene Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/58574\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"54\": {\n        \"id\": 58570,\n        \"values\": {\n            \"name\": \"Mercedes Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/58570\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"55\": {\n        \"id\": 57996,\n        \"values\": {\n            \"name\": \"Erin Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/57996\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"56\": {\n        \"id\": 57781,\n        \"values\": {\n            \"name\": \"Nordia Smith \"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/57781\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"57\": {\n        \"id\": 57657,\n        \"values\": {\n            \"name\": \"Joshua Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/57657\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"58\": {\n        \"id\": 56853,\n        \"values\": {\n            \"name\": \"Zuleika Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56853\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"59\": {\n        \"id\": 56798,\n        \"values\": {\n            \"name\": \"Monique Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56798\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"60\": {\n        \"id\": 56747,\n        \"values\": {\n            \"name\": \"Jilian Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56747\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"61\": {\n        \"id\": 56679,\n        \"values\": {\n            \"name\": \"Fabiane Goldsmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56679\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"62\": {\n        \"id\": 56196,\n        \"values\": {\n            \"name\": \"Marlayna Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56196\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"63\": {\n        \"id\": 56023,\n        \"values\": {\n            \"name\": \"Megan Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/56023\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"64\": {\n        \"id\": 55973,\n        \"values\": {\n            \"name\": \"Brandon Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/55973\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"65\": {\n        \"id\": 55910,\n        \"values\": {\n            \"name\": \"Karla Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/55910\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"66\": {\n        \"id\": 55599,\n        \"values\": {\n            \"name\": \"Brandon Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/55599\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"67\": {\n        \"id\": 55593,\n        \"values\": {\n            \"name\": \"Kiara Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/55593\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"68\": {\n        \"id\": 55222,\n        \"values\": {\n            \"name\": \"Sharolyn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/55222\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"69\": {\n        \"id\": 54774,\n        \"values\": {\n            \"name\": \"Brittany Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/54774\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"70\": {\n        \"id\": 53412,\n        \"values\": {\n            \"name\": \"Robert Goldsmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53412\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"71\": {\n        \"id\": 53409,\n        \"values\": {\n            \"name\": \"Ginalyn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53409\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"72\": {\n        \"id\": 53360,\n        \"values\": {\n            \"name\": \"Taylor Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53360\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"73\": {\n        \"id\": 53344,\n        \"values\": {\n            \"name\": \"Savannah Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53344\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"74\": {\n        \"id\": 53305,\n        \"values\": {\n            \"name\": \"Sabrina Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53305\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"75\": {\n        \"id\": 53081,\n        \"values\": {\n            \"name\": \"Katherine Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/53081\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"76\": {\n        \"id\": 52984,\n        \"values\": {\n            \"name\": \"Marlayna Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/52984\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"77\": {\n        \"id\": 52836,\n        \"values\": {\n            \"name\": \"Kayla Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/52836\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"78\": {\n        \"id\": 52752,\n        \"values\": {\n            \"name\": \"Dajan Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/52752\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"79\": {\n        \"id\": 52082,\n        \"values\": {\n            \"name\": \"Kimberly Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/52082\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"80\": {\n        \"id\": 51696,\n        \"values\": {\n            \"name\": \"Daniela Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51696\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"81\": {\n        \"id\": 51589,\n        \"values\": {\n            \"name\": \"Erin Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51589\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"82\": {\n        \"id\": 51541,\n        \"values\": {\n            \"name\": \"Bre Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51541\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"83\": {\n        \"id\": 51382,\n        \"values\": {\n            \"name\": \"Alisa Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51382\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"84\": {\n        \"id\": 51366,\n        \"values\": {\n            \"name\": \"Drucilla Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51366\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"85\": {\n        \"id\": 51350,\n        \"values\": {\n            \"name\": \"Ashlie Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51350\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"86\": {\n        \"id\": 51299,\n        \"values\": {\n            \"name\": \"Jasmine Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51299\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"87\": {\n        \"id\": 51086,\n        \"values\": {\n            \"name\": \"Ishmael Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/51086\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"88\": {\n        \"id\": 50749,\n        \"values\": {\n            \"name\": \"Autumn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/50749\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"89\": {\n        \"id\": 50297,\n        \"values\": {\n            \"name\": \"Cassie Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/50297\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"90\": {\n        \"id\": 50130,\n        \"values\": {\n            \"name\": \"Jessica Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/50130\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"91\": {\n        \"id\": 49907,\n        \"values\": {\n            \"name\": \"Felicia Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/49907\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"92\": {\n        \"id\": 49902,\n        \"values\": {\n            \"name\": \"Elaina Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/49902\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"93\": {\n        \"id\": 49626,\n        \"values\": {\n            \"name\": \"Laura Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/49626\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"94\": {\n        \"id\": 49313,\n        \"values\": {\n            \"name\": \"Sheila Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/49313\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"95\": {\n        \"id\": 48558,\n        \"values\": {\n            \"name\": \"Marissa Smith franklin\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/48558\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"96\": {\n        \"id\": 47718,\n        \"values\": {\n            \"name\": \"Ginalyn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/47718\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"97\": {\n        \"id\": 47499,\n        \"values\": {\n            \"name\": \"Vanessa Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/47499\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"98\": {\n        \"id\": 47187,\n        \"values\": {\n            \"name\": \"Jackie Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/47187\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"99\": {\n        \"id\": 46591,\n        \"values\": {\n            \"name\": \"Ginalyn Smith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/46591\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"results\": [\n        {\n            \"id\": 71691,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-12-02T12:14:58+00:00\",\n            \"added_date\": \"2021-12-02T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Akopian has two year old triplets (10/18/2021), would like to start Jan 10. One has hydrocephalus (a developmental delay) so is in therapy learning to walk, he would like to be in a younger class.\",\n            \"primary_guardian\": {\n                \"id\": 45341,\n                \"name\": \"Akopian Smith\",\n                \"first_name\": \"Akopian\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-12-02T13:00:00+00:00\",\n                \"email\": \"akopiansmith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(404) 543-5499\",\n                    \"number_e164\": \"+14045435499\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 45341,\n                    \"name\": \"Akopian Smith\",\n                    \"first_name\": \"Akopian\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-12-02T13:00:00+00:00\",\n                    \"email\": \"akopiansmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(404) 543-5499\",\n                        \"number_e164\": \"+14045435499\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 63791,\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \" Smith\",\n                    \"first_name\": \"\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-10-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-12-02T13:00:00+00:00\",\n                    \"system_date\": \"2021-12-02T12:19:43+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 45341,\n                            \"values\": {\n                                \"family_id\": 71691,\n                                \"is_primary\": true,\n                                \"name\": \"Akopian Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/71691/guardians/45341\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 43339,\n                            \"values\": {\n                                \"child_id\": 63791\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/43339\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 63793,\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \" Smith\",\n                    \"first_name\": \"\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-10-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-12-02T13:00:00+00:00\",\n                    \"system_date\": \"2021-12-02T12:20:11+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 45341,\n                            \"values\": {\n                                \"family_id\": 71691,\n                                \"is_primary\": true,\n                                \"name\": \"Akopian Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/71691/guardians/45341\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 43341,\n                            \"values\": {\n                                \"child_id\": 63793\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/43341\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 63795,\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \" Smith\",\n                    \"first_name\": \"\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-10-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-12-02T13:00:00+00:00\",\n                    \"system_date\": \"2021-12-02T12:20:50+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 45341,\n                            \"values\": {\n                                \"family_id\": 71691,\n                                \"is_primary\": true,\n                                \"name\": \"Akopian Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/71691/guardians/45341\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 43343,\n                            \"values\": {\n                                \"child_id\": 63795\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/43343\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 71565,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-11-30T19:28:33+00:00\",\n            \"added_date\": \"2021-11-30T19:28:33+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I'd like to know price and if there are any financial aid options for this school\",\n            \"primary_guardian\": {\n                \"id\": 45266,\n                \"name\": \"Dana Smith\",\n                \"first_name\": \"Dana\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-30T19:28:33+00:00\",\n                \"email\": \"feminilogic@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(469) 307-9097\",\n                    \"number_e164\": \"+14693079097\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 45266,\n                    \"name\": \"Dana Smith\",\n                    \"first_name\": \"Dana\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-30T19:28:33+00:00\",\n                    \"email\": \"feminilogic@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(469) 307-9097\",\n                        \"number_e164\": \"+14693079097\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 71130,\n            \"center\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Creative World Riverview\",\n                    \"code\": \"105 - Rivercrest\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/7\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-11-19T21:59:33+00:00\",\n            \"added_date\": \"2021-11-19T21:59:33+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 44971,\n                \"name\": \"Ishmerana Smith\",\n                \"first_name\": \"Ishmerana\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-19T21:59:33+00:00\",\n                \"email\": \"ishmerana@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(703) 992-3446\",\n                    \"number_e164\": \"+17039923446\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44971,\n                    \"name\": \"Ishmerana Smith\",\n                    \"first_name\": \"Ishmerana\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-19T21:59:33+00:00\",\n                    \"email\": \"ishmerana@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(703) 992-3446\",\n                        \"number_e164\": \"+17039923446\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 7,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 63368,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-03\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Karson Smith\",\n                    \"first_name\": \"Karson\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-06-03\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-11-19T13:00:00+00:00\",\n                    \"system_date\": \"2021-11-19T21:59:33+00:00\",\n                    \"comments\": \"mom is a nursing student and back in class mid January.  Lives in Gibsonton and willing to go to FH if they have opening\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 44971,\n                            \"values\": {\n                                \"family_id\": 71130,\n                                \"is_primary\": true,\n                                \"name\": \"Ishmerana Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/71130/guardians/44971\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 42926,\n                            \"values\": {\n                                \"child_id\": 63368\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/42926\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 70802,\n            \"center\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Creative World Apollo Beach\",\n                    \"code\": \"104 - Apollo Beach\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/12\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-11-15T17:01:46+00:00\",\n            \"added_date\": \"2021-11-15T17:01:46+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 44772,\n                \"name\": \"Megan Smith\",\n                \"first_name\": \"Megan\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-15T17:01:46+00:00\",\n                \"email\": \"mmlanning77@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(773) 391-7060\",\n                    \"number_e164\": \"+17733917060\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 12,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44772,\n                    \"name\": \"Megan Smith\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-15T17:01:46+00:00\",\n                    \"email\": \"mmlanning77@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(773) 391-7060\",\n                        \"number_e164\": \"+17733917060\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 12,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 63084,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-03\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Madeline Smith\",\n                    \"first_name\": \"Madeline\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-08-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-11-15T17:01:46+00:00\",\n                    \"system_date\": \"2021-11-15T17:01:46+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 44772,\n                            \"values\": {\n                                \"family_id\": 70802,\n                                \"is_primary\": true,\n                                \"name\": \"Megan Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/70802/guardians/44772\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 42593,\n                            \"values\": {\n                                \"child_id\": 63084\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/42593\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 70707,\n            \"center\": {\n                \"id\": 24,\n                \"values\": {\n                    \"name\": \"Creative World Noland\",\n                    \"code\": \"38 - Noland\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/24\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-12-01T22:21:54+00:00\",\n            \"created_date\": \"2021-11-12T20:04:44+00:00\",\n            \"added_date\": \"2021-11-12T14:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 44701,\n                \"name\": \"Karis Smith\",\n                \"first_name\": \"Karis\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-12T14:00:00+00:00\",\n                \"email\": \"karisashley11@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(424) 288-1166\",\n                    \"number_e164\": \"+14242881166\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Mother\",\n                \"child_relation\": {\n                    \"id\": 22,\n                    \"values\": {\n                        \"value\": \"Mother\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/families/relationships/22\",\n                            \"rel\": \"child_relation\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"center_id\": 24,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"336075\",\n                        \"integration\": {\n                            \"id\": 24,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/24\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44701,\n                    \"name\": \"Karis Smith\",\n                    \"first_name\": \"Karis\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-12T14:00:00+00:00\",\n                    \"email\": \"karisashley11@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(424) 288-1166\",\n                        \"number_e164\": \"+14242881166\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": \"Mother\",\n                    \"child_relation\": {\n                        \"id\": 22,\n                        \"values\": {\n                            \"value\": \"Mother\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/families/relationships/22\",\n                                \"rel\": \"child_relation\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"center_id\": 24,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"336075\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 63784,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-11-29\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-11-29\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-12-01T22:21:54+00:00\",\n                    \"name\": \"Jamie Nix\",\n                    \"first_name\": \"Jamie\",\n                    \"last_name\": \"Nix\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-05-19\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-12-01T22:21:54+00:00\",\n                    \"system_date\": \"2021-12-01T22:21:54+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 44701,\n                            \"values\": {\n                                \"family_id\": 70707,\n                                \"is_primary\": true,\n                                \"name\": \"Karis Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/70707/guardians/44701\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 43331,\n                            \"values\": {\n                                \"child_id\": 63784\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/43331\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"336076\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 70350,\n            \"center\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Creative World Riverwalk\",\n                    \"code\": \"107 - Riverwalk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/16\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-11-09T13:48:42+00:00\",\n            \"added_date\": \"2021-11-09T13:48:42+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I'm looking for a new daycare for my 2 year old grandson\",\n            \"primary_guardian\": {\n                \"id\": 44513,\n                \"name\": \"Tonya Smith \",\n                \"first_name\": \"Tonya\",\n                \"last_name\": \"Smith \",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-09T13:48:42+00:00\",\n                \"email\": \"telisa358@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(757) 805-4339\",\n                    \"number_e164\": \"+17578054339\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 16,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44513,\n                    \"name\": \"Tonya Smith \",\n                    \"first_name\": \"Tonya\",\n                    \"last_name\": \"Smith \",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-09T13:48:42+00:00\",\n                    \"email\": \"telisa358@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(757) 805-4339\",\n                        \"number_e164\": \"+17578054339\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 16,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 70326,\n            \"center\": {\n                \"id\": 24,\n                \"values\": {\n                    \"name\": \"Creative World Noland\",\n                    \"code\": \"38 - Noland\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/24\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-11-08T21:36:33+00:00\",\n            \"created_date\": \"2021-11-08T21:36:31+00:00\",\n            \"added_date\": \"2021-11-08T21:36:31+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 44488,\n                \"name\": \"Shan'Drea Smith\",\n                \"first_name\": \"Shan'Drea\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-08T21:36:31+00:00\",\n                \"email\": \"shanneyd@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 394-5448\",\n                    \"number_e164\": \"+18163945448\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 24,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"107305\",\n                        \"integration\": {\n                            \"id\": 24,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/24\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44488,\n                    \"name\": \"Shan'Drea Smith\",\n                    \"first_name\": \"Shan'Drea\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-08T21:36:31+00:00\",\n                    \"email\": \"shanneyd@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 394-5448\",\n                        \"number_e164\": \"+18163945448\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 24,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"107305\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 62721,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-11-07\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-11-07\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-11-08T21:36:33+00:00\",\n                    \"name\": \"Armon Convert\",\n                    \"first_name\": \"Armon\",\n                    \"last_name\": \"Convert\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2014-07-08\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-11-08T21:36:31+00:00\",\n                    \"system_date\": \"2021-11-08T21:36:31+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 44488,\n                            \"values\": {\n                                \"family_id\": 70326,\n                                \"is_primary\": true,\n                                \"name\": \"Shan'Drea Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/70326/guardians/44488\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 42277,\n                            \"values\": {\n                                \"child_id\": 62721\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/42277\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"107306\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 69788,\n            \"center\": {\n                \"id\": 29,\n                \"values\": {\n                    \"name\": \"Creative World UCF/Orlando\",\n                    \"code\": \"130 - UCF\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/29\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-11-02T09:02:37+00:00\",\n            \"added_date\": \"2021-11-02T09:02:37+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 44162,\n                \"name\": \"John Smith\",\n                \"first_name\": \"John\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-11-02T09:02:37+00:00\",\n                \"email\": \"Thyiss@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(973) 555-5555\",\n                    \"number_e164\": \"+19735555555\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 29,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 44162,\n                    \"name\": \"John Smith\",\n                    \"first_name\": \"John\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-02T09:02:37+00:00\",\n                    \"email\": \"Thyiss@hotmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(973) 555-5555\",\n                        \"number_e164\": \"+19735555555\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 29,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 69263,\n            \"center\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Creative World Brandon/Causeway\",\n                    \"code\": \"88 - Causeway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/18\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-26T01:21:03+00:00\",\n            \"added_date\": \"2021-10-26T01:21:03+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking for pricing for elementary school for my grandchildren. They are 1 and 2 1/2. I'm really looking longer term at elementary school so I'm just checking prices at this point for a reference point. My son lives in Brandon. Thanks\",\n            \"primary_guardian\": {\n                \"id\": 43868,\n                \"name\": \"Greg Smith\",\n                \"first_name\": \"Greg\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-26T01:21:03+00:00\",\n                \"email\": \"GREGORYNS@AOL.COM\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(240) 338-2491\",\n                    \"number_e164\": \"+12403382491\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 18,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 159,\n                        \"values\": {\n                            \"value\": \"Program Not Offered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/159\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43868,\n                    \"name\": \"Greg Smith\",\n                    \"first_name\": \"Greg\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-26T01:21:03+00:00\",\n                    \"email\": \"GREGORYNS@AOL.COM\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(240) 338-2491\",\n                        \"number_e164\": \"+12403382491\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 18,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 159,\n                            \"values\": {\n                                \"value\": \"Program Not Offered\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/159\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 69230,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-25T19:43:54+00:00\",\n            \"added_date\": \"2021-10-25T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Live Event\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/16\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 43855,\n                \"name\": \"Adriana Smith\",\n                \"first_name\": \"Adriana\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                \"email\": \"\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(501) 791-6479\",\n                    \"number_e164\": \"+15017916479\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43855,\n                    \"name\": \"Adriana Smith\",\n                    \"first_name\": \"Adriana\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                    \"email\": \"\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(501) 791-6479\",\n                        \"number_e164\": \"+15017916479\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 61825,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 369,\n                            \"values\": {\n                                \"value\": \"Tuition too High\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/369\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Jenisis Oliver\",\n                    \"first_name\": \"Jenisis\",\n                    \"last_name\": \"Oliver\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-02-25\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                    \"system_date\": \"2021-10-25T19:45:13+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 43855,\n                            \"values\": {\n                                \"family_id\": 69230,\n                                \"is_primary\": true,\n                                \"name\": \"Adriana Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/69230/guardians/43855\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 41461,\n                            \"values\": {\n                                \"child_id\": 61825\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/41461\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 69162,\n            \"center\": {\n                \"id\": 22,\n                \"values\": {\n                    \"name\": \"Creative World Independence/291\",\n                    \"code\": \"20 - CW291\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/22\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-25T14:14:47+00:00\",\n            \"added_date\": \"2021-10-25T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 43827,\n                \"name\": \"Shayanne Smith\",\n                \"first_name\": \"Shayanne\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                \"email\": \"courtneyepperson@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 914-5018\",\n                    \"number_e164\": \"+18169145018\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 22,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43827,\n                    \"name\": \"Shayanne Smith\",\n                    \"first_name\": \"Shayanne\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                    \"email\": \"courtneyepperson@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 914-5018\",\n                        \"number_e164\": \"+18169145018\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 22,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 61757,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Maddics Epperson\",\n                    \"first_name\": \"Maddics\",\n                    \"last_name\": \"Epperson\",\n                    \"preferred_name\": null,\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2017-06-01\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-25T13:00:00+00:00\",\n                    \"system_date\": \"2021-10-25T14:15:39+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 43827,\n                            \"values\": {\n                                \"family_id\": 69162,\n                                \"is_primary\": true,\n                                \"name\": \"Shayanne Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/69162/guardians/43827\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 41415,\n                            \"values\": {\n                                \"child_id\": 61757\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/41415\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68866,\n            \"center\": {\n                \"id\": 23,\n                \"values\": {\n                    \"name\": \"Creative World Lees Summit\",\n                    \"code\": \"112 - Lees Summit\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/23\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-11-04T14:33:38+00:00\",\n            \"created_date\": \"2021-10-20T20:37:28+00:00\",\n            \"added_date\": \"2021-10-20T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 43691,\n                \"name\": \"Paul Smith\",\n                \"first_name\": \"Paul\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-20T13:00:00+00:00\",\n                \"email\": \"sklues@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"3316 Bryn Mawr\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Independence\",\n                    \"region\": \"MO\",\n                    \"postcode\": \"64057\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 309-6336\",\n                    \"number_e164\": \"+18163096336\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 21,\n                        \"values\": {\n                            \"value\": \"Work\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/21\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(817) 309-6336\",\n                    \"number_e164\": \"+18173096336\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Foster Parent\",\n                \"child_relation\": {\n                    \"id\": 768,\n                    \"values\": {\n                        \"value\": \"Foster Parent\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/families/relationships/768\",\n                            \"rel\": \"child_relation\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"center_id\": 23,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"335772\",\n                        \"integration\": {\n                            \"id\": 23,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/23\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43691,\n                    \"name\": \"Paul Smith\",\n                    \"first_name\": \"Paul\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-20T13:00:00+00:00\",\n                    \"email\": \"sklues@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"3316 Bryn Mawr\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Independence\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64057\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 309-6336\",\n                        \"number_e164\": \"+18163096336\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 21,\n                            \"values\": {\n                                \"value\": \"Work\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/21\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(817) 309-6336\",\n                        \"number_e164\": \"+18173096336\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": \"Foster Parent\",\n                    \"child_relation\": {\n                        \"id\": 768,\n                        \"values\": {\n                            \"value\": \"Foster Parent\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/families/relationships/768\",\n                                \"rel\": \"child_relation\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"center_id\": 23,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"335772\",\n                            \"integration\": {\n                                \"id\": 23,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/23\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 43695,\n                    \"name\": \"Sarah Kluesener\",\n                    \"first_name\": \"Sarah\",\n                    \"last_name\": \"Kluesener\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-20\",\n                    \"email\": \"Sklues@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"3316 Bryn Mawr\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Independence\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64057\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(603) 219-1646\",\n                        \"number_e164\": \"+16032191646\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 23,\n                    \"external_system_id\": \"\",\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(603) 219-1646\",\n                        \"number_e164\": \"+16032191646\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 61573,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-11-05\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-11-07\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-11-30\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-11-04T14:33:38+00:00\",\n                    \"name\": \"Sean Martin\",\n                    \"first_name\": \"Sean\",\n                    \"last_name\": \"Martin\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-11-24\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-20T13:00:00+00:00\",\n                    \"system_date\": \"2021-10-20T20:38:21+00:00\",\n                    \"comments\": \"FOSTER/went to the Independence location\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 43691,\n                            \"values\": {\n                                \"family_id\": 68866,\n                                \"is_primary\": true,\n                                \"name\": \"Paul Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/68866/guardians/43691\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 41254,\n                            \"values\": {\n                                \"child_id\": 61573\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/41254\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"335773\",\n                            \"integration\": {\n                                \"id\": 23,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/23\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68826,\n            \"center\": {\n                \"id\": 22,\n                \"values\": {\n                    \"name\": \"Creative World Independence/291\",\n                    \"code\": \"20 - CW291\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/22\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-20T14:29:26+00:00\",\n            \"added_date\": \"2021-10-20T14:29:26+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking to enroll 3 year old son for immediate care. \",\n            \"primary_guardian\": {\n                \"id\": 43676,\n                \"name\": \"Sydney Smith\",\n                \"first_name\": \"Sydney\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-20T14:29:26+00:00\",\n                \"email\": \"sydney.smith@lsr7.net\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 258-0919\",\n                    \"number_e164\": \"+18162580919\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 22,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43676,\n                    \"name\": \"Sydney Smith\",\n                    \"first_name\": \"Sydney\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-20T14:29:26+00:00\",\n                    \"email\": \"sydney.smith@lsr7.net\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 258-0919\",\n                        \"number_e164\": \"+18162580919\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 22,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68560,\n            \"center\": {\n                \"id\": 19,\n                \"values\": {\n                    \"name\": \"Creative World Liberty\",\n                    \"code\": \"100 - Liberty\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/19\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-18T14:34:21+00:00\",\n            \"added_date\": \"2021-10-18T14:34:21+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 726,\n                \"values\": {\n                    \"value\": \"Google Ad\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/726\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Google PPC\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/12\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 12,\n                    \"values\": {\n                        \"name\": \"Google PPC\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/12\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking for care for my 3yo over Christmas Break and then full time come June 2022.\",\n            \"primary_guardian\": {\n                \"id\": 43513,\n                \"name\": \"Jess Smith\",\n                \"first_name\": \"Jess\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-18T14:34:21+00:00\",\n                \"email\": \"jessnaj2009@gmail.con\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(512) 200-6593\",\n                    \"number_e164\": \"+15122006593\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 19,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43513,\n                    \"name\": \"Jess Smith\",\n                    \"first_name\": \"Jess\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-18T14:34:21+00:00\",\n                    \"email\": \"jessnaj2009@gmail.con\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(512) 200-6593\",\n                        \"number_e164\": \"+15122006593\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 19,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68361,\n            \"center\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Creative World St. Cloud\",\n                    \"code\": \"122 - St Cloud\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/3\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-10-29T12:44:21+00:00\",\n            \"created_date\": \"2021-10-14T13:52:22+00:00\",\n            \"added_date\": \"2021-10-14T13:52:22+00:00\",\n            \"inquiry_type\": {\n                \"id\": 141,\n                \"values\": {\n                    \"value\": \"Walk In\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/141\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 783,\n                \"values\": {\n                    \"value\": \"Kiosk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/783\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Walk In Tour (Kiosk)\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/2\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Walk In Tour (Kiosk)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/2\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Starting November 2nd-spoke to Keysha on 10/26/21-JB\",\n            \"primary_guardian\": {\n                \"id\": 43378,\n                \"name\": \"Rachel Smith\",\n                \"first_name\": \"Rachel\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-14T12:00:00+00:00\",\n                \"email\": \"resmith0128@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"2195 Bluebird Pl\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"St Cloud\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"34771\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(405) 343-7196\",\n                    \"number_e164\": \"+14053437196\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(405) 343-7196\",\n                    \"number_e164\": \"+14053437196\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"335536\",\n                        \"integration\": {\n                            \"id\": 3,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/3\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43378,\n                    \"name\": \"Rachel Smith\",\n                    \"first_name\": \"Rachel\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-14T12:00:00+00:00\",\n                    \"email\": \"resmith0128@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"2195 Bluebird Pl\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"St Cloud\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"34771\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(405) 343-7196\",\n                        \"number_e164\": \"+14053437196\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(405) 343-7196\",\n                        \"number_e164\": \"+14053437196\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"335536\",\n                            \"integration\": {\n                                \"id\": 3,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/3\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 43890,\n                    \"name\": \"Jeff Smith\",\n                    \"first_name\": \"Jeff\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-26\",\n                    \"email\": \"rach.jeffsmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"2195 Bluebird Pl\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"St Cloud\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"34771\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(443) 907-2688\",\n                        \"number_e164\": \"+14439072688\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(443) 907-2688\",\n                        \"number_e164\": \"+14439072688\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 61069,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-11-01\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-11-01\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-12-01\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-10-29T12:44:21+00:00\",\n                    \"name\": \"Beckett Smith\",\n                    \"first_name\": \"Beckett\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2018-10-06\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-14T12:00:00+00:00\",\n                    \"system_date\": \"2021-10-14T13:52:23+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 43378,\n                            \"values\": {\n                                \"family_id\": 68361,\n                                \"is_primary\": true,\n                                \"name\": \"Rachel Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/68361/guardians/43378\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 39864,\n                            \"values\": {\n                                \"child_id\": 61069\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/39864\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"335537\",\n                            \"integration\": {\n                                \"id\": 3,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/3\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68333,\n            \"center\": {\n                \"id\": 19,\n                \"values\": {\n                    \"name\": \"Creative World Liberty\",\n                    \"code\": \"100 - Liberty\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/19\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-13T22:39:38+00:00\",\n            \"added_date\": \"2021-10-13T22:39:38+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \" Starting a new job days are unknown right now.\",\n            \"primary_guardian\": {\n                \"id\": 43359,\n                \"name\": \"Kira Smith\",\n                \"first_name\": \"Kira\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-13T22:39:38+00:00\",\n                \"email\": \"kirasmithforever@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 905-4606\",\n                    \"number_e164\": \"+18169054606\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 19,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43359,\n                    \"name\": \"Kira Smith\",\n                    \"first_name\": \"Kira\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-13T22:39:38+00:00\",\n                    \"email\": \"kirasmithforever@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 905-4606\",\n                        \"number_e164\": \"+18169054606\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 19,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 61056,\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-10-19\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Deklen Smith\",\n                    \"first_name\": \"Deklen\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-07-25\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-13T22:39:38+00:00\",\n                    \"system_date\": \"2021-10-13T22:39:38+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 43359,\n                            \"values\": {\n                                \"family_id\": 68333,\n                                \"is_primary\": true,\n                                \"name\": \"Kira Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/68333/guardians/43359\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 39860,\n                            \"values\": {\n                                \"child_id\": 61056\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/39860\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 68074,\n            \"center\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Creative World Brandon/Causeway\",\n                    \"code\": \"88 - Causeway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/18\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-11T16:28:32+00:00\",\n            \"added_date\": \"2021-10-11T16:28:32+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": true,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                }\n            },\n            \"comments\": \"looking for spots for a 3y/o boy and 4y/o girl\",\n            \"primary_guardian\": {\n                \"id\": 43225,\n                \"name\": \"Lacretia Smith\",\n                \"first_name\": \"Lacretia\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-11T16:28:32+00:00\",\n                \"email\": \"ldsmith0922@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 862-6862\",\n                    \"number_e164\": \"+18138626862\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 18,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": \"Mom asked that we stop \",\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43225,\n                    \"name\": \"Lacretia Smith\",\n                    \"first_name\": \"Lacretia\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-11T16:28:32+00:00\",\n                    \"email\": \"ldsmith0922@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 862-6862\",\n                        \"number_e164\": \"+18138626862\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 18,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"Mom asked that we stop \",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67841,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-07T02:07:32+00:00\",\n            \"added_date\": \"2021-10-07T02:07:32+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 26,\n                    \"values\": {\n                        \"name\": \"Fall Festival RSVP\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/26\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": true,\n            \"do_not_text\": true,\n            \"do_not_email\": true,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                },\n                \"text\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 43073,\n                \"name\": \"Carly Walter-smith\",\n                \"first_name\": \"Carly\",\n                \"last_name\": \"Walter-smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-06T13:00:00+00:00\",\n                \"email\": \"carly1289@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(972) 750-1244\",\n                    \"number_e164\": \"+19727501244\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 819,\n                        \"values\": {\n                            \"value\": \"Unintended FB Submission \"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/819\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43073,\n                    \"name\": \"Carly Walter-smith\",\n                    \"first_name\": \"Carly\",\n                    \"last_name\": \"Walter-smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-06T13:00:00+00:00\",\n                    \"email\": \"carly1289@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(972) 750-1244\",\n                        \"number_e164\": \"+19727501244\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 819,\n                            \"values\": {\n                                \"value\": \"Unintended FB Submission \"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/819\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67829,\n            \"center\": {\n                \"id\": 23,\n                \"values\": {\n                    \"name\": \"Creative World Lees Summit\",\n                    \"code\": \"112 - Lees Summit\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/23\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-06T22:03:40+00:00\",\n            \"added_date\": \"2021-10-06T22:03:40+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 43060,\n                \"name\": \"Taylor Smith\",\n                \"first_name\": \"Taylor\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-06T13:00:00+00:00\",\n                \"email\": \"Moboyds@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 315-8398\",\n                    \"number_e164\": \"+18163158398\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 23,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 43060,\n                    \"name\": \"Taylor Smith\",\n                    \"first_name\": \"Taylor\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-06T13:00:00+00:00\",\n                    \"email\": \"Moboyds@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 315-8398\",\n                        \"number_e164\": \"+18163158398\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 23,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67673,\n            \"center\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Creative World Brandon/Causeway\",\n                    \"code\": \"88 - Causeway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/18\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-05T13:53:22+00:00\",\n            \"added_date\": \"2021-10-05T13:53:22+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I am reaching out regarding tuition and fees. Are you taking on new infants/toddlers? We need care starting 10/25 but we are flexible.  He will be 11 months old, turning one on 11/20. Thank you!!\",\n            \"primary_guardian\": {\n                \"id\": 42956,\n                \"name\": \"Rose Rhinesmith\",\n                \"first_name\": \"Rose\",\n                \"last_name\": \"Rhinesmith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-05T13:53:22+00:00\",\n                \"email\": \"rose_frye@icloud.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(856) 472-3149\",\n                    \"number_e164\": \"+18564723149\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 18,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 160,\n                        \"values\": {\n                            \"value\": \"No Space Available\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42956,\n                    \"name\": \"Rose Rhinesmith\",\n                    \"first_name\": \"Rose\",\n                    \"last_name\": \"Rhinesmith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-05T13:53:22+00:00\",\n                    \"email\": \"rose_frye@icloud.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(856) 472-3149\",\n                        \"number_e164\": \"+18564723149\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 18,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 160,\n                            \"values\": {\n                                \"value\": \"No Space Available\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67620,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-04T19:06:51+00:00\",\n            \"added_date\": \"2021-10-04T19:06:51+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 377,\n                \"values\": {\n                    \"value\": \"Referral-Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/377\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello - My wife and I work at The Home Depot across from your school. We have friends that are currently enrolled and speak highly of your curriculum and staff. We are very interested in learning more about wait lists and options for part time attendance. We are looking to put our daughter in school starting January 2022, part time if possible (2 days per week). She is currently starting to crawl, so we are not sure what stage she will be come January. Look forward to learning more and hearing back! \",\n            \"primary_guardian\": {\n                \"id\": 42926,\n                \"name\": \"Robert Smith\",\n                \"first_name\": \"Robert\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-04T19:06:51+00:00\",\n                \"email\": \"robert_r_smith@homedepot.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(404) 539-4400\",\n                    \"number_e164\": \"+14045394400\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42926,\n                    \"name\": \"Robert Smith\",\n                    \"first_name\": \"Robert\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-04T19:06:51+00:00\",\n                    \"email\": \"robert_r_smith@homedepot.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(404) 539-4400\",\n                        \"number_e164\": \"+14045394400\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 60443,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-03\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 160,\n                            \"values\": {\n                                \"value\": \"No Space Available\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Mckay Smith\",\n                    \"first_name\": \"Mckay\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-03-23\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-04T12:00:00+00:00\",\n                    \"system_date\": \"2021-10-04T22:04:37+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 42926,\n                            \"values\": {\n                                \"family_id\": 67620,\n                                \"is_primary\": true,\n                                \"name\": \"Robert Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/67620/guardians/42926\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 39225,\n                            \"values\": {\n                                \"child_id\": 60443\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/39225\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67535,\n            \"center\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Creative World Riverview\",\n                    \"code\": \"105 - Rivercrest\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/7\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-03T20:13:09+00:00\",\n            \"added_date\": \"2021-10-03T20:13:09+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"We are looking for a part-time schedule for my grandson from Nov - March when he is in town.\",\n            \"primary_guardian\": {\n                \"id\": 42873,\n                \"name\": \"Tracy Smith\",\n                \"first_name\": \"Tracy\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-03T20:13:09+00:00\",\n                \"email\": \"tracysmithinsurance@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 918-7063\",\n                    \"number_e164\": \"+18139187063\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42873,\n                    \"name\": \"Tracy Smith\",\n                    \"first_name\": \"Tracy\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-03T20:13:09+00:00\",\n                    \"email\": \"tracysmithinsurance@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 918-7063\",\n                        \"number_e164\": \"+18139187063\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 7,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 60377,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-11-15\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Jackson Purdy\",\n                    \"first_name\": \"Jackson\",\n                    \"last_name\": \"Purdy\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-04-25\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-04T12:00:00+00:00\",\n                    \"system_date\": \"2021-10-04T14:10:43+00:00\",\n                    \"comments\": \"Had to cancel tour.\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 42873,\n                            \"values\": {\n                                \"family_id\": 67535,\n                                \"is_primary\": true,\n                                \"name\": \"Tracy Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/67535/guardians/42873\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 39437,\n                            \"values\": {\n                                \"child_id\": 60377\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/39437\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 67463,\n            \"center\": {\n                \"id\": 21,\n                \"values\": {\n                    \"name\": \"Creative World Belton\",\n                    \"code\": \"110 - Belton\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/21\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-10-01T18:32:34+00:00\",\n            \"added_date\": \"2021-10-01T18:32:34+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 42832,\n                \"name\": \"Ashley Smith\",\n                \"first_name\": \"Ashley\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-10-01T18:32:34+00:00\",\n                \"email\": \"ashaustin7@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 588-8101\",\n                    \"number_e164\": \"+18165888101\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 21,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42832,\n                    \"name\": \"Ashley Smith\",\n                    \"first_name\": \"Ashley\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-10-01T18:32:34+00:00\",\n                    \"email\": \"ashaustin7@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 588-8101\",\n                        \"number_e164\": \"+18165888101\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 21,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 60301,\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-10-18\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Mason Smith\",\n                    \"first_name\": \"Mason\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-03-21\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-10-01T18:32:34+00:00\",\n                    \"system_date\": \"2021-10-01T18:32:34+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 42832,\n                            \"values\": {\n                                \"family_id\": 67463,\n                                \"is_primary\": true,\n                                \"name\": \"Ashley Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/67463/guardians/42832\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 39116,\n                            \"values\": {\n                                \"child_id\": 60301\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/39116\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 66474,\n            \"center\": {\n                \"id\": 27,\n                \"values\": {\n                    \"name\": \"Creative World Leander\",\n                    \"code\": \"128 - Leander\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/27\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-09-22T18:53:29+00:00\",\n            \"added_date\": \"2021-09-22T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Live Event\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/16\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": true,\n            \"do_not_email\": true,\n            \"do_not_auto_email\": true,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                },\n                \"text\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 42424,\n                \"name\": \"Megan Smith\",\n                \"first_name\": \"Megan\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-22T13:00:00+00:00\",\n                \"email\": \"megan23smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(512) 884-7030\",\n                    \"number_e164\": \"+15128847030\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 27,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 53,\n                        \"values\": {\n                            \"value\": \"Stay at Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/53\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42424,\n                    \"name\": \"Megan Smith\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-22T13:00:00+00:00\",\n                    \"email\": \"megan23smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(512) 884-7030\",\n                        \"number_e164\": \"+15128847030\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 27,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 53,\n                            \"values\": {\n                                \"value\": \"Stay at Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/53\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 66335,\n            \"center\": {\n                \"id\": 14,\n                \"values\": {\n                    \"name\": \"Creative World Gateway\",\n                    \"code\": \"125 - Gateway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/14\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-09-21T15:04:38+00:00\",\n            \"created_date\": \"2021-09-21T15:03:16+00:00\",\n            \"added_date\": \"2021-09-21T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 141,\n                \"values\": {\n                    \"value\": \"Walk In\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/141\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 42349,\n                \"name\": \"Alana Smith\",\n                \"first_name\": \"Alana\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-21T12:00:00+00:00\",\n                \"email\": \"alanasosa88@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"612 Louis ave \",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Lehigh acres\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33972\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(239) 634-0820\",\n                    \"number_e164\": \"+12396340820\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(239) 634-0820\",\n                    \"number_e164\": \"+12396340820\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 14,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333804\",\n                        \"integration\": {\n                            \"id\": 14,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/14\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42349,\n                    \"name\": \"Alana Smith\",\n                    \"first_name\": \"Alana\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-21T12:00:00+00:00\",\n                    \"email\": \"alanasosa88@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"612 Louis ave \",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Lehigh acres\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33972\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(239) 634-0820\",\n                        \"number_e164\": \"+12396340820\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(239) 634-0820\",\n                        \"number_e164\": \"+12396340820\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 14,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333804\",\n                            \"integration\": {\n                                \"id\": 14,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/14\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 42379,\n                    \"name\": \"Yvonne  Ferrer\",\n                    \"first_name\": \"Yvonne \",\n                    \"last_name\": \"Ferrer\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-21\",\n                    \"email\": \"Evie1423@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"612 Louis ave \",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Lehigh acres\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33972\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(239) 810-5695\",\n                        \"number_e164\": \"+12398105695\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 14,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(239) 810-5695\",\n                        \"number_e164\": \"+12398105695\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 59351,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-22\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-22\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-09-21T15:04:38+00:00\",\n                    \"name\": \"Avalyn Ferrer\",\n                    \"first_name\": \"Avalyn\",\n                    \"last_name\": \"Ferrer\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-04-26\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-21T12:00:00+00:00\",\n                    \"system_date\": \"2021-09-21T15:04:06+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 42349,\n                            \"values\": {\n                                \"family_id\": 66335,\n                                \"is_primary\": true,\n                                \"name\": \"Alana Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/66335/guardians/42349\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 38528,\n                            \"values\": {\n                                \"child_id\": 59351\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/38528\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"333805\",\n                            \"integration\": {\n                                \"id\": 14,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/14\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 66152,\n            \"center\": {\n                \"id\": 24,\n                \"values\": {\n                    \"name\": \"Creative World Noland\",\n                    \"code\": \"38 - Noland\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/24\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-09-17T23:10:01+00:00\",\n            \"added_date\": \"2021-09-17T23:10:01+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello, my wife, daughter, and I are moving to the KC area next month and are looking for more information on your school. Our daughter is 3 and will be turning 4 in December. Do you have any availability in the near future?\",\n            \"primary_guardian\": {\n                \"id\": 42230,\n                \"name\": \"Brandon Stallsmith\",\n                \"first_name\": \"Brandon\",\n                \"last_name\": \"Stallsmith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-17T23:10:01+00:00\",\n                \"email\": \"bstallsmith13@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(641) 425-6929\",\n                    \"number_e164\": \"+16414256929\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 24,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42230,\n                    \"name\": \"Brandon Stallsmith\",\n                    \"first_name\": \"Brandon\",\n                    \"last_name\": \"Stallsmith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-17T23:10:01+00:00\",\n                    \"email\": \"bstallsmith13@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(641) 425-6929\",\n                        \"number_e164\": \"+16414256929\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 24,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 65778,\n            \"center\": {\n                \"id\": 30,\n                \"values\": {\n                    \"name\": \"Creative World Starkey Ranch\",\n                    \"code\": \"131- Starkey Ranch\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/30\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-09-13T17:09:54+00:00\",\n            \"created_date\": \"2021-09-13T17:09:07+00:00\",\n            \"added_date\": \"2021-09-13T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 42013,\n                \"name\": \"Nicole Smith\",\n                \"first_name\": \"Nicole\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-13T12:00:00+00:00\",\n                \"email\": \"niiicoleeexo01@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 389-4692\",\n                    \"number_e164\": \"+17273894692\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 389-4692\",\n                    \"number_e164\": \"+17273894692\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 30,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333323\",\n                        \"integration\": {\n                            \"id\": 26,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/26\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 42013,\n                    \"name\": \"Nicole Smith\",\n                    \"first_name\": \"Nicole\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-13T12:00:00+00:00\",\n                    \"email\": \"niiicoleeexo01@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 389-4692\",\n                        \"number_e164\": \"+17273894692\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 389-4692\",\n                        \"number_e164\": \"+17273894692\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 30,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333323\",\n                            \"integration\": {\n                                \"id\": 26,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/26\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 42029,\n                    \"name\": \"Nicholas Harlow\",\n                    \"first_name\": \"Nicholas\",\n                    \"last_name\": \"Harlow\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-13\",\n                    \"email\": \"nharlow7@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"8921 kloss ln\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Hudson\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"34667\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(727) 389-0286\",\n                        \"number_e164\": \"+17273890286\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 30,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(727) 389-0286\",\n                        \"number_e164\": \"+17273890286\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 58869,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-13\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-14\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-10-18\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-09-13T17:09:54+00:00\",\n                    \"name\": \"Dallas Harlow\",\n                    \"first_name\": \"Dallas\",\n                    \"last_name\": \"Harlow\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-05-30\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-13T12:00:00+00:00\",\n                    \"system_date\": \"2021-09-13T17:09:39+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 42013,\n                            \"values\": {\n                                \"family_id\": 65778,\n                                \"is_primary\": true,\n                                \"name\": \"Nicole Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/65778/guardians/42013\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 38192,\n                            \"values\": {\n                                \"child_id\": 58869\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/38192\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"333324\",\n                            \"integration\": {\n                                \"id\": 26,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/26\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 65626,\n            \"center\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Creative World Cypress Springs\",\n                    \"code\": \"118 - Cypress Spring\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/2\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-09-10T18:49:17+00:00\",\n            \"created_date\": \"2021-09-10T18:46:44+00:00\",\n            \"added_date\": \"2021-09-10T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41929,\n                \"name\": \"Marlene Smith\",\n                \"first_name\": \"Marlene\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-10T12:00:00+00:00\",\n                \"email\": \"marleneartsandcrafts@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"9804 peddlers way\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Orlando\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"32817\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 618-9071\",\n                    \"number_e164\": \"+14076189071\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 618-9071\",\n                    \"number_e164\": \"+14076189071\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333531\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41929,\n                    \"name\": \"Marlene Smith\",\n                    \"first_name\": \"Marlene\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-10T12:00:00+00:00\",\n                    \"email\": \"marleneartsandcrafts@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"9804 peddlers way\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Orlando\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"32817\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 618-9071\",\n                        \"number_e164\": \"+14076189071\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 618-9071\",\n                        \"number_e164\": \"+14076189071\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 2,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333531\",\n                            \"integration\": {\n                                \"id\": 2,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/2\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 42003,\n                    \"name\": \"Matthew Smith\",\n                    \"first_name\": \"Matthew\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-13\",\n                    \"email\": \"mwsmith4ddr@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"9804 peddlers way\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Orlando\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"32817\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(407) 618-9449\",\n                        \"number_e164\": \"+14076189449\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 2,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(407) 618-9449\",\n                        \"number_e164\": \"+14076189449\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 58766,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-20\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-20\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-09-10T18:49:17+00:00\",\n                    \"name\": \"Lily Smith\",\n                    \"first_name\": \"Lily\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2017-01-19\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-10T12:00:00+00:00\",\n                    \"system_date\": \"2021-09-10T18:47:44+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 41929,\n                            \"values\": {\n                                \"family_id\": 65626,\n                                \"is_primary\": true,\n                                \"name\": \"Marlene Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/65626/guardians/41929\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 38104,\n                            \"values\": {\n                                \"child_id\": 58766\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/38104\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"333532\",\n                            \"integration\": {\n                                \"id\": 2,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/2\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": {\n                        \"id\": 749,\n                        \"values\": {\n                            \"value\": \"VPK Only\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/749\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 65433,\n            \"center\": {\n                \"id\": 13,\n                \"values\": {\n                    \"name\": \"Creative World Estero/Three Oaks\",\n                    \"code\": \"103 - Three Oaks\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/13\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-09-16T18:43:28+00:00\",\n            \"created_date\": \"2021-09-08T22:21:22+00:00\",\n            \"added_date\": \"2021-09-08T22:21:22+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello! We are interested in this school for our 2 year old in January. I've called before, but just need a pricing sheet sent to my email. I'm pregnant right now, so we do not want to to tour the school unless we know this school will fit our budget and schedule. We're looking for part time daycare, 3 days a week. \\r\\nThank you!\\r\\nJen\",\n            \"primary_guardian\": {\n                \"id\": 41809,\n                \"name\": \"Jennifer Smith\",\n                \"first_name\": \"Jennifer\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-08T22:21:22+00:00\",\n                \"email\": \"jenniferedwardssmith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"9707 Roundstone Circle\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Fort Myers\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33967\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(509) 981-4629\",\n                    \"number_e164\": \"+15099814629\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(509) 981-4629\",\n                    \"number_e164\": \"+15099814629\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 13,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333569\",\n                        \"integration\": {\n                            \"id\": 13,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/13\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41809,\n                    \"name\": \"Jennifer Smith\",\n                    \"first_name\": \"Jennifer\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-08T22:21:22+00:00\",\n                    \"email\": \"jenniferedwardssmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"9707 Roundstone Circle\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Fort Myers\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33967\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(509) 981-4629\",\n                        \"number_e164\": \"+15099814629\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(509) 981-4629\",\n                        \"number_e164\": \"+15099814629\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 13,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333569\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 45279,\n                    \"name\": \"Ryan Smith\",\n                    \"first_name\": \"Ryan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-11-30\",\n                    \"email\": \"ryansmith0003@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"9707 Roundstone Circle\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Fort Myers\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33967\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(419) 265-7888\",\n                        \"number_e164\": \"+14192657888\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 13,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(419) 265-7888\",\n                        \"number_e164\": \"+14192657888\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 59103,\n                    \"status\": {\n                        \"id\": 5,\n                        \"values\": {\n                            \"name\": \"Registered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/5\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-01-17\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-09-16T18:43:28+00:00\",\n                    \"name\": \"Tatum Smith\",\n                    \"first_name\": \"Tatum\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-04-30\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-16T12:00:00+00:00\",\n                    \"system_date\": \"2021-09-16T16:48:41+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 41809,\n                            \"values\": {\n                                \"family_id\": 65433,\n                                \"is_primary\": true,\n                                \"name\": \"Jennifer Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/65433/guardians/41809\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 38369,\n                            \"values\": {\n                                \"child_id\": 59103\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/38369\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"333570\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 65198,\n            \"center\": {\n                \"id\": 13,\n                \"values\": {\n                    \"name\": \"Creative World Estero/Three Oaks\",\n                    \"code\": \"103 - Three Oaks\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/13\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-09-07T15:49:10+00:00\",\n            \"created_date\": \"2021-09-07T15:49:10+00:00\",\n            \"added_date\": \"2021-09-07T15:49:10+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41715,\n                \"name\": \"Erin Smith\",\n                \"first_name\": \"Erin\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-09-07T15:49:10+00:00\",\n                \"email\": \"esmith2783@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"19091 Porto Nuevo Drive, Apt 101\",\n                    \"address2\": \"apt 101\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Fort Myers\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33967\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 443-4184\",\n                    \"number_e164\": \"+14074434184\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 13,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"327470\",\n                        \"integration\": {\n                            \"id\": 13,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/13\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41715,\n                    \"name\": \"Erin Smith\",\n                    \"first_name\": \"Erin\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-07T15:49:10+00:00\",\n                    \"email\": \"esmith2783@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"19091 Porto Nuevo Drive, Apt 101\",\n                        \"address2\": \"apt 101\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Fort Myers\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33967\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 443-4184\",\n                        \"number_e164\": \"+14074434184\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 13,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"327470\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 58454,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-12\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-12\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-09-07T15:49:11+00:00\",\n                    \"name\": \"Sidney Smith\",\n                    \"first_name\": \"Sidney\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-10-04\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-07T15:49:10+00:00\",\n                    \"system_date\": \"2021-09-07T15:49:10+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 41715,\n                            \"values\": {\n                                \"family_id\": 65198,\n                                \"is_primary\": true,\n                                \"name\": \"Erin Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/65198/guardians/41715\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 37898,\n                            \"values\": {\n                                \"child_id\": 58454\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37898\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"327472\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 64757,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-30T22:54:17+00:00\",\n            \"added_date\": \"2021-08-30T22:54:17+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Request Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/3\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Request Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/3\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": true,\n            \"do_not_text\": true,\n            \"do_not_email\": true,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                },\n                \"text\": {\n                    \"general\": false,\n                    \"marketing\": false,\n                    \"service\": false,\n                    \"urgent\": false\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41440,\n                \"name\": \"Aliyah Smith\",\n                \"first_name\": \"Aliyah\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-30T13:00:00+00:00\",\n                \"email\": \"smithaliyah1215@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(972) 415-9785\",\n                    \"number_e164\": \"+19724159785\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41440,\n                    \"name\": \"Aliyah Smith\",\n                    \"first_name\": \"Aliyah\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-30T13:00:00+00:00\",\n                    \"email\": \"smithaliyah1215@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(972) 415-9785\",\n                        \"number_e164\": \"+19724159785\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 64596,\n            \"center\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Creative World Brandon/Causeway\",\n                    \"code\": \"88 - Causeway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/18\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-27T21:26:00+00:00\",\n            \"added_date\": \"2021-08-27T21:26:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello,\\r\\n\\r\\nI am Davis from Mysoftcart.com. We sell Microsoft & windows 10 OS Licenses at Low price. If you are interested, then let us know.\\r\\n\\r\\nMicrosoft Office\\r\\nWindows OS \\r\\nMicrosoft Home & Business \\r\\nAntivirus Products & Much more \\r\\n\\r\\nAvail $15 Discount Coupon. \\\"15DMYSOFT\\\" For bulk licenses, contact us\\r\\n\\r\\nVisit :  https://bit.ly/3D00oGz\\r\\n\\r\\nPhone :  1-866-849-8084\",\n            \"primary_guardian\": {\n                \"id\": 41318,\n                \"name\": \"Davis  Smith\",\n                \"first_name\": \"Davis \",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-27T21:26:00+00:00\",\n                \"email\": \"info@mysoftcart.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 21,\n                        \"values\": {\n                            \"value\": \"Work\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/21\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(866) 849-8084\",\n                    \"number_e164\": \"+18668498084\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 18,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41318,\n                    \"name\": \"Davis  Smith\",\n                    \"first_name\": \"Davis \",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-27T21:26:00+00:00\",\n                    \"email\": \"info@mysoftcart.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 21,\n                            \"values\": {\n                                \"value\": \"Work\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/21\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(866) 849-8084\",\n                        \"number_e164\": \"+18668498084\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 18,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 64456,\n            \"center\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Creative World Cypress Springs\",\n                    \"code\": \"118 - Cypress Spring\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/2\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-26T16:21:27+00:00\",\n            \"added_date\": \"2021-08-26T16:21:27+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41231,\n                \"name\": \"Dekaya  Smith\",\n                \"first_name\": \"Dekaya \",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-26T16:21:27+00:00\",\n                \"email\": \"dekayasmith10@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(321) 279-0917\",\n                    \"number_e164\": \"+13212790917\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41231,\n                    \"name\": \"Dekaya  Smith\",\n                    \"first_name\": \"Dekaya \",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-26T16:21:27+00:00\",\n                    \"email\": \"dekayasmith10@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(321) 279-0917\",\n                        \"number_e164\": \"+13212790917\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 2,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 57816,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Kenny Joirdan\",\n                    \"first_name\": \"Kenny\",\n                    \"last_name\": \"Joirdan\",\n                    \"preferred_name\": null,\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-06-04\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-08-26T16:21:27+00:00\",\n                    \"system_date\": \"2021-08-26T19:01:37+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 41231,\n                            \"values\": {\n                                \"family_id\": 64456,\n                                \"is_primary\": true,\n                                \"name\": \"Dekaya  Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/64456/guardians/41231\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 37473,\n                            \"values\": {\n                                \"child_id\": 57816\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37473\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": {\n                        \"id\": 748,\n                        \"values\": {\n                            \"value\": \"Standard Enrollment\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/748\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 64437,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-26T15:10:11+00:00\",\n            \"added_date\": \"2021-08-26T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Request Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/3\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Request Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/3\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 26,\n                    \"values\": {\n                        \"name\": \"Fall Festival RSVP\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/26\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41226,\n                \"name\": \"KERIA SMITH\",\n                \"first_name\": \"KERIA\",\n                \"last_name\": \"SMITH\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-26T13:00:00+00:00\",\n                \"email\": \"KERIASMITH89@GMAIL.COM\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(214) 270-8639\",\n                    \"number_e164\": \"+12142708639\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41226,\n                    \"name\": \"KERIA SMITH\",\n                    \"first_name\": \"KERIA\",\n                    \"last_name\": \"SMITH\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-26T13:00:00+00:00\",\n                    \"email\": \"KERIASMITH89@GMAIL.COM\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(214) 270-8639\",\n                        \"number_e164\": \"+12142708639\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 57774,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"jade SMITH-hicks\",\n                    \"first_name\": \"jade\",\n                    \"last_name\": \"SMITH-hicks\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-01-16\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-08-26T13:00:00+00:00\",\n                    \"system_date\": \"2021-08-26T15:11:10+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 41226,\n                            \"values\": {\n                                \"family_id\": 64437,\n                                \"is_primary\": true,\n                                \"name\": \"KERIA SMITH\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/64437/guardians/41226\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 37451,\n                            \"values\": {\n                                \"child_id\": 57774\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37451\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 64366,\n            \"center\": {\n                \"id\": 17,\n                \"values\": {\n                    \"name\": \"Creative World Frisco\",\n                    \"code\": \"115 - Frisco\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/17\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-25T18:26:11+00:00\",\n            \"added_date\": \"2021-08-25T18:26:11+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Request Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/3\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Request Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/3\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 26,\n                    \"values\": {\n                        \"name\": \"Fall Festival RSVP\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/26\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 41174,\n                \"name\": \"Keiara Smith\",\n                \"first_name\": \"Keiara\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-25T13:00:00+00:00\",\n                \"email\": \"keiarasmith89@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(214) 270-8639\",\n                    \"number_e164\": \"+12142708639\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 17,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41174,\n                    \"name\": \"Keiara Smith\",\n                    \"first_name\": \"Keiara\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-25T13:00:00+00:00\",\n                    \"email\": \"keiarasmith89@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(214) 270-8639\",\n                        \"number_e164\": \"+12142708639\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 17,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 63834,\n            \"center\": {\n                \"id\": 22,\n                \"values\": {\n                    \"name\": \"Creative World Independence/291\",\n                    \"code\": \"20 - CW291\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/22\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-23T13:43:37+00:00\",\n            \"added_date\": \"2021-08-23T13:43:37+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 726,\n                \"values\": {\n                    \"value\": \"Google Ad\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/726\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Google PPC\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/12\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 12,\n                    \"values\": {\n                        \"name\": \"Google PPC\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/12\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Before and after school care for Randall .\",\n            \"primary_guardian\": {\n                \"id\": 41001,\n                \"name\": \"Samantha Smith\",\n                \"first_name\": \"Samantha\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-23T13:43:37+00:00\",\n                \"email\": \"samlynn3@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 352-1187\",\n                    \"number_e164\": \"+18163521187\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 22,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 41001,\n                    \"name\": \"Samantha Smith\",\n                    \"first_name\": \"Samantha\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-23T13:43:37+00:00\",\n                    \"email\": \"samlynn3@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 352-1187\",\n                        \"number_e164\": \"+18163521187\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 22,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 63820,\n            \"center\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Creative World Riverwalk\",\n                    \"code\": \"107 - Riverwalk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/16\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-23T07:27:45+00:00\",\n            \"added_date\": \"2021-08-23T07:27:45+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I would like to know the tuition cost for full time/part time for 2 yr old. Also, what would the time frames be for attendance? Thank you.\",\n            \"primary_guardian\": {\n                \"id\": 40990,\n                \"name\": \"Sierra Smith\",\n                \"first_name\": \"Sierra\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-23T07:27:45+00:00\",\n                \"email\": \"pinkmafia17@icloud.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(808) 631-9294\",\n                    \"number_e164\": \"+18086319294\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 16,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 40990,\n                    \"name\": \"Sierra Smith\",\n                    \"first_name\": \"Sierra\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-23T07:27:45+00:00\",\n                    \"email\": \"pinkmafia17@icloud.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(808) 631-9294\",\n                        \"number_e164\": \"+18086319294\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 16,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 63790,\n            \"center\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Creative World Riverwalk\",\n                    \"code\": \"107 - Riverwalk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/16\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-21T11:22:39+00:00\",\n            \"added_date\": \"2021-08-21T11:22:39+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"trying to enroll my son\",\n            \"primary_guardian\": {\n                \"id\": 40955,\n                \"name\": \"Maiya Smith\",\n                \"first_name\": \"Maiya\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-21T11:22:39+00:00\",\n                \"email\": \"maiya.smith17@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(757) 907-5292\",\n                    \"number_e164\": \"+17579075292\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 16,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 40955,\n                    \"name\": \"Maiya Smith\",\n                    \"first_name\": \"Maiya\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-21T11:22:39+00:00\",\n                    \"email\": \"maiya.smith17@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(757) 907-5292\",\n                        \"number_e164\": \"+17579075292\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 16,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 62791,\n            \"center\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Creative World Riverwalk\",\n                    \"code\": \"107 - Riverwalk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/16\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-11T19:25:21+00:00\",\n            \"added_date\": \"2021-08-11T19:25:21+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 40383,\n                \"name\": \"Glenn Smith\",\n                \"first_name\": \"Glenn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-11T19:25:21+00:00\",\n                \"email\": \"glennasmith91@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(757) 343-1211\",\n                    \"number_e164\": \"+17573431211\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 16,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 40383,\n                    \"name\": \"Glenn Smith\",\n                    \"first_name\": \"Glenn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-11T19:25:21+00:00\",\n                    \"email\": \"glennasmith91@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(757) 343-1211\",\n                        \"number_e164\": \"+17573431211\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 16,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 62496,\n            \"center\": {\n                \"id\": 19,\n                \"values\": {\n                    \"name\": \"Creative World Liberty\",\n                    \"code\": \"100 - Liberty\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/19\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-10-04T15:34:04+00:00\",\n            \"created_date\": \"2021-08-09T17:52:01+00:00\",\n            \"added_date\": \"2021-08-09T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 40200,\n                \"name\": \"Marissa Smith\",\n                \"first_name\": \"Marissa\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-09T13:00:00+00:00\",\n                \"email\": \"marissalundgren24@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 389-7746\",\n                    \"number_e164\": \"+18163897746\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 19,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"334370\",\n                        \"integration\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/19\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 40200,\n                    \"name\": \"Marissa Smith\",\n                    \"first_name\": \"Marissa\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-09T13:00:00+00:00\",\n                    \"email\": \"marissalundgren24@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 389-7746\",\n                        \"number_e164\": \"+18163897746\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 19,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"334370\",\n                            \"integration\": {\n                                \"id\": 19,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/19\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 55776,\n                    \"status\": {\n                        \"id\": 5,\n                        \"values\": {\n                            \"name\": \"Registered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/5\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-10-06\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-10-04T15:34:04+00:00\",\n                    \"name\": \"D'mari Johnson\",\n                    \"first_name\": \"D'mari\",\n                    \"last_name\": \"Johnson\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-06-08\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-08-09T13:00:00+00:00\",\n                    \"system_date\": \"2021-08-09T17:52:40+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 40200,\n                            \"values\": {\n                                \"family_id\": 62496,\n                                \"is_primary\": true,\n                                \"name\": \"Marissa Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/62496/guardians/40200\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 36028,\n                            \"values\": {\n                                \"child_id\": 55776\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/36028\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"334379\",\n                            \"integration\": {\n                                \"id\": 19,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/19\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 61940,\n            \"center\": {\n                \"id\": 14,\n                \"values\": {\n                    \"name\": \"Creative World Gateway\",\n                    \"code\": \"125 - Gateway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/14\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-04T16:23:51+00:00\",\n            \"added_date\": \"2021-08-04T16:23:51+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 377,\n                \"values\": {\n                    \"value\": \"Referral-Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/377\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 39834,\n                \"name\": \"Destiny Smith\",\n                \"first_name\": \"Destiny\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-04T16:23:51+00:00\",\n                \"email\": \"destinyrsmith08@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(765) 635-1125\",\n                    \"number_e164\": \"+17656351125\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 14,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39834,\n                    \"name\": \"Destiny Smith\",\n                    \"first_name\": \"Destiny\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-04T16:23:51+00:00\",\n                    \"email\": \"destinyrsmith08@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(765) 635-1125\",\n                        \"number_e164\": \"+17656351125\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 14,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 58064,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-10-04\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Kroy Smith\",\n                    \"first_name\": \"Kroy\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-09-07\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-08-31T12:00:00+00:00\",\n                    \"system_date\": \"2021-08-31T19:00:16+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 39834,\n                            \"values\": {\n                                \"family_id\": 61940,\n                                \"is_primary\": true,\n                                \"name\": \"Destiny Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/61940/guardians/39834\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 37687,\n                            \"values\": {\n                                \"child_id\": 58064\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37687\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 61697,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-08-02T22:00:35+00:00\",\n            \"added_date\": \"2021-08-02T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 39682,\n                \"name\": \"Krystal Smith\",\n                \"first_name\": \"Krystal\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-08-02T12:00:00+00:00\",\n                \"email\": \"autumnkrystalsmith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(770) 940-9350\",\n                    \"number_e164\": \"+17709409350\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39682,\n                    \"name\": \"Krystal Smith\",\n                    \"first_name\": \"Krystal\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-02T12:00:00+00:00\",\n                    \"email\": \"autumnkrystalsmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(770) 940-9350\",\n                        \"number_e164\": \"+17709409350\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 54927,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Autumn Smith\",\n                    \"first_name\": \"Autumn\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2016-12-29\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-08-02T12:00:00+00:00\",\n                    \"system_date\": \"2021-08-02T22:00:57+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 39682,\n                            \"values\": {\n                                \"family_id\": 61697,\n                                \"is_primary\": true,\n                                \"name\": \"Krystal Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/61697/guardians/39682\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 35325,\n                            \"values\": {\n                                \"child_id\": 54927\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/35325\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 61147,\n            \"center\": {\n                \"id\": 10,\n                \"values\": {\n                    \"name\": \"Creative World School Wesley Chapel\",\n                    \"code\": \"120 - Wesley Chapel\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/10\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-28T16:30:37+00:00\",\n            \"added_date\": \"2021-07-28T16:30:37+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 39337,\n                \"name\": \"Jolene Smith\",\n                \"first_name\": \"Jolene\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-28T12:00:00+00:00\",\n                \"email\": \"Shopitupjojo@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 808-2199\",\n                    \"number_e164\": \"+18138082199\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 10,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 160,\n                        \"values\": {\n                            \"value\": \"No Space Available\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39337,\n                    \"name\": \"Jolene Smith\",\n                    \"first_name\": \"Jolene\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-28T12:00:00+00:00\",\n                    \"email\": \"Shopitupjojo@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 808-2199\",\n                        \"number_e164\": \"+18138082199\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 10,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 160,\n                            \"values\": {\n                                \"value\": \"No Space Available\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 60932,\n            \"center\": {\n                \"id\": 13,\n                \"values\": {\n                    \"name\": \"Creative World Estero/Three Oaks\",\n                    \"code\": \"103 - Three Oaks\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/13\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-27T13:00:27+00:00\",\n            \"added_date\": \"2021-07-27T13:00:27+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello! I'm interested in learning more about this school/daycare for my 2 year old. We are interested in part time daycare; is that a possibility? Thank you! - Jen\",\n            \"primary_guardian\": {\n                \"id\": 39234,\n                \"name\": \"Jen Smith\",\n                \"first_name\": \"Jen\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-27T13:00:27+00:00\",\n                \"email\": \"jenniferedwardssmith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(509) 981-4629\",\n                    \"number_e164\": \"+15099814629\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 13,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39234,\n                    \"name\": \"Jen Smith\",\n                    \"first_name\": \"Jen\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-27T13:00:27+00:00\",\n                    \"email\": \"jenniferedwardssmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(509) 981-4629\",\n                        \"number_e164\": \"+15099814629\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 13,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 60859,\n            \"center\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Creative World Fishhawk\",\n                    \"code\": \"101 - Fishhawk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/6\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-26T19:33:55+00:00\",\n            \"added_date\": \"2021-07-26T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 39186,\n                \"name\": \"Tasia Smith\",\n                \"first_name\": \"Tasia\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-26T12:00:00+00:00\",\n                \"email\": \"tasiaveeney@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(423) 322-6266\",\n                    \"number_e164\": \"+14233226266\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39186,\n                    \"name\": \"Tasia Smith\",\n                    \"first_name\": \"Tasia\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-26T12:00:00+00:00\",\n                    \"email\": \"tasiaveeney@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(423) 322-6266\",\n                        \"number_e164\": \"+14233226266\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 6,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 54066,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-10\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 160,\n                            \"values\": {\n                                \"value\": \"No Space Available\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"vpk program filled\",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Zoe Smith\",\n                    \"first_name\": \"Zoe\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2017-02-09\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-26T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-26T19:34:31+00:00\",\n                    \"comments\": \"looking for full time vpk, called to see if wanted spot on 7/27\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 39186,\n                            \"values\": {\n                                \"family_id\": 60859,\n                                \"is_primary\": true,\n                                \"name\": \"Tasia Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/60859/guardians/39186\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 34632,\n                            \"values\": {\n                                \"child_id\": 54066\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/34632\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 60694,\n            \"center\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Creative World Riverview\",\n                    \"code\": \"105 - Rivercrest\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/7\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-25T17:26:10+00:00\",\n            \"added_date\": \"2021-07-25T17:26:10+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 39089,\n                \"name\": \"Samantha Smith\",\n                \"first_name\": \"Samantha\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-25T17:26:10+00:00\",\n                \"email\": \"samanthas954@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(954) 706-1615\",\n                    \"number_e164\": \"+19547061615\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 39089,\n                    \"name\": \"Samantha Smith\",\n                    \"first_name\": \"Samantha\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-25T17:26:10+00:00\",\n                    \"email\": \"samanthas954@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(954) 706-1615\",\n                        \"number_e164\": \"+19547061615\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 7,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 53908,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-01\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Ava Barrow\",\n                    \"first_name\": \"Ava\",\n                    \"last_name\": \"Barrow\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-05-15\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-25T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-25T17:26:10+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 39089,\n                            \"values\": {\n                                \"family_id\": 60694,\n                                \"is_primary\": true,\n                                \"name\": \"Samantha Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/60694/guardians/39089\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 34501,\n                            \"values\": {\n                                \"child_id\": 53908\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/34501\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 60431,\n            \"center\": {\n                \"id\": 25,\n                \"values\": {\n                    \"name\": \"Creative World Naples\",\n                    \"code\": \"127 - Naples\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/25\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-22T16:18:38+00:00\",\n            \"added_date\": \"2021-07-22T16:18:38+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38954,\n                \"name\": \"Lindsey Nesmith\",\n                \"first_name\": \"Lindsey\",\n                \"last_name\": \"Nesmith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-22T16:18:38+00:00\",\n                \"email\": \"LMKNesmith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(239) 825-1951\",\n                    \"number_e164\": \"+12398251951\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 25,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38954,\n                    \"name\": \"Lindsey Nesmith\",\n                    \"first_name\": \"Lindsey\",\n                    \"last_name\": \"Nesmith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-22T16:18:38+00:00\",\n                    \"email\": \"LMKNesmith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(239) 825-1951\",\n                        \"number_e164\": \"+12398251951\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 25,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 53635,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-09\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 160,\n                            \"values\": {\n                                \"value\": \"No Space Available\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/160\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Sylvie Nesmith\",\n                    \"first_name\": \"Sylvie\",\n                    \"last_name\": \"Nesmith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-07-21\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-22T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-22T16:18:38+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 38954,\n                            \"values\": {\n                                \"family_id\": 60431,\n                                \"is_primary\": true,\n                                \"name\": \"Lindsey Nesmith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/60431/guardians/38954\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 34282,\n                            \"values\": {\n                                \"child_id\": 53635\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/34282\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 60326,\n            \"center\": {\n                \"id\": 29,\n                \"values\": {\n                    \"name\": \"Creative World UCF/Orlando\",\n                    \"code\": \"130 - UCF\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/29\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-22T00:57:19+00:00\",\n            \"added_date\": \"2021-07-22T00:57:19+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38906,\n                \"name\": \"Meca Smith\",\n                \"first_name\": \"Meca\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-22T00:57:19+00:00\",\n                \"email\": \"Shemeca.smith@ucf.edu\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (340) 690-3544\",\n                    \"number_e164\": \"+13406903544\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 29,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38906,\n                    \"name\": \"Meca Smith\",\n                    \"first_name\": \"Meca\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-22T00:57:19+00:00\",\n                    \"email\": \"Shemeca.smith@ucf.edu\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"1 (340) 690-3544\",\n                        \"number_e164\": \"+13406903544\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 29,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 53583,\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Khaleesia Hughes\",\n                    \"first_name\": \"Khaleesia\",\n                    \"last_name\": \"Hughes\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-08-25\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-22T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-22T14:19:20+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 38906,\n                            \"values\": {\n                                \"family_id\": 60326,\n                                \"is_primary\": true,\n                                \"name\": \"Meca Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/60326/guardians/38906\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 34238,\n                            \"values\": {\n                                \"child_id\": 53583\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/34238\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 59795,\n            \"center\": {\n                \"id\": 8,\n                \"values\": {\n                    \"name\": \"Creative World Tampa Palms\",\n                    \"code\": \"123 - Tampa Palms\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/8\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-18T16:13:10+00:00\",\n            \"added_date\": \"2021-07-18T16:13:10+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Pricing for 6 months old, A 3 year old almost 4 and a 2 year old\",\n            \"primary_guardian\": {\n                \"id\": 38641,\n                \"name\": \"Makaylah Smith\",\n                \"first_name\": \"Makaylah\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-18T16:13:10+00:00\",\n                \"email\": \"Makaylahsmith01@icloud.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 410-6367\",\n                    \"number_e164\": \"+17274106367\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 8,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38641,\n                    \"name\": \"Makaylah Smith\",\n                    \"first_name\": \"Makaylah\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-18T16:13:10+00:00\",\n                    \"email\": \"Makaylahsmith01@icloud.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 410-6367\",\n                        \"number_e164\": \"+17274106367\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 8,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 59474,\n            \"center\": {\n                \"id\": 21,\n                \"values\": {\n                    \"name\": \"Creative World Belton\",\n                    \"code\": \"110 - Belton\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/21\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-10-07T16:32:16+00:00\",\n            \"created_date\": \"2021-07-15T04:10:34+00:00\",\n            \"added_date\": \"2021-07-15T04:10:34+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38464,\n                \"name\": \"Sean Smith\",\n                \"first_name\": \"Sean\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-14T13:00:00+00:00\",\n                \"email\": \"seanthetutor91@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"12321 Crystal Ave\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Grandview\",\n                    \"region\": \"MO\",\n                    \"postcode\": \"64030\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 785-3737\",\n                    \"number_e164\": \"+18167853737\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 785-3737\",\n                    \"number_e164\": \"+18167853737\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 21,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333001\",\n                        \"integration\": {\n                            \"id\": 21,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/21\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38464,\n                    \"name\": \"Sean Smith\",\n                    \"first_name\": \"Sean\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-14T13:00:00+00:00\",\n                    \"email\": \"seanthetutor91@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"12321 Crystal Ave\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Grandview\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64030\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 785-3737\",\n                        \"number_e164\": \"+18167853737\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 785-3737\",\n                        \"number_e164\": \"+18167853737\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 21,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333001\",\n                            \"integration\": {\n                                \"id\": 21,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/21\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 41895,\n                    \"name\": \"Brittani Plowright\",\n                    \"first_name\": \"Brittani\",\n                    \"last_name\": \"Plowright\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-09-10\",\n                    \"email\": \"brit.spame@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"12321 CRYSTAL AVE.\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"GRANDVIEW\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64030\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(816) 933-5070\",\n                        \"number_e164\": \"+18169335070\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 21,\n                    \"external_system_id\": \"\",\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(816) 933-5070\",\n                        \"number_e164\": \"+18169335070\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 58548,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-10-11\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-10-11\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-10-06T18:09:47+00:00\",\n                    \"name\": \"Isaiah Plowright\",\n                    \"first_name\": \"Isaiah\",\n                    \"last_name\": \"Plowright\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2017-06-21\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-09-08T13:00:00+00:00\",\n                    \"system_date\": \"2021-09-08T17:49:34+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 38464,\n                            \"values\": {\n                                \"family_id\": 59474,\n                                \"is_primary\": true,\n                                \"name\": \"Sean Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/59474/guardians/38464\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 37970,\n                            \"values\": {\n                                \"child_id\": 58548\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37970\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"334485\",\n                            \"integration\": {\n                                \"id\": 21,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/21\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 59156,\n            \"center\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Creative World Land O' Lakes\",\n                    \"code\": \"109 - Land O Lakes\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/11\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-13T02:48:56+00:00\",\n            \"added_date\": \"2021-07-13T02:48:56+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38284,\n                \"name\": \"Amber Smith\",\n                \"first_name\": \"Amber\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-13T02:48:56+00:00\",\n                \"email\": \"ambnicjeffries@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(317) 999-7843\",\n                    \"number_e164\": \"+13179997843\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 11,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38284,\n                    \"name\": \"Amber Smith\",\n                    \"first_name\": \"Amber\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-13T02:48:56+00:00\",\n                    \"email\": \"ambnicjeffries@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(317) 999-7843\",\n                        \"number_e164\": \"+13179997843\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 11,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 52241,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-08\",\n                        \"enrolled_reason\": {\n                            \"id\": 197,\n                            \"values\": {\n                                \"value\": \"Facilities\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/197\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-11\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Ellie Smith\",\n                    \"first_name\": \"Ellie\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-04-12\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-12T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-13T02:48:56+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 38284,\n                            \"values\": {\n                                \"family_id\": 59156,\n                                \"is_primary\": true,\n                                \"name\": \"Amber Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/59156/guardians/38284\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 33183,\n                            \"values\": {\n                                \"child_id\": 52241\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/33183\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 58910,\n            \"center\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Creative World St. Cloud\",\n                    \"code\": \"122 - St Cloud\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/3\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-10T02:46:22+00:00\",\n            \"added_date\": \"2021-07-10T02:46:22+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 808,\n                \"values\": {\n                    \"value\": \"Instagram\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/808\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38155,\n                \"name\": \"Megan Smith\",\n                \"first_name\": \"Megan\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-10T02:46:22+00:00\",\n                \"email\": \"meganasmith007@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(678) 675-2609\",\n                    \"number_e164\": \"+16786752609\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38155,\n                    \"name\": \"Megan Smith\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-10T02:46:22+00:00\",\n                    \"email\": \"meganasmith007@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(678) 675-2609\",\n                        \"number_e164\": \"+16786752609\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 58852,\n            \"center\": {\n                \"id\": 24,\n                \"values\": {\n                    \"name\": \"Creative World Noland\",\n                    \"code\": \"38 - Noland\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/24\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-07-09T16:47:45+00:00\",\n            \"created_date\": \"2021-07-09T16:47:43+00:00\",\n            \"added_date\": \"2021-07-09T16:47:43+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 38119,\n                \"name\": \"Kevin Smith\",\n                \"first_name\": \"Kevin\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-09T16:47:43+00:00\",\n                \"email\": \"smithboyy06@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"3352 Shady Bend Dr\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Independence\",\n                    \"region\": \"MO\",\n                    \"postcode\": \"64052\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 838-2603\",\n                    \"number_e164\": \"+18168382603\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 24,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"325434\",\n                        \"integration\": {\n                            \"id\": 24,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/24\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 38119,\n                    \"name\": \"Kevin Smith\",\n                    \"first_name\": \"Kevin\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-09T16:47:43+00:00\",\n                    \"email\": \"smithboyy06@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"3352 Shady Bend Dr\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Independence\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64052\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 838-2603\",\n                        \"number_e164\": \"+18168382603\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 24,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"325434\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 51994,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-27\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-27\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-07-09T16:47:45+00:00\",\n                    \"name\": \"Princess Smith\",\n                    \"first_name\": \"Princess\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-02-05\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-09T16:47:43+00:00\",\n                    \"system_date\": \"2021-07-09T16:47:43+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 38119,\n                            \"values\": {\n                                \"family_id\": 58852,\n                                \"is_primary\": true,\n                                \"name\": \"Kevin Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/58852/guardians/38119\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 32965,\n                            \"values\": {\n                                \"child_id\": 51994\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/32965\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"325435\",\n                            \"integration\": {\n                                \"id\": 24,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/24\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 58574,\n            \"center\": {\n                \"id\": 29,\n                \"values\": {\n                    \"name\": \"Creative World UCF/Orlando\",\n                    \"code\": \"130 - UCF\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/29\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-08-18T16:11:22+00:00\",\n            \"created_date\": \"2021-07-07T19:10:08+00:00\",\n            \"added_date\": \"2021-07-07T19:10:08+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 726,\n                \"values\": {\n                    \"value\": \"Google Ad\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/726\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Google PPC\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/12\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 12,\n                    \"values\": {\n                        \"name\": \"Google PPC\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/12\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"We are are wanting to tour your program for pre k\",\n            \"primary_guardian\": {\n                \"id\": 37960,\n                \"name\": \"Marlene Smith\",\n                \"first_name\": \"Marlene\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-10T20:05:08+00:00\",\n                \"email\": \"marleneartsandcrafts@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 618-9071\",\n                    \"number_e164\": \"+14076189071\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 29,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"332031\",\n                        \"integration\": {\n                            \"id\": 30,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/30\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37960,\n                    \"name\": \"Marlene Smith\",\n                    \"first_name\": \"Marlene\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-10T20:05:08+00:00\",\n                    \"email\": \"marleneartsandcrafts@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 618-9071\",\n                        \"number_e164\": \"+14076189071\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 29,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"332031\",\n                            \"integration\": {\n                                \"id\": 30,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/30\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 52060,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-09-26\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 52,\n                            \"values\": {\n                                \"value\": \"Another Center\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/52\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"Cypress Springs\",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-08-18T16:11:22+00:00\",\n                    \"name\": \"Lily Smith\",\n                    \"first_name\": \"Lily\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-01-19\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-11T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-12T00:44:52+00:00\",\n                    \"comments\": \"VPK only\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37960,\n                            \"values\": {\n                                \"family_id\": 58574,\n                                \"is_primary\": true,\n                                \"name\": \"Marlene Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/58574/guardians/37960\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 36232,\n                            \"values\": {\n                                \"child_id\": 52060\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/36232\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"332032\",\n                            \"integration\": {\n                                \"id\": 30,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/30\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": {\n                        \"id\": 749,\n                        \"values\": {\n                            \"value\": \"VPK Only\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/child/custom-1/749\",\n                                \"rel\": \"custom_type_1\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 58570,\n            \"center\": {\n                \"id\": 29,\n                \"values\": {\n                    \"name\": \"Creative World UCF/Orlando\",\n                    \"code\": \"130 - UCF\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/29\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-07-07T18:52:09+00:00\",\n            \"added_date\": \"2021-07-07T18:52:09+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 808,\n                \"values\": {\n                    \"value\": \"Instagram\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/808\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37956,\n                \"name\": \"Mercedes Smith\",\n                \"first_name\": \"Mercedes\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-07-07T18:52:09+00:00\",\n                \"email\": \"mercedeslevesque@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(941) 448-8972\",\n                    \"number_e164\": \"+19414488972\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 29,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37956,\n                    \"name\": \"Mercedes Smith\",\n                    \"first_name\": \"Mercedes\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-07-07T18:52:09+00:00\",\n                    \"email\": \"mercedeslevesque@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(941) 448-8972\",\n                        \"number_e164\": \"+19414488972\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 29,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 51713,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2022-07-05\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Baby Girl Smith\",\n                    \"first_name\": \"Baby Girl\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-12-27\",\n                    \"is_estimated_date_of_birth\": true,\n                    \"added_date\": \"2021-07-07T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-07T20:04:29+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37956,\n                            \"values\": {\n                                \"family_id\": 58570,\n                                \"is_primary\": true,\n                                \"name\": \"Mercedes Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/58570/guardians/37956\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 32802,\n                            \"values\": {\n                                \"child_id\": 51713\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/32802\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 57996,\n            \"center\": {\n                \"id\": 13,\n                \"values\": {\n                    \"name\": \"Creative World Estero/Three Oaks\",\n                    \"code\": \"103 - Three Oaks\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/13\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-30T12:58:43+00:00\",\n            \"created_date\": \"2021-06-30T12:55:14+00:00\",\n            \"added_date\": \"2021-06-30T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37633,\n                \"name\": \"Erin Smith\",\n                \"first_name\": \"Erin\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-30T12:00:00+00:00\",\n                \"email\": \"esmith2783@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"19091 Porto Nuevo Drive, Apt 101\",\n                    \"address2\": \"apt 101\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Fort Myers\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33967\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 484-3150\",\n                    \"number_e164\": \"+14074843150\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 443-4184\",\n                    \"number_e164\": \"+14074434184\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 13,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"333015\",\n                        \"integration\": {\n                            \"id\": 13,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/13\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37633,\n                    \"name\": \"Erin Smith\",\n                    \"first_name\": \"Erin\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-30T12:00:00+00:00\",\n                    \"email\": \"esmith2783@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"19091 Porto Nuevo Drive, Apt 101\",\n                        \"address2\": \"apt 101\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Fort Myers\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33967\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 484-3150\",\n                        \"number_e164\": \"+14074843150\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 443-4184\",\n                        \"number_e164\": \"+14074434184\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 13,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"333015\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 39952,\n                    \"name\": \"Sidney Smith\",\n                    \"first_name\": \"Sidney\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-08-05\",\n                    \"email\": \"ssmith2287@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"1 w new hamshire st\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"orlando\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"32804\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(407) 484-3150\",\n                        \"number_e164\": \"+14074843150\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 13,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(407) 484-3150\",\n                        \"number_e164\": \"+14074843150\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 51142,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-13\",\n                        \"enrolled_reason\": {\n                            \"id\": 328,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/328\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-22\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": \"2021-06-30\",\n                        \"wait_list_type\": {\n                            \"id\": 673,\n                            \"values\": {\n                                \"value\": \"Application Received\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/wait-list-types/673\",\n                                    \"rel\": \"wait_list_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"wait_list_priority\": {\n                            \"id\": 379,\n                            \"values\": {\n                                \"value\": \"3-Others\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/wait-list-priorities/379\",\n                                    \"rel\": \"wait_list_priority\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"wait_list_reason\": {\n                            \"id\": 737,\n                            \"values\": {\n                                \"value\": \"Other\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/wait-list/737\",\n                                    \"rel\": \"wait_list_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": \"$0.00\",\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": \"2021-06-30\",\n                        \"withdrawn_date\": \"2021-09-16\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-30T12:58:43+00:00\",\n                    \"name\": \"Sidney Smith\",\n                    \"first_name\": \"Sidney\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2018-10-04\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-30T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-30T12:55:58+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37633,\n                            \"values\": {\n                                \"family_id\": 57996,\n                                \"is_primary\": true,\n                                \"name\": \"Erin Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/57996/guardians/37633\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 32334,\n                            \"values\": {\n                                \"child_id\": 51142\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/32334\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"333016\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": true,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": true,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 57781,\n            \"center\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Creative World St. Cloud\",\n                    \"code\": \"122 - St Cloud\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/3\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-06-28T18:58:53+00:00\",\n            \"added_date\": \"2021-06-28T18:58:53+00:00\",\n            \"inquiry_type\": {\n                \"id\": 141,\n                \"values\": {\n                    \"value\": \"Walk In\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/141\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 783,\n                \"values\": {\n                    \"value\": \"Kiosk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/783\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Walk In Tour (Kiosk)\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/2\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Walk In Tour (Kiosk)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/2\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37514,\n                \"name\": \"Nordia Smith \",\n                \"first_name\": \"Nordia\",\n                \"last_name\": \"Smith \",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:58:53+00:00\",\n                \"email\": \"Nrd_smith@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(954) 536-4835\",\n                    \"number_e164\": \"+19545364835\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37514,\n                    \"name\": \"Nordia Smith \",\n                    \"first_name\": \"Nordia\",\n                    \"last_name\": \"Smith \",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-28T18:58:53+00:00\",\n                    \"email\": \"Nrd_smith@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(954) 536-4835\",\n                        \"number_e164\": \"+19545364835\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50922,\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Mylez Taylor\",\n                    \"first_name\": \"Mylez\",\n                    \"last_name\": \"Taylor\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-01-01\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-28T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-28T18:58:53+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37514,\n                            \"values\": {\n                                \"family_id\": 57781,\n                                \"is_primary\": true,\n                                \"name\": \"Nordia Smith \",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/57781/guardians/37514\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 32149,\n                            \"values\": {\n                                \"child_id\": 50922\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/32149\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 57657,\n            \"center\": {\n                \"id\": 19,\n                \"values\": {\n                    \"name\": \"Creative World Liberty\",\n                    \"code\": \"100 - Liberty\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/19\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-06-26T18:00:26+00:00\",\n            \"added_date\": \"2021-06-26T18:00:26+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37444,\n                \"name\": \"Joshua Smith\",\n                \"first_name\": \"Joshua\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-26T18:00:26+00:00\",\n                \"email\": \"Jsmi1606@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 407-9125\",\n                    \"number_e164\": \"+18164079125\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 19,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37444,\n                    \"name\": \"Joshua Smith\",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-26T18:00:26+00:00\",\n                    \"email\": \"Jsmi1606@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 407-9125\",\n                        \"number_e164\": \"+18164079125\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 19,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56853,\n            \"center\": {\n                \"id\": 8,\n                \"values\": {\n                    \"name\": \"Creative World Tampa Palms\",\n                    \"code\": \"123 - Tampa Palms\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/8\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-22T14:23:04+00:00\",\n            \"created_date\": \"2021-06-21T11:25:28+00:00\",\n            \"added_date\": \"2021-06-21T11:25:28+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37117,\n                \"name\": \"Zuleika Smith\",\n                \"first_name\": \"Zuleika\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-21T11:25:28+00:00\",\n                \"email\": \"bzsmithfamily@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 520-3328\",\n                    \"number_e164\": \"+18135203328\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 8,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326816\",\n                        \"integration\": {\n                            \"id\": 8,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/8\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37117,\n                    \"name\": \"Zuleika Smith\",\n                    \"first_name\": \"Zuleika\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-21T11:25:28+00:00\",\n                    \"email\": \"bzsmithfamily@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 520-3328\",\n                        \"number_e164\": \"+18135203328\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 8,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326816\",\n                            \"integration\": {\n                                \"id\": 8,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/8\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50350,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-05\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-02\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-11-09\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-22T14:23:04+00:00\",\n                    \"name\": \"Benjamin Smith\",\n                    \"first_name\": \"Benjamin\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-04-14\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-22T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-22T14:22:54+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37117,\n                            \"values\": {\n                                \"family_id\": 56853,\n                                \"is_primary\": true,\n                                \"name\": \"Zuleika Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56853/guardians/37117\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31640,\n                            \"values\": {\n                                \"child_id\": 50350\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31640\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326817\",\n                            \"integration\": {\n                                \"id\": 8,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/8\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56798,\n            \"center\": {\n                \"id\": 21,\n                \"values\": {\n                    \"name\": \"Creative World Belton\",\n                    \"code\": \"110 - Belton\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/21\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-07-16T19:04:17+00:00\",\n            \"created_date\": \"2021-06-18T21:56:59+00:00\",\n            \"added_date\": \"2021-06-18T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37074,\n                \"name\": \"Monique Smith\",\n                \"first_name\": \"Monique\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-18T13:00:00+00:00\",\n                \"email\": \"moniquesmith19958@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"13214 Lowell Ave\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Grandview\",\n                    \"region\": \"MO\",\n                    \"postcode\": \"64086\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 591-9943\",\n                    \"number_e164\": \"+18165919943\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 21,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326602\",\n                        \"integration\": {\n                            \"id\": 21,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/21\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37074,\n                    \"name\": \"Monique Smith\",\n                    \"first_name\": \"Monique\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-18T13:00:00+00:00\",\n                    \"email\": \"moniquesmith19958@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"13214 Lowell Ave\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Grandview\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64086\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 591-9943\",\n                        \"number_e164\": \"+18165919943\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 21,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326602\",\n                            \"integration\": {\n                                \"id\": 21,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/21\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 50150,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-07-06\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-07-12\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-11-23\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-07-02T17:08:18+00:00\",\n                    \"name\": \"Moses Smith\",\n                    \"first_name\": \"Moses\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-05-30\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-18T13:00:00+00:00\",\n                    \"system_date\": \"2021-06-18T21:59:03+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37074,\n                            \"values\": {\n                                \"family_id\": 56798,\n                                \"is_primary\": true,\n                                \"name\": \"Monique Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56798/guardians/37074\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31464,\n                            \"values\": {\n                                \"child_id\": 50150\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31464\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"327563\",\n                            \"integration\": {\n                                \"id\": 21,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/21\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56747,\n            \"center\": {\n                \"id\": 27,\n                \"values\": {\n                    \"name\": \"Creative World Leander\",\n                    \"code\": \"128 - Leander\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/27\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-18T15:13:44+00:00\",\n            \"created_date\": \"2021-06-18T15:13:44+00:00\",\n            \"added_date\": \"2021-06-18T15:13:44+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37046,\n                \"name\": \"Jilian Smith\",\n                \"first_name\": \"Jilian\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-18T15:13:44+00:00\",\n                \"email\": \"bealjilian@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(512) 988-0241\",\n                    \"number_e164\": \"+15129880241\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 27,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326550\",\n                        \"integration\": {\n                            \"id\": 28,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/28\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37046,\n                    \"name\": \"Jilian Smith\",\n                    \"first_name\": \"Jilian\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-18T15:13:44+00:00\",\n                    \"email\": \"bealjilian@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(512) 988-0241\",\n                        \"number_e164\": \"+15129880241\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 27,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326550\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50112,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-18\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-18T15:13:44+00:00\",\n                    \"name\": \"Cheyenne Smith\",\n                    \"first_name\": \"Cheyenne\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-01-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-18T15:13:44+00:00\",\n                    \"system_date\": \"2021-06-18T15:13:44+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37046,\n                            \"values\": {\n                                \"family_id\": 56747,\n                                \"is_primary\": true,\n                                \"name\": \"Jilian Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56747/guardians/37046\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31404,\n                            \"values\": {\n                                \"child_id\": 50112\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31404\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326552\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56679,\n            \"center\": {\n                \"id\": 13,\n                \"values\": {\n                    \"name\": \"Creative World Estero/Three Oaks\",\n                    \"code\": \"103 - Three Oaks\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/13\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-17T19:29:24+00:00\",\n            \"created_date\": \"2021-06-17T19:29:24+00:00\",\n            \"added_date\": \"2021-06-17T19:29:24+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 37004,\n                \"name\": \"Fabiane Goldsmith\",\n                \"first_name\": \"Fabiane\",\n                \"last_name\": \"Goldsmith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-17T19:29:24+00:00\",\n                \"email\": \"fabianegama52@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"17580 Kinzie lane\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Estero\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33928\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(725) 502-6794\",\n                    \"number_e164\": \"+17255026794\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 13,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"319230\",\n                        \"integration\": {\n                            \"id\": 13,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/13\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 37004,\n                    \"name\": \"Fabiane Goldsmith\",\n                    \"first_name\": \"Fabiane\",\n                    \"last_name\": \"Goldsmith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-17T19:29:24+00:00\",\n                    \"email\": \"fabianegama52@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"17580 Kinzie lane\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Estero\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33928\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(725) 502-6794\",\n                        \"number_e164\": \"+17255026794\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 13,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"319230\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50036,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-21\",\n                        \"enrolled_reason\": {\n                            \"id\": 328,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/328\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-08-09\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-17T19:29:24+00:00\",\n                    \"name\": \"Gracie Goldsmith\",\n                    \"first_name\": \"Gracie\",\n                    \"last_name\": \"Goldsmith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2016-11-11\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-17T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-17T19:29:24+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 37004,\n                            \"values\": {\n                                \"family_id\": 56679,\n                                \"is_primary\": true,\n                                \"name\": \"Fabiane Goldsmith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56679/guardians/37004\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31333,\n                            \"values\": {\n                                \"child_id\": 50036\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31333\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"319233\",\n                            \"integration\": {\n                                \"id\": 13,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/13\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56196,\n            \"center\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Creative World Land O' Lakes\",\n                    \"code\": \"109 - Land O Lakes\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/11\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-14T18:11:42+00:00\",\n            \"created_date\": \"2021-06-14T18:11:42+00:00\",\n            \"added_date\": \"2021-06-14T18:11:42+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 36769,\n                \"name\": \"Marlayna Smith\",\n                \"first_name\": \"Marlayna\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-14T18:11:42+00:00\",\n                \"email\": \"marlaynarowe@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(910) 546-4274\",\n                    \"number_e164\": \"+19105464274\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 11,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"323394\",\n                        \"integration\": {\n                            \"id\": 11,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/11\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36769,\n                    \"name\": \"Marlayna Smith\",\n                    \"first_name\": \"Marlayna\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-14T18:11:42+00:00\",\n                    \"email\": \"marlaynarowe@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(910) 546-4274\",\n                        \"number_e164\": \"+19105464274\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 11,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"323394\",\n                            \"integration\": {\n                                \"id\": 11,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/11\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 49526,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-09-07\",\n                        \"enrolled_reason\": {\n                            \"id\": 48,\n                            \"values\": {\n                                \"value\": \"Curriculum\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/48\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-14T18:11:42+00:00\",\n                    \"name\": \"Hazel Smith\",\n                    \"first_name\": \"Hazel\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-07-17\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-14T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-14T18:11:42+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36769,\n                            \"values\": {\n                                \"family_id\": 56196,\n                                \"is_primary\": true,\n                                \"name\": \"Marlayna Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56196/guardians/36769\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 30903,\n                            \"values\": {\n                                \"child_id\": 49526\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/30903\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"323396\",\n                            \"integration\": {\n                                \"id\": 11,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/11\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 56023,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-06-11T20:36:56+00:00\",\n            \"added_date\": \"2021-06-11T20:36:56+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 377,\n                \"values\": {\n                    \"value\": \"Referral-Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/377\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello, I am curious about your infant class pricing. \",\n            \"primary_guardian\": {\n                \"id\": 36657,\n                \"name\": \"Megan Smith\",\n                \"first_name\": \"Megan\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-11T20:36:56+00:00\",\n                \"email\": \"Mandrews1794@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(404) 661-9253\",\n                    \"number_e164\": \"+14046619253\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36657,\n                    \"name\": \"Megan Smith\",\n                    \"first_name\": \"Megan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-11T20:36:56+00:00\",\n                    \"email\": \"Mandrews1794@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(404) 661-9253\",\n                        \"number_e164\": \"+14046619253\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 49315,\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Nichay Smith\",\n                    \"first_name\": \"Nichay\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-03-23\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-11T20:36:56+00:00\",\n                    \"system_date\": \"2021-06-11T21:44:30+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36657,\n                            \"values\": {\n                                \"family_id\": 56023,\n                                \"is_primary\": true,\n                                \"name\": \"Megan Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/56023/guardians/36657\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 30732,\n                            \"values\": {\n                                \"child_id\": 49315\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/30732\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 55973,\n            \"center\": {\n                \"id\": 27,\n                \"values\": {\n                    \"name\": \"Creative World Leander\",\n                    \"code\": \"128 - Leander\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/27\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-18T15:10:25+00:00\",\n            \"created_date\": \"2021-06-11T16:44:47+00:00\",\n            \"added_date\": \"2021-06-11T16:44:47+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking for full time starting soon!\\n6/11 - called looking to speak with Amy regarding Cheyenne\\\\\\\\'s enrollment, hopefully in the next two weeks. Has previous childcare experience but she would rather speak to Amy about it\\n6/14/21: spk to mom and scheduled tour for 6/15/21 @ 1030 for a 2 y/o-AE\\n6/15/21: called for closure info, sent-AE\\n\\n\\n\",\n            \"primary_guardian\": {\n                \"id\": 36634,\n                \"name\": \"Brandon Smith\",\n                \"first_name\": \"Brandon\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-11T13:00:00+00:00\",\n                \"email\": \"brandonsmith2385@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"117 Dunlin Ln\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Leander\",\n                    \"region\": \"TX\",\n                    \"postcode\": \"78641\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 27,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326553\",\n                        \"integration\": {\n                            \"id\": 28,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/28\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36634,\n                    \"name\": \"Brandon Smith\",\n                    \"first_name\": \"Brandon\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-11T13:00:00+00:00\",\n                    \"email\": \"brandonsmith2385@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"117 Dunlin Ln\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Leander\",\n                        \"region\": \"TX\",\n                        \"postcode\": \"78641\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": null,\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 27,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326553\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50106,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-23\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-21\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-09-01\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-18T15:10:25+00:00\",\n                    \"name\": \"Audriana Pena\",\n                    \"first_name\": \"Audriana\",\n                    \"last_name\": \"Pena\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2013-06-21\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-18T13:00:00+00:00\",\n                    \"system_date\": \"2021-06-18T15:09:01+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36634,\n                            \"values\": {\n                                \"family_id\": 55973,\n                                \"is_primary\": true,\n                                \"name\": \"Brandon Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/55973/guardians/36634\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31401,\n                            \"values\": {\n                                \"child_id\": 50106\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31401\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": 37153,\n                            \"values\": {\n                                \"child_id\": 50106\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/37153\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326551\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 50108,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-18\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-21\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-18T15:10:47+00:00\",\n                    \"name\": \"Cheyenne Smith\",\n                    \"first_name\": \"Cheyenne\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2019-01-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-18T13:00:00+00:00\",\n                    \"system_date\": \"2021-06-18T15:09:18+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36634,\n                            \"values\": {\n                                \"family_id\": 55973,\n                                \"is_primary\": true,\n                                \"name\": \"Brandon Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/55973/guardians/36634\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31403,\n                            \"values\": {\n                                \"child_id\": 50108\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31403\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326552\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 55910,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-15T16:02:18+00:00\",\n            \"created_date\": \"2021-06-10T22:12:43+00:00\",\n            \"added_date\": \"2021-06-10T22:12:43+00:00\",\n            \"inquiry_type\": {\n                \"id\": 141,\n                \"values\": {\n                    \"value\": \"Walk In\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/141\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 783,\n                \"values\": {\n                    \"value\": \"Kiosk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/783\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Walk In Tour (Kiosk)\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/2\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Walk In Tour (Kiosk)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/2\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 36600,\n                \"name\": \"Karla Smith\",\n                \"first_name\": \"Karla\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-10T12:00:00+00:00\",\n                \"email\": \"Karla.kariminfo@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"1217 Creek Forest Lane\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Austell\",\n                    \"region\": \"GA\",\n                    \"postcode\": \"30106\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(404) 831-4490\",\n                    \"number_e164\": \"+14048314490\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326303\",\n                        \"integration\": {\n                            \"id\": 27,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/27\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36600,\n                    \"name\": \"Karla Smith\",\n                    \"first_name\": \"Karla\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-10T12:00:00+00:00\",\n                    \"email\": \"Karla.kariminfo@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"1217 Creek Forest Lane\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Austell\",\n                        \"region\": \"GA\",\n                        \"postcode\": \"30106\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(404) 831-4490\",\n                        \"number_e164\": \"+14048314490\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326303\",\n                            \"integration\": {\n                                \"id\": 27,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/27\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 49172,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-27\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-28\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-08-03\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-15T16:02:18+00:00\",\n                    \"name\": \"Five j Smith\",\n                    \"first_name\": \"Five j\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2020-04-23\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-10T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-10T22:12:43+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36600,\n                            \"values\": {\n                                \"family_id\": 55910,\n                                \"is_primary\": true,\n                                \"name\": \"Karla Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/55910/guardians/36600\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 30646,\n                            \"values\": {\n                                \"child_id\": 49172\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/30646\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326304\",\n                            \"integration\": {\n                                \"id\": 27,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/27\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 55599,\n            \"center\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Creative World Cypress Springs\",\n                    \"code\": \"118 - Cypress Spring\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/2\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-06-08T19:48:47+00:00\",\n            \"added_date\": \"2021-06-08T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 36449,\n                \"name\": \"Brandon Smith\",\n                \"first_name\": \"Brandon\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-08T12:00:00+00:00\",\n                \"email\": \"goducks15@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(971) 218-4927\",\n                    \"number_e164\": \"+19712184927\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36449,\n                    \"name\": \"Brandon Smith\",\n                    \"first_name\": \"Brandon\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-08T12:00:00+00:00\",\n                    \"email\": \"goducks15@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(971) 218-4927\",\n                        \"number_e164\": \"+19712184927\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 2,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 55593,\n            \"center\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Creative World Apollo Beach\",\n                    \"code\": \"104 - Apollo Beach\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/12\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-07-20T15:02:55+00:00\",\n            \"created_date\": \"2021-06-08T19:09:27+00:00\",\n            \"added_date\": \"2021-06-08T19:09:27+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Summer Camp\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/18\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 18,\n                    \"values\": {\n                        \"name\": \"Summer Camp\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/18\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 36446,\n                \"name\": \"Kiara Smith\",\n                \"first_name\": \"Kiara\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-08T12:00:00+00:00\",\n                \"email\": \"kiaracheyenne91@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(937) 432-7427\",\n                    \"number_e164\": \"+19374327427\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 12,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326030\",\n                        \"integration\": {\n                            \"id\": 12,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/12\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36446,\n                    \"name\": \"Kiara Smith\",\n                    \"first_name\": \"Kiara\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-08T12:00:00+00:00\",\n                    \"email\": \"kiaracheyenne91@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(937) 432-7427\",\n                        \"number_e164\": \"+19374327427\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 12,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326030\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 49300,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-15\",\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-13\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-07-20\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Kyren Smith\",\n                    \"first_name\": \"Kyren\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2015-11-20\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-11T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-11T20:01:55+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36446,\n                            \"values\": {\n                                \"family_id\": 55593,\n                                \"is_primary\": true,\n                                \"name\": \"Kiara Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/55593/guardians/36446\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 30717,\n                            \"values\": {\n                                \"child_id\": 49300\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/30717\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 53243,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-11\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-11\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-10-19\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-07-20T15:02:55+00:00\",\n                    \"name\": \"Kyren Huckleby\",\n                    \"first_name\": \"Kyren\",\n                    \"last_name\": \"Huckleby\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2015-11-20\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-20T15:02:55+00:00\",\n                    \"system_date\": \"2021-07-20T15:02:55+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 36446,\n                            \"values\": {\n                                \"family_id\": 55593,\n                                \"is_primary\": true,\n                                \"name\": \"Kiara Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/55593/guardians/36446\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 33926,\n                            \"values\": {\n                                \"child_id\": 53243\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/33926\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326050\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 55222,\n            \"center\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"Creative World Oviedo\",\n                    \"code\": \"124 - Oviedo\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/1\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-06-04T00:07:05+00:00\",\n            \"added_date\": \"2021-06-04T00:07:05+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I was interested to find out if you offer a VPK program for the fall and if there is availability. What are the weekly fees for a part time program? Thank you! If you could please email me the information, I would appreciate it.\",\n            \"primary_guardian\": {\n                \"id\": 36228,\n                \"name\": \"Sharolyn Smith\",\n                \"first_name\": \"Sharolyn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-04T00:07:05+00:00\",\n                \"email\": \"SiSmith0717@aol.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 967-9086\",\n                    \"number_e164\": \"+14079679086\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 36228,\n                    \"name\": \"Sharolyn Smith\",\n                    \"first_name\": \"Sharolyn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-04T00:07:05+00:00\",\n                    \"email\": \"SiSmith0717@aol.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 967-9086\",\n                        \"number_e164\": \"+14079679086\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 1,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 54774,\n            \"center\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Creative World Apollo Beach\",\n                    \"code\": \"104 - Apollo Beach\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/12\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-07-20T15:02:52+00:00\",\n            \"created_date\": \"2021-06-01T13:47:58+00:00\",\n            \"added_date\": \"2021-06-01T13:47:58+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 377,\n                \"values\": {\n                    \"value\": \"Referral-Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/377\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"We have a new foster baby and need to get him in as soon as possible so we can work. I have a flexible work schedule, but day care is needed\",\n            \"primary_guardian\": {\n                \"id\": 35990,\n                \"name\": \"Brittany Smith\",\n                \"first_name\": \"Brittany\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-01T13:47:58+00:00\",\n                \"email\": \"brittanysmithmail@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 515-0999\",\n                    \"number_e164\": \"+17275150999\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Foster Parent\",\n                \"child_relation\": {\n                    \"id\": 768,\n                    \"values\": {\n                        \"value\": \"Foster Parent\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/families/relationships/768\",\n                            \"rel\": \"child_relation\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"center_id\": 12,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"325623\",\n                        \"integration\": {\n                            \"id\": 12,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/12\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35990,\n                    \"name\": \"Brittany Smith\",\n                    \"first_name\": \"Brittany\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-06-01T13:47:58+00:00\",\n                    \"email\": \"brittanysmithmail@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 515-0999\",\n                        \"number_e164\": \"+17275150999\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": \"Foster Parent\",\n                    \"child_relation\": {\n                        \"id\": 768,\n                        \"values\": {\n                            \"value\": \"Foster Parent\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/families/relationships/768\",\n                                \"rel\": \"child_relation\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"center_id\": 12,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"325623\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 49902,\n                    \"status\": {\n                        \"id\": 10,\n                        \"values\": {\n                            \"name\": \"To Be Deleted\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/10\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": {\n                            \"id\": 326,\n                            \"values\": {\n                                \"value\": \"Duplicate Lead/Child\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/rejected/326\",\n                                    \"rel\": \"rejected_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": \"2021-06-16\",\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": {\n                            \"id\": 794,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/wait-list/794\",\n                                    \"rel\": \"wait_list_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": \"$0.00\",\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": \"2021-06-16\",\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Xander Smith\",\n                    \"first_name\": \"Xander\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-05-02\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-16T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-16T18:41:45+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35990,\n                            \"values\": {\n                                \"family_id\": 54774,\n                                \"is_primary\": true,\n                                \"name\": \"Brittany Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/54774/guardians/35990\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31228,\n                            \"values\": {\n                                \"child_id\": 49902\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31228\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 53240,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-08\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-07\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-07-20T15:02:52+00:00\",\n                    \"name\": \"Xander Rodriguez\",\n                    \"first_name\": \"Xander\",\n                    \"last_name\": \"Rodriguez\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-05-02\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-07-20T12:00:00+00:00\",\n                    \"system_date\": \"2021-07-20T15:02:52+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35990,\n                            \"values\": {\n                                \"family_id\": 54774,\n                                \"is_primary\": true,\n                                \"name\": \"Brittany Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/54774/guardians/35990\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 33923,\n                            \"values\": {\n                                \"child_id\": 53240\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/33923\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"325626\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53412,\n            \"center\": {\n                \"id\": 15,\n                \"values\": {\n                    \"name\": \"Creative World School at Preschool At The Lamb\",\n                    \"code\": \"102 - PS@Lamb\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/15\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-18T13:08:31+00:00\",\n            \"created_date\": \"2021-05-18T13:08:31+00:00\",\n            \"added_date\": \"2021-05-18T13:08:31+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 35253,\n                \"name\": \"Robert Goldsmith\",\n                \"first_name\": \"Robert\",\n                \"last_name\": \"Goldsmith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-18T13:08:31+00:00\",\n                \"email\": \"robsellshomes@aol.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"17580 Kinzie Lane\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Estero\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33990\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(239) 292-1368\",\n                    \"number_e164\": \"+12392921368\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 15,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"319229\",\n                        \"integration\": {\n                            \"id\": 15,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/15\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35253,\n                    \"name\": \"Robert Goldsmith\",\n                    \"first_name\": \"Robert\",\n                    \"last_name\": \"Goldsmith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-18T13:08:31+00:00\",\n                    \"email\": \"robsellshomes@aol.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"17580 Kinzie Lane\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Estero\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33990\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(239) 292-1368\",\n                        \"number_e164\": \"+12392921368\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 15,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"319229\",\n                            \"integration\": {\n                                \"id\": 15,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/15\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 46809,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-06\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-21\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-18T13:08:31+00:00\",\n                    \"name\": \"Gracie Goldsmith\",\n                    \"first_name\": \"Gracie\",\n                    \"last_name\": \"Goldsmith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2016-11-11\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-18T13:08:31+00:00\",\n                    \"system_date\": \"2021-05-18T13:08:31+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35253,\n                            \"values\": {\n                                \"family_id\": 53412,\n                                \"is_primary\": true,\n                                \"name\": \"Robert Goldsmith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/53412/guardians/35253\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28584,\n                            \"values\": {\n                                \"child_id\": 46809\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28584\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"319233\",\n                            \"integration\": {\n                                \"id\": 15,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/15\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53409,\n            \"center\": {\n                \"id\": 14,\n                \"values\": {\n                    \"name\": \"Creative World Gateway\",\n                    \"code\": \"125 - Gateway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/14\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-18T13:07:27+00:00\",\n            \"created_date\": \"2021-05-18T13:07:27+00:00\",\n            \"added_date\": \"2021-05-18T13:07:27+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 35251,\n                \"name\": \"Ginalyn Smith\",\n                \"first_name\": \"Ginalyn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-18T13:07:27+00:00\",\n                \"email\": \"Gtp.smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(314) 856-5753\",\n                    \"number_e164\": \"+13148565753\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 14,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"319350\",\n                        \"integration\": {\n                            \"id\": 14,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/14\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35251,\n                    \"name\": \"Ginalyn Smith\",\n                    \"first_name\": \"Ginalyn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-18T13:07:27+00:00\",\n                    \"email\": \"Gtp.smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(314) 856-5753\",\n                        \"number_e164\": \"+13148565753\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 14,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"319350\",\n                            \"integration\": {\n                                \"id\": 14,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/14\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 46807,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-15\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-15\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-18T13:07:27+00:00\",\n                    \"name\": \"Joshua Smith\",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-06-11\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-18T13:07:27+00:00\",\n                    \"system_date\": \"2021-05-18T13:07:27+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35251,\n                            \"values\": {\n                                \"family_id\": 53409,\n                                \"is_primary\": true,\n                                \"name\": \"Ginalyn Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/53409/guardians/35251\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28581,\n                            \"values\": {\n                                \"child_id\": 46807\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28581\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"319351\",\n                            \"integration\": {\n                                \"id\": 14,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/14\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53360,\n            \"center\": {\n                \"id\": 27,\n                \"values\": {\n                    \"name\": \"Creative World Leander\",\n                    \"code\": \"128 - Leander\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/27\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-17T21:37:54+00:00\",\n            \"created_date\": \"2021-05-17T21:37:53+00:00\",\n            \"added_date\": \"2021-05-17T21:37:53+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Live Event\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/16\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 35221,\n                \"name\": \"Taylor Smith\",\n                \"first_name\": \"Taylor\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-17T21:37:53+00:00\",\n                \"email\": \"taylorsmith9633@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"306 Mills St\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Smithville\",\n                    \"region\": \"TX\",\n                    \"postcode\": \"78957\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(512) 409-6688\",\n                    \"number_e164\": \"+15124096688\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 27,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"322795\",\n                        \"integration\": {\n                            \"id\": 28,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/28\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35221,\n                    \"name\": \"Taylor Smith\",\n                    \"first_name\": \"Taylor\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-17T21:37:53+00:00\",\n                    \"email\": \"taylorsmith9633@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"306 Mills St\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Smithville\",\n                        \"region\": \"TX\",\n                        \"postcode\": \"78957\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(512) 409-6688\",\n                        \"number_e164\": \"+15124096688\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 27,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"322795\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 46777,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-05-10\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-05-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-17T21:37:54+00:00\",\n                    \"name\": \"Beatrice Smith\",\n                    \"first_name\": \"Beatrice\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2020-05-15\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-17T21:37:53+00:00\",\n                    \"system_date\": \"2021-05-17T21:37:53+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35221,\n                            \"values\": {\n                                \"family_id\": 53360,\n                                \"is_primary\": true,\n                                \"name\": \"Taylor Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/53360/guardians/35221\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28552,\n                            \"values\": {\n                                \"child_id\": 46777\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28552\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"322898\",\n                            \"integration\": {\n                                \"id\": 28,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/28\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53344,\n            \"center\": {\n                \"id\": 20,\n                \"values\": {\n                    \"name\": \"Creative World Countryside/Blue Springs\",\n                    \"code\": \"111 - Countryside\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/20\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-17T21:31:13+00:00\",\n            \"created_date\": \"2021-05-17T21:31:13+00:00\",\n            \"added_date\": \"2021-05-17T21:31:13+00:00\",\n            \"inquiry_type\": {\n                \"id\": 347,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/347\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 807,\n                \"values\": {\n                    \"value\": \"Integration\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/807\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 35206,\n                \"name\": \"Savannah Smith\",\n                \"first_name\": \"Savannah\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-17T21:31:13+00:00\",\n                \"email\": \"haydensmama2014@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"9808 Belmont Ave\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Kansas City\",\n                    \"region\": \"MO\",\n                    \"postcode\": \"64134\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 457-0894\",\n                    \"number_e164\": \"+18164570894\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 20,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"319589\",\n                        \"integration\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/20\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35206,\n                    \"name\": \"Savannah Smith\",\n                    \"first_name\": \"Savannah\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-17T21:31:13+00:00\",\n                    \"email\": \"haydensmama2014@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"9808 Belmont Ave\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Kansas City\",\n                        \"region\": \"MO\",\n                        \"postcode\": \"64134\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 457-0894\",\n                        \"number_e164\": \"+18164570894\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 20,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"319589\",\n                            \"integration\": {\n                                \"id\": 20,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/20\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 46746,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-04-18\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-06-16\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-17T21:31:13+00:00\",\n                    \"name\": \"Ryland Bailey\",\n                    \"first_name\": \"Ryland\",\n                    \"last_name\": \"Bailey\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2016-11-22\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-17T21:31:13+00:00\",\n                    \"system_date\": \"2021-05-17T21:31:13+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35206,\n                            \"values\": {\n                                \"family_id\": 53344,\n                                \"is_primary\": true,\n                                \"name\": \"Savannah Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/53344/guardians/35206\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28514,\n                            \"values\": {\n                                \"child_id\": 46746\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28514\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"319590\",\n                            \"integration\": {\n                                \"id\": 20,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/20\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53305,\n            \"center\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Creative World St. Cloud\",\n                    \"code\": \"122 - St Cloud\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/3\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-05-17T19:07:53+00:00\",\n            \"added_date\": \"2021-05-17T19:07:53+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I would like info about full-time and part-time prices for one 2-year old. Thanks.  CLD/Email sent answered questions and offered tour. 5/17\",\n            \"primary_guardian\": {\n                \"id\": 35179,\n                \"name\": \"Sabrina Smith\",\n                \"first_name\": \"Sabrina\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-17T12:00:00+00:00\",\n                \"email\": \"Sabrina.gr.smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 840-3282\",\n                    \"number_e164\": \"+14078403282\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35179,\n                    \"name\": \"Sabrina Smith\",\n                    \"first_name\": \"Sabrina\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-17T12:00:00+00:00\",\n                    \"email\": \"Sabrina.gr.smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 840-3282\",\n                        \"number_e164\": \"+14078403282\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 53081,\n            \"center\": {\n                \"id\": 27,\n                \"values\": {\n                    \"name\": \"Creative World Leander\",\n                    \"code\": \"128 - Leander\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/27\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-05-14T20:28:43+00:00\",\n            \"added_date\": \"2021-05-14T13:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Request Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/3\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Request Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/3\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 16,\n                    \"values\": {\n                        \"name\": \"Live Event\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/16\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 18,\n                    \"values\": {\n                        \"name\": \"Summer Camp\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/18\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"5/14/21: Mom called in and spk to Mckenzie for availability for child DOB 7/25/18-2.5 y/o August. unable to come to open house, sent em withj info-AE\\n5/17/21: mom called back and sched tour for Tues 5/18/21 at 230-AE\\n5/24/21: sent follow up text-AE\\n5/25/21: mom repkied they are not moving forward with us-AE\",\n            \"primary_guardian\": {\n                \"id\": 35065,\n                \"name\": \"Katherine Smith\",\n                \"first_name\": \"Katherine\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-14T13:00:00+00:00\",\n                \"email\": \"nursekmd@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(312) 339-5400\",\n                    \"number_e164\": \"+13123395400\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 27,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 52,\n                        \"values\": {\n                            \"value\": \"Another Center\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/52\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35065,\n                    \"name\": \"Katherine Smith\",\n                    \"first_name\": \"Katherine\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-14T13:00:00+00:00\",\n                    \"email\": \"nursekmd@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(312) 339-5400\",\n                        \"number_e164\": \"+13123395400\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 27,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 52,\n                            \"values\": {\n                                \"value\": \"Another Center\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/52\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 52984,\n            \"center\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Creative World Land O' Lakes\",\n                    \"code\": \"109 - Land O Lakes\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/11\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-01T15:33:22+00:00\",\n            \"created_date\": \"2021-05-13T22:25:59+00:00\",\n            \"added_date\": \"2021-05-13T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 35018,\n                \"name\": \"Marlayna Smith\",\n                \"first_name\": \"Marlayna\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-13T12:00:00+00:00\",\n                \"email\": \"marlaynarowe@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(910) 546-4274\",\n                    \"number_e164\": \"+19105464274\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Mother\",\n                \"child_relation\": {\n                    \"id\": 22,\n                    \"values\": {\n                        \"value\": \"Mother\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/families/relationships/22\",\n                            \"rel\": \"child_relation\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"center_id\": 11,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 35018,\n                    \"name\": \"Marlayna Smith\",\n                    \"first_name\": \"Marlayna\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-13T12:00:00+00:00\",\n                    \"email\": \"marlaynarowe@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(910) 546-4274\",\n                        \"number_e164\": \"+19105464274\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": \"Mother\",\n                    \"child_relation\": {\n                        \"id\": 22,\n                        \"values\": {\n                            \"value\": \"Mother\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/families/relationships/22\",\n                                \"rel\": \"child_relation\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"center_id\": 11,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 46122,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-10\",\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-06-14\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-01T15:33:22+00:00\",\n                    \"name\": \"Hazel Smith\",\n                    \"first_name\": \"Hazel\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2017-07-17\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-13T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-13T22:26:51+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 35018,\n                            \"values\": {\n                                \"family_id\": 52984,\n                                \"is_primary\": true,\n                                \"name\": \"Marlayna Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/52984/guardians/35018\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28246,\n                            \"values\": {\n                                \"child_id\": 46122\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28246\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 52836,\n            \"center\": {\n                \"id\": 16,\n                \"values\": {\n                    \"name\": \"Creative World Riverwalk\",\n                    \"code\": \"107 - Riverwalk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/16\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-05-12T20:31:31+00:00\",\n            \"added_date\": \"2021-05-12T20:31:31+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking for pricing for my Twins who are currently 2 years old turning 3 years old in July. As well as my 5 year old for the time being till school starts in September.\",\n            \"primary_guardian\": {\n                \"id\": 34946,\n                \"name\": \"Kayla Smith\",\n                \"first_name\": \"Kayla\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-12T20:31:31+00:00\",\n                \"email\": \"kayannsmith1994@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(609) 284-7581\",\n                    \"number_e164\": \"+16092847581\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 16,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 323,\n                        \"values\": {\n                            \"value\": \"Unknown\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34946,\n                    \"name\": \"Kayla Smith\",\n                    \"first_name\": \"Kayla\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-12T20:31:31+00:00\",\n                    \"email\": \"kayannsmith1994@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(609) 284-7581\",\n                        \"number_e164\": \"+16092847581\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 16,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 52752,\n            \"center\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Creative World Brandon/Causeway\",\n                    \"code\": \"88 - Causeway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/18\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-24T17:16:24+00:00\",\n            \"created_date\": \"2021-05-12T06:23:18+00:00\",\n            \"added_date\": \"2021-05-12T06:23:18+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Summer Camp\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/18\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 18,\n                    \"values\": {\n                        \"name\": \"Summer Camp\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/18\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34913,\n                \"name\": \"Dajan Smith\",\n                \"first_name\": \"Dajan\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-12T06:23:18+00:00\",\n                \"email\": \"dajan3@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"13912 Roseate Tern Ln \",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Riverview\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33579\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 777-4453\",\n                    \"number_e164\": \"+18137774453\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 777-4453\",\n                    \"number_e164\": \"+18137774453\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 18,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"324976\",\n                        \"integration\": {\n                            \"id\": 18,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/18\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34913,\n                    \"name\": \"Dajan Smith\",\n                    \"first_name\": \"Dajan\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-12T06:23:18+00:00\",\n                    \"email\": \"dajan3@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"13912 Roseate Tern Ln \",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Riverview\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33579\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 777-4453\",\n                        \"number_e164\": \"+18137774453\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": {\n                        \"type\": {\n                            \"id\": 20,\n                            \"values\": {\n                                \"value\": \"Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/20\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 777-4453\",\n                        \"number_e164\": \"+18137774453\",\n                        \"extension\": null\n                    },\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 18,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"324976\",\n                            \"integration\": {\n                                \"id\": 18,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/18\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                },\n                {\n                    \"id\": 35629,\n                    \"name\": \"Diane  Perry\",\n                    \"first_name\": \"Diane \",\n                    \"last_name\": \"Perry\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-24\",\n                    \"email\": \"dmp2121@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"3308 Acapulco Dr\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Riverview\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33578\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(813) 766-2742\",\n                        \"number_e164\": \"+18137662742\",\n                        \"extension\": \"\"\n                    },\n                    \"center_id\": 18,\n                    \"external_system_id\": null,\n                    \"integrations\": [],\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": \"\",\n                        \"number\": \"(813) 766-2742\",\n                        \"number_e164\": \"+18137662742\",\n                        \"extension\": \"\"\n                    }\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 47433,\n                    \"status\": {\n                        \"id\": 5,\n                        \"values\": {\n                            \"name\": \"Registered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/5\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-01\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-24T17:16:24+00:00\",\n                    \"name\": \"Dajan Smith Jr\",\n                    \"first_name\": \"Dajan\",\n                    \"last_name\": \"Smith Jr\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2012-01-18\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-24T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-24T17:16:11+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34913,\n                            \"values\": {\n                                \"family_id\": 52752,\n                                \"is_primary\": true,\n                                \"name\": \"Dajan Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/52752/guardians/34913\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 29044,\n                            \"values\": {\n                                \"child_id\": 47433\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/29044\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"130981\",\n                            \"integration\": {\n                                \"id\": 18,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/18\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 52082,\n            \"center\": {\n                \"id\": 10,\n                \"values\": {\n                    \"name\": \"Creative World School Wesley Chapel\",\n                    \"code\": \"120 - Wesley Chapel\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/10\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-05-05T01:03:35+00:00\",\n            \"added_date\": \"2021-05-05T01:03:35+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34568,\n                \"name\": \"Kimberly Smith\",\n                \"first_name\": \"Kimberly\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-05-04T12:00:00+00:00\",\n                \"email\": \"Kimmiekurk8709@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 838-4387\",\n                    \"number_e164\": \"+18138384387\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 10,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 53,\n                        \"values\": {\n                            \"value\": \"Stay at Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/53\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34568,\n                    \"name\": \"Kimberly Smith\",\n                    \"first_name\": \"Kimberly\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-05-04T12:00:00+00:00\",\n                    \"email\": \"Kimmiekurk8709@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 838-4387\",\n                        \"number_e164\": \"+18138384387\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 10,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 53,\n                            \"values\": {\n                                \"value\": \"Stay at Home\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/53\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51696,\n            \"center\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Creative World Fishhawk\",\n                    \"code\": \"101 - Fishhawk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/6\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-30T17:33:49+00:00\",\n            \"added_date\": \"2021-04-30T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34359,\n                \"name\": \"Daniela Smith\",\n                \"first_name\": \"Daniela\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-30T12:00:00+00:00\",\n                \"email\": \"danielasmith455@aol.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 454-8629\",\n                    \"number_e164\": \"+18134548629\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34359,\n                    \"name\": \"Daniela Smith\",\n                    \"first_name\": \"Daniela\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-30T12:00:00+00:00\",\n                    \"email\": \"danielasmith455@aol.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 454-8629\",\n                        \"number_e164\": \"+18134548629\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 6,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 44843,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-08\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 369,\n                            \"values\": {\n                                \"value\": \"Tuition too High\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/369\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Alina Smith\",\n                    \"first_name\": \"Alina\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2018-07-29\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-30T12:00:00+00:00\",\n                    \"system_date\": \"2021-04-30T17:34:55+00:00\",\n                    \"comments\": \"looking for part time next year.  looking for tuesday and thursday .  may be too expensive\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34359,\n                            \"values\": {\n                                \"family_id\": 51696,\n                                \"is_primary\": true,\n                                \"name\": \"Daniela Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51696/guardians/34359\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27365,\n                            \"values\": {\n                                \"child_id\": 44843\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27365\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51589,\n            \"center\": {\n                \"id\": 30,\n                \"values\": {\n                    \"name\": \"Creative World Starkey Ranch\",\n                    \"code\": \"131- Starkey Ranch\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/30\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-29T17:06:17+00:00\",\n            \"added_date\": \"2021-04-29T17:06:17+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking to see what tuition would be for a 3 year old...\",\n            \"primary_guardian\": {\n                \"id\": 34306,\n                \"name\": \"Erin Smith\",\n                \"first_name\": \"Erin\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-29T17:06:17+00:00\",\n                \"email\": \"ecook151@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(503) 819-7506\",\n                    \"number_e164\": \"+15038197506\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 30,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34306,\n                    \"name\": \"Erin Smith\",\n                    \"first_name\": \"Erin\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-29T17:06:17+00:00\",\n                    \"email\": \"ecook151@hotmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(503) 819-7506\",\n                        \"number_e164\": \"+15038197506\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 30,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 47125,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 765,\n                            \"values\": {\n                                \"value\": \"Mass Clean Up\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/765\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"TBA Smith\",\n                    \"first_name\": \"TBA\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": null,\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2018-07-06\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-20T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-20T15:04:45+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34306,\n                            \"values\": {\n                                \"family_id\": 51589,\n                                \"is_primary\": true,\n                                \"name\": \"Erin Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51589/guardians/34306\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28828,\n                            \"values\": {\n                                \"child_id\": 47125\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28828\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51541,\n            \"center\": {\n                \"id\": 4,\n                \"values\": {\n                    \"name\": \"Creative World Avalon Park\",\n                    \"code\": \"116 - Avalon Park\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/4\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-29T14:21:42+00:00\",\n            \"added_date\": \"2021-04-29T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 327,\n                \"values\": {\n                    \"value\": \"Unknown\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/327\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34288,\n                \"name\": \"Bre Smith\",\n                \"first_name\": \"Bre\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-29T12:00:00+00:00\",\n                \"email\": \"blp_2389@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 612-9670\",\n                    \"number_e164\": \"+17276129670\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34288,\n                    \"name\": \"Bre Smith\",\n                    \"first_name\": \"Bre\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-29T12:00:00+00:00\",\n                    \"email\": \"blp_2389@hotmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 612-9670\",\n                        \"number_e164\": \"+17276129670\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 4,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 44609,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 369,\n                            \"values\": {\n                                \"value\": \"Tuition too High\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/369\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"Mom called back and canceled tour because price was to high \",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Aubrey Smith\",\n                    \"first_name\": \"Aubrey\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2017-04-25\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-29T12:00:00+00:00\",\n                    \"system_date\": \"2021-04-29T14:23:31+00:00\",\n                    \"comments\": \"is interested in part time for Aubrey. I also gave her info on VPK and she said she had older child so told her about our camp program.\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34288,\n                            \"values\": {\n                                \"family_id\": 51541,\n                                \"is_primary\": true,\n                                \"name\": \"Bre Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51541/guardians/34288\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27234,\n                            \"values\": {\n                                \"child_id\": 44609\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27234\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51382,\n            \"center\": {\n                \"id\": 25,\n                \"values\": {\n                    \"name\": \"Creative World Naples\",\n                    \"code\": \"127 - Naples\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/25\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-05T17:40:46+00:00\",\n            \"created_date\": \"2021-04-27T23:57:51+00:00\",\n            \"added_date\": \"2021-04-27T23:57:51+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 18,\n                \"values\": {\n                    \"name\": \"Summer Camp\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/18\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 18,\n                    \"values\": {\n                        \"name\": \"Summer Camp\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/18\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34205,\n                \"name\": \"Alisa Smith\",\n                \"first_name\": \"Alisa\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-27T23:57:51+00:00\",\n                \"email\": \"alisamaries83@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(814) 590-9388\",\n                    \"number_e164\": \"+18145909388\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 25,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"322541\",\n                        \"integration\": {\n                            \"id\": 25,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/25\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34205,\n                    \"name\": \"Alisa Smith\",\n                    \"first_name\": \"Alisa\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-27T23:57:51+00:00\",\n                    \"email\": \"alisamaries83@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(814) 590-9388\",\n                        \"number_e164\": \"+18145909388\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 25,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"322541\",\n                            \"integration\": {\n                                \"id\": 25,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/25\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 45185,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-21\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 323,\n                            \"values\": {\n                                \"value\": \"Unknown\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/323\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-05T17:40:46+00:00\",\n                    \"name\": \"Chase Ford\",\n                    \"first_name\": \"Chase\",\n                    \"last_name\": \"Ford\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2014-08-02\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-05T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-05T14:27:49+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34205,\n                            \"values\": {\n                                \"family_id\": 51382,\n                                \"is_primary\": true,\n                                \"name\": \"Alisa Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51382/guardians/34205\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27616,\n                            \"values\": {\n                                \"child_id\": 45185\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27616\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"322542\",\n                            \"integration\": {\n                                \"id\": 25,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/25\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51366,\n            \"center\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Creative World Apollo Beach\",\n                    \"code\": \"104 - Apollo Beach\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/12\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-07-20T15:02:54+00:00\",\n            \"created_date\": \"2021-04-27T21:37:04+00:00\",\n            \"added_date\": \"2021-04-27T21:37:04+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 726,\n                \"values\": {\n                    \"value\": \"Google Ad\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/726\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Google PPC\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/12\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 12,\n                    \"values\": {\n                        \"name\": \"Google PPC\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/12\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Looking to enroll a child\",\n            \"primary_guardian\": {\n                \"id\": 34196,\n                \"name\": \"Drucilla Smith\",\n                \"first_name\": \"Drucilla\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-27T21:37:04+00:00\",\n                \"email\": \"avrielianne3617@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 382-5963\",\n                    \"number_e164\": \"+18133825963\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 12,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"326022\",\n                        \"integration\": {\n                            \"id\": 12,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/12\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34196,\n                    \"name\": \"Drucilla Smith\",\n                    \"first_name\": \"Drucilla\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-27T21:37:04+00:00\",\n                    \"email\": \"avrielianne3617@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 382-5963\",\n                        \"number_e164\": \"+18133825963\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 12,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"326022\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 50534,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-11\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-28\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-07-20T15:02:54+00:00\",\n                    \"name\": \"Avrie Hawkins\",\n                    \"first_name\": \"Avrie\",\n                    \"last_name\": \"Hawkins\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2017-03-06\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-06-23T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-23T18:06:08+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34196,\n                            \"values\": {\n                                \"family_id\": 51366,\n                                \"is_primary\": true,\n                                \"name\": \"Drucilla Smith\",\n                                \"status\": 2\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51366/guardians/34196\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 31835,\n                            \"values\": {\n                                \"child_id\": 50534\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/31835\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"326026\",\n                            \"integration\": {\n                                \"id\": 12,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/12\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51350,\n            \"center\": {\n                \"id\": 28,\n                \"values\": {\n                    \"name\": \"Creative World Cypress\",\n                    \"code\": \"129 - Cypress\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/28\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-27T20:05:23+00:00\",\n            \"added_date\": \"2021-04-27T20:05:23+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34188,\n                \"name\": \"Ashlie Smith\",\n                \"first_name\": \"Ashlie\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-27T13:00:00+00:00\",\n                \"email\": \"Ashliesmith21517@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(832) 566-2276\",\n                    \"number_e164\": \"+18325662276\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 28,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34188,\n                    \"name\": \"Ashlie Smith\",\n                    \"first_name\": \"Ashlie\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-27T13:00:00+00:00\",\n                    \"email\": \"Ashliesmith21517@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(832) 566-2276\",\n                        \"number_e164\": \"+18325662276\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 28,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51299,\n            \"center\": {\n                \"id\": 28,\n                \"values\": {\n                    \"name\": \"Creative World Cypress\",\n                    \"code\": \"129 - Cypress\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/28\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-27T17:28:39+00:00\",\n            \"added_date\": \"2021-04-27T17:28:39+00:00\",\n            \"inquiry_type\": {\n                \"id\": 141,\n                \"values\": {\n                    \"value\": \"Walk In\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/141\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 783,\n                \"values\": {\n                    \"value\": \"Kiosk\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/783\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Walk In Tour (Kiosk)\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/2\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Walk In Tour (Kiosk)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/2\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34164,\n                \"name\": \"Jasmine Smith\",\n                \"first_name\": \"Jasmine\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-27T17:28:39+00:00\",\n                \"email\": \"Jasminek13@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(832) 745-9653\",\n                    \"number_e164\": \"+18327459653\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 28,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34164,\n                    \"name\": \"Jasmine Smith\",\n                    \"first_name\": \"Jasmine\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-27T17:28:39+00:00\",\n                    \"email\": \"Jasminek13@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(832) 745-9653\",\n                        \"number_e164\": \"+18327459653\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 28,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 44368,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-07-12\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 362,\n                            \"values\": {\n                                \"value\": \"Hours Open\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/362\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"Chose another route\",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Brayden Smith\",\n                    \"first_name\": \"Brayden\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2015-05-19\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-27T13:00:00+00:00\",\n                    \"system_date\": \"2021-04-27T17:28:39+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34164,\n                            \"values\": {\n                                \"family_id\": 51299,\n                                \"is_primary\": true,\n                                \"name\": \"Jasmine Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51299/guardians/34164\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27067,\n                            \"values\": {\n                                \"child_id\": 44368\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27067\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 44367,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-05-03\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 739,\n                            \"values\": {\n                                \"value\": \"Not a Good Fit\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/739\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"Chose another route\",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Bria Smith\",\n                    \"first_name\": \"Bria\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2021-02-03\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-27T13:00:00+00:00\",\n                    \"system_date\": \"2021-04-27T17:28:39+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34164,\n                            \"values\": {\n                                \"family_id\": 51299,\n                                \"is_primary\": true,\n                                \"name\": \"Jasmine Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51299/guardians/34164\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27066,\n                            \"values\": {\n                                \"child_id\": 44367\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27066\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 51086,\n            \"center\": {\n                \"id\": 25,\n                \"values\": {\n                    \"name\": \"Creative World Naples\",\n                    \"code\": \"127 - Naples\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/25\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-19T17:37:10+00:00\",\n            \"created_date\": \"2021-04-26T14:50:48+00:00\",\n            \"added_date\": \"2021-04-26T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 34060,\n                \"name\": \"Ishmael Smith\",\n                \"first_name\": \"Ishmael\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-26T12:00:00+00:00\",\n                \"email\": \"ishmael.smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(239) 703-5206\",\n                    \"number_e164\": \"+12397035206\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 25,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"329926\",\n                        \"integration\": {\n                            \"id\": 25,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/25\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 34060,\n                    \"name\": \"Ishmael Smith\",\n                    \"first_name\": \"Ishmael\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-26T12:00:00+00:00\",\n                    \"email\": \"ishmael.smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(239) 703-5206\",\n                        \"number_e164\": \"+12397035206\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 25,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"329926\",\n                            \"integration\": {\n                                \"id\": 25,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/25\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 46909,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-10\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-10\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-19T17:37:10+00:00\",\n                    \"name\": \"Andru Smith\",\n                    \"first_name\": \"Andru\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2017-05-30\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-18T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-18T15:36:37+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 34060,\n                            \"values\": {\n                                \"family_id\": 51086,\n                                \"is_primary\": true,\n                                \"name\": \"Ishmael Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/51086/guardians/34060\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28678,\n                            \"values\": {\n                                \"child_id\": 46909\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28678\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"329927\",\n                            \"integration\": {\n                                \"id\": 25,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/25\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 50749,\n            \"center\": {\n                \"id\": 8,\n                \"values\": {\n                    \"name\": \"Creative World Tampa Palms\",\n                    \"code\": \"123 - Tampa Palms\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/8\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-06-01T19:37:19+00:00\",\n            \"created_date\": \"2021-04-21T21:47:50+00:00\",\n            \"added_date\": \"2021-04-21T21:47:50+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello, \\r\\n\\r\\nWe recently had a baby, and are starting to look for a day care that accepts infants in preparation for me going back to work. I haven’t decided just yet when I plan on returning to work, however, we do know it will be within the next 2-6 months. \\r\\n\\r\\nI wanted to find out if you all are accepting infant students? \\r\\n\\r\\nIf so what is the tuition cost for infants full time and part time? \\r\\n\\r\\nAre you accepting in person tours at the moment? \\r\\n\\r\\nWhat is the “curriculum” for infants? \\r\\n\\r\\nIs there a monitor system that we could check in on our son throughout the day? \\r\\n\\r\\nI prefer response by email, however, I am able to answer the phone as well if need be.\\r\\n\\r\\nThank you in advance! \\r\\n\\r\\nAutumn Smith\",\n            \"primary_guardian\": {\n                \"id\": 33862,\n                \"name\": \"Autumn Smith\",\n                \"first_name\": \"Autumn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-21T21:47:50+00:00\",\n                \"email\": \"Autumn.smith923@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"8702 Hidden River Pkwy\",\n                    \"address2\": \"Unit 1106\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Tampa\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"33637\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(678) 984-5837\",\n                    \"number_e164\": \"+16789845837\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 8,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"325476\",\n                        \"integration\": {\n                            \"id\": 8,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/8\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33862,\n                    \"name\": \"Autumn Smith\",\n                    \"first_name\": \"Autumn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-21T21:47:50+00:00\",\n                    \"email\": \"Autumn.smith923@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"8702 Hidden River Pkwy\",\n                        \"address2\": \"Unit 1106\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Tampa\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"33637\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(678) 984-5837\",\n                        \"number_e164\": \"+16789845837\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 8,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"325476\",\n                            \"integration\": {\n                                \"id\": 8,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/8\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 47196,\n                    \"status\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"name\": \"Enrolled/Started\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/6\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-24\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-24\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-06-01T19:37:19+00:00\",\n                    \"name\": \"Camden Wooten\",\n                    \"first_name\": \"Camden\",\n                    \"last_name\": \"Wooten\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-03-17\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-20T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-20T22:02:03+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 33862,\n                            \"values\": {\n                                \"family_id\": 50749,\n                                \"is_primary\": true,\n                                \"name\": \"Autumn Smith\",\n                                \"status\": 11\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/50749/guardians/33862\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28877,\n                            \"values\": {\n                                \"child_id\": 47196\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28877\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"325477\",\n                            \"integration\": {\n                                \"id\": 8,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/8\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 50297,\n            \"center\": {\n                \"id\": 20,\n                \"values\": {\n                    \"name\": \"Creative World Countryside/Blue Springs\",\n                    \"code\": \"111 - Countryside\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/20\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-17T15:52:39+00:00\",\n            \"added_date\": \"2021-04-17T15:52:39+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 726,\n                \"values\": {\n                    \"value\": \"Google Ad\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/726\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 12,\n                \"values\": {\n                    \"name\": \"Google PPC\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/12\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 12,\n                    \"values\": {\n                        \"name\": \"Google PPC\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/12\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"I would like to know if there are any availabilities  and rates for a 4 year old??\",\n            \"primary_guardian\": {\n                \"id\": 33634,\n                \"name\": \"Cassie Smith\",\n                \"first_name\": \"Cassie\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-17T13:00:00+00:00\",\n                \"email\": \"cass92607@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(816) 872-2886\",\n                    \"number_e164\": \"+18168722886\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 20,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33634,\n                    \"name\": \"Cassie Smith\",\n                    \"first_name\": \"Cassie\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-17T13:00:00+00:00\",\n                    \"email\": \"cass92607@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(816) 872-2886\",\n                        \"number_e164\": \"+18168722886\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 20,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 50130,\n            \"center\": {\n                \"id\": 26,\n                \"values\": {\n                    \"name\": \"Creative World Vinings\",\n                    \"code\": \"126 - Vinings\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/26\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-15T17:07:55+00:00\",\n            \"added_date\": \"2021-04-15T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 33549,\n                \"name\": \"Jessica Smith\",\n                \"first_name\": \"Jessica\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-15T12:00:00+00:00\",\n                \"email\": \"smith2jess@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(706) 615-0083\",\n                    \"number_e164\": \"+17066150083\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 26,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33549,\n                    \"name\": \"Jessica Smith\",\n                    \"first_name\": \"Jessica\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-15T12:00:00+00:00\",\n                    \"email\": \"smith2jess@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(706) 615-0083\",\n                        \"number_e164\": \"+17066150083\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 26,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 49907,\n            \"center\": {\n                \"id\": 30,\n                \"values\": {\n                    \"name\": \"Creative World Starkey Ranch\",\n                    \"code\": \"131- Starkey Ranch\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/30\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-13T19:56:46+00:00\",\n            \"added_date\": \"2021-04-13T19:56:46+00:00\",\n            \"inquiry_type\": {\n                \"id\": 761,\n                \"values\": {\n                    \"value\": \"Self Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/761\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 120,\n                \"values\": {\n                    \"value\": \"Drove By Location\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/120\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 33434,\n                \"name\": \"Felicia Smith\",\n                \"first_name\": \"Felicia\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-13T19:56:46+00:00\",\n                \"email\": \"mrsfsmith577@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 271-8319\",\n                    \"number_e164\": \"+17272718319\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 30,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33434,\n                    \"name\": \"Felicia Smith\",\n                    \"first_name\": \"Felicia\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-13T19:56:46+00:00\",\n                    \"email\": \"mrsfsmith577@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(727) 271-8319\",\n                        \"number_e164\": \"+17272718319\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 30,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 43203,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-31\",\n                        \"lost_opportunity_reason\": {\n                            \"id\": 765,\n                            \"values\": {\n                                \"value\": \"Mass Clean Up\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/765\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Everly Smith\",\n                    \"first_name\": \"Everly\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-10-05\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-13T19:56:46+00:00\",\n                    \"system_date\": \"2021-04-13T19:56:46+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 33434,\n                            \"values\": {\n                                \"family_id\": 49907,\n                                \"is_primary\": true,\n                                \"name\": \"Felicia Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/49907/guardians/33434\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 26257,\n                            \"values\": {\n                                \"child_id\": 43203\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/26257\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 49902,\n            \"center\": {\n                \"id\": 23,\n                \"values\": {\n                    \"name\": \"Creative World Lees Summit\",\n                    \"code\": \"112 - Lees Summit\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/23\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-06T19:29:49+00:00\",\n            \"created_date\": \"2021-04-13T19:33:29+00:00\",\n            \"added_date\": \"2021-04-13T19:33:29+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Hello! My name is Elaina Smith. My husband, son and I are relocating to the Kansas City area from Dallas, TX. We are looking for a daycare for my son. We will need a daycare starting early August. He was born in March and we are interested in your infant program. Thanks!\",\n            \"primary_guardian\": {\n                \"id\": 33432,\n                \"name\": \"Elaina Smith\",\n                \"first_name\": \"Elaina\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-13T13:00:00+00:00\",\n                \"email\": \"elainacostanzo94@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(281) 217-4093\",\n                    \"number_e164\": \"+12812174093\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 23,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"322622\",\n                        \"integration\": {\n                            \"id\": 23,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/23\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33432,\n                    \"name\": \"Elaina Smith\",\n                    \"first_name\": \"Elaina\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-13T13:00:00+00:00\",\n                    \"email\": \"elainacostanzo94@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(281) 217-4093\",\n                        \"number_e164\": \"+12812174093\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 23,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"322622\",\n                            \"integration\": {\n                                \"id\": 23,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/23\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 45439,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-08-08\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-01\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-07-27\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-06T19:29:49+00:00\",\n                    \"name\": \"Griffin Smith\",\n                    \"first_name\": \"Griffin\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2021-03-17\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-06T13:00:00+00:00\",\n                    \"system_date\": \"2021-05-06T19:28:40+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 33432,\n                            \"values\": {\n                                \"family_id\": 49902,\n                                \"is_primary\": true,\n                                \"name\": \"Elaina Smith\",\n                                \"status\": 9\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/49902/guardians/33432\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27780,\n                            \"values\": {\n                                \"child_id\": 45439\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27780\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"322621\",\n                            \"integration\": {\n                                \"id\": 23,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/23\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 49626,\n            \"center\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Creative World Cross Creek\",\n                    \"code\": \"117 - Cross Creek\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/9\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-12T03:11:29+00:00\",\n            \"added_date\": \"2021-04-12T03:11:29+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 33297,\n                \"name\": \"Laura Smith\",\n                \"first_name\": \"Laura\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-11T12:00:00+00:00\",\n                \"email\": \"lauraj444@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(630) 777-1611\",\n                    \"number_e164\": \"+16307771611\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 9,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33297,\n                    \"name\": \"Laura Smith\",\n                    \"first_name\": \"Laura\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-11T12:00:00+00:00\",\n                    \"email\": \"lauraj444@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(630) 777-1611\",\n                        \"number_e164\": \"+16307771611\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 9,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Responsive\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/2\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 49313,\n            \"center\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Creative World St. Cloud\",\n                    \"code\": \"122 - St Cloud\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/3\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-08T11:21:17+00:00\",\n            \"added_date\": \"2021-04-08T11:21:17+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 788,\n                \"values\": {\n                    \"value\": \"Self-Scheduled Tour\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/788\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Henry was chosen through the lottery process to attained VPK in 2021-2022 school year.  Henry is currently attending daycare in the Melbourne area.  Now that he is reaching school age we wanted to put him in a school that he could stay at through his early learning. We would also require before and after school care for him.\\nSheila asked to reschedule tour.  Offered Zoom virtual or In-Person.  LVM to call to set up. CLD4/27  Sent thank you email/text, offered tour. CLD6/5\",\n            \"primary_guardian\": {\n                \"id\": 33141,\n                \"name\": \"Sheila Smith\",\n                \"first_name\": \"Sheila\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-08T12:00:00+00:00\",\n                \"email\": \"Sheila.smith@dechra.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(321) 372-4110\",\n                    \"number_e164\": \"+13213724110\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 33141,\n                    \"name\": \"Sheila Smith\",\n                    \"first_name\": \"Sheila\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-08T12:00:00+00:00\",\n                    \"email\": \"Sheila.smith@dechra.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(321) 372-4110\",\n                        \"number_e164\": \"+13213724110\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 3,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 42624,\n                    \"status\": {\n                        \"id\": 11,\n                        \"values\": {\n                            \"name\": \"Tour Scheduled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/11\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-12\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Henry Smith\",\n                    \"first_name\": \"Henry\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2016-09-26\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-08T12:00:00+00:00\",\n                    \"system_date\": \"2021-06-05T20:46:19+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 33141,\n                            \"values\": {\n                                \"family_id\": 49313,\n                                \"is_primary\": true,\n                                \"name\": \"Sheila Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/49313/guardians/33141\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 25880,\n                            \"values\": {\n                                \"child_id\": 42624\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/25880\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 48558,\n            \"center\": {\n                \"id\": 28,\n                \"values\": {\n                    \"name\": \"Creative World Cypress\",\n                    \"code\": \"129 - Cypress\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/28\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-04-01T19:51:11+00:00\",\n            \"added_date\": \"2021-04-01T19:51:11+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 656,\n                \"values\": {\n                    \"value\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/656\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 6,\n                \"values\": {\n                    \"name\": \"Facebook\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/6\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Facebook\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/6\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 32762,\n                \"name\": \"Marissa Smith franklin\",\n                \"first_name\": \"Marissa\",\n                \"last_name\": \"Smith franklin\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-04-01T19:51:11+00:00\",\n                \"email\": \"msmith0787@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(281) 904-4702\",\n                    \"number_e164\": \"+12819044702\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 28,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 32762,\n                    \"name\": \"Marissa Smith franklin\",\n                    \"first_name\": \"Marissa\",\n                    \"last_name\": \"Smith franklin\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-04-01T19:51:11+00:00\",\n                    \"email\": \"msmith0787@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(281) 904-4702\",\n                        \"number_e164\": \"+12819044702\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 28,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 44764,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 56,\n                            \"values\": {\n                                \"value\": \"Child Aged Out of Program\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/56\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Braxdun Franklin\",\n                    \"first_name\": \"Braxdun\",\n                    \"last_name\": \"Franklin\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2015-08-26\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-29T13:00:00+00:00\",\n                    \"system_date\": \"2021-04-29T21:33:23+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 32762,\n                            \"values\": {\n                                \"family_id\": 48558,\n                                \"is_primary\": true,\n                                \"name\": \"Marissa Smith franklin\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/48558/guardians/32762\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27317,\n                            \"values\": {\n                                \"child_id\": 44764\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27317\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 44766,\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Nolyn Franklin\",\n                    \"first_name\": \"Nolyn\",\n                    \"last_name\": \"Franklin\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2018-01-08\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-04-29T13:00:00+00:00\",\n                    \"system_date\": \"2021-04-29T21:33:55+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 32762,\n                            \"values\": {\n                                \"family_id\": 48558,\n                                \"is_primary\": true,\n                                \"name\": \"Marissa Smith franklin\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/48558/guardians/32762\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 27319,\n                            \"values\": {\n                                \"child_id\": 44766\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/27319\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 47718,\n            \"center\": {\n                \"id\": 14,\n                \"values\": {\n                    \"name\": \"Creative World Gateway\",\n                    \"code\": \"125 - Gateway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/14\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-03-29T14:16:28+00:00\",\n            \"added_date\": \"2021-03-29T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 142,\n                \"values\": {\n                    \"value\": \"Email\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/142\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"\",\n            \"primary_guardian\": {\n                \"id\": 32460,\n                \"name\": \"Ginalyn Smith\",\n                \"first_name\": \"Ginalyn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-03-29T12:00:00+00:00\",\n                \"email\": \"gtp.smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(314) 856-5753\",\n                    \"number_e164\": \"+13148565753\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 14,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 32460,\n                    \"name\": \"Ginalyn Smith\",\n                    \"first_name\": \"Ginalyn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-03-29T12:00:00+00:00\",\n                    \"email\": \"gtp.smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(314) 856-5753\",\n                        \"number_e164\": \"+13148565753\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 14,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"name\": \"Tour Completed\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/3\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 41106,\n                    \"status\": {\n                        \"id\": 10,\n                        \"values\": {\n                            \"name\": \"To Be Deleted\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/10\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": null,\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": {\n                            \"id\": 326,\n                            \"values\": {\n                                \"value\": \"Duplicate Lead/Child\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/rejected/326\",\n                                    \"rel\": \"rejected_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": false,\n                    \"exported_date\": null,\n                    \"name\": \"Joshua Smith\",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2019-01-01\",\n                    \"is_estimated_date_of_birth\": true,\n                    \"added_date\": \"2021-03-29T12:00:00+00:00\",\n                    \"system_date\": \"2021-03-29T14:45:19+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 32460,\n                            \"values\": {\n                                \"family_id\": 47718,\n                                \"is_primary\": true,\n                                \"name\": \"Ginalyn Smith\",\n                                \"status\": 3\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/47718/guardians/32460\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 24816,\n                            \"values\": {\n                                \"child_id\": 41106\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/24816\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 47499,\n            \"center\": {\n                \"id\": 8,\n                \"values\": {\n                    \"name\": \"Creative World Tampa Palms\",\n                    \"code\": \"123 - Tampa Palms\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/8\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"created_date\": \"2021-03-26T13:31:22+00:00\",\n            \"added_date\": \"2021-03-26T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"looking for care for 2 year old DOB 10/06/2017 and 4 year old 03/16/2017\",\n            \"primary_guardian\": {\n                \"id\": 32341,\n                \"name\": \"Vanessa Smith\",\n                \"first_name\": \"Vanessa\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-03-26T12:00:00+00:00\",\n                \"email\": \"nessa246778@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(813) 391-0766\",\n                    \"number_e164\": \"+18133910766\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 8,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 382,\n                        \"values\": {\n                            \"value\": \"Unable to Contact\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": \"email is bounce\",\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 32341,\n                    \"name\": \"Vanessa Smith\",\n                    \"first_name\": \"Vanessa\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-03-26T12:00:00+00:00\",\n                    \"email\": \"nessa246778@yahoo.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(813) 391-0766\",\n                        \"number_e164\": \"+18133910766\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 8,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 382,\n                            \"values\": {\n                                \"value\": \"Unable to Contact\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/382\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": \"email is bounce\",\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 47187,\n            \"center\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"Creative World Oviedo\",\n                    \"code\": \"124 - Oviedo\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/1\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-05-22T20:28:57+00:00\",\n            \"created_date\": \"2021-03-24T11:55:25+00:00\",\n            \"added_date\": \"2021-03-24T12:00:00+00:00\",\n            \"inquiry_type\": {\n                \"id\": 140,\n                \"values\": {\n                    \"value\": \"Phone\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/140\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 778,\n                \"values\": {\n                    \"value\": \"User\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/778\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": null,\n            \"marketing_campaigns\": [],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"School age wants info on Summer Camp for Kinder and 3rd grade. Send info when we schedule summer camp.\\n\\\\'Emailed mom and she wants us to waive summer camp registration and get a discount on tuition.\",\n            \"primary_guardian\": {\n                \"id\": 32184,\n                \"name\": \"Jackie Smith\",\n                \"first_name\": \"Jackie\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-03-24T12:00:00+00:00\",\n                \"email\": \"jsticca2@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"1412 Winding Stream Ct.\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Winter Springs\",\n                    \"region\": \"FL\",\n                    \"postcode\": \"32708\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(407) 443-9323\",\n                    \"number_e164\": \"+14074439323\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": {\n                        \"id\": 369,\n                        \"values\": {\n                            \"value\": \"Tuition too High\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/lost-opportunity/369\",\n                                \"rel\": \"lost_opp_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"323653\",\n                        \"integration\": {\n                            \"id\": 1,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/1\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 32184,\n                    \"name\": \"Jackie Smith\",\n                    \"first_name\": \"Jackie\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-03-24T12:00:00+00:00\",\n                    \"email\": \"jsticca2@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"1412 Winding Stream Ct.\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"Winter Springs\",\n                        \"region\": \"FL\",\n                        \"postcode\": \"32708\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(407) 443-9323\",\n                        \"number_e164\": \"+14074439323\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 1,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 9,\n                        \"values\": {\n                            \"name\": \"Lost Opportunity\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/9\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": {\n                            \"id\": 369,\n                            \"values\": {\n                                \"value\": \"Tuition too High\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/lost-opportunity/369\",\n                                    \"rel\": \"lost_opp_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [\n                        {\n                            \"id\": \"323653\",\n                            \"integration\": {\n                                \"id\": 1,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/1\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": false,\n            \"children\": [\n                {\n                    \"id\": 47361,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-07-17\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-01\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-08-05\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-22T20:28:57+00:00\",\n                    \"name\": \"Amalia Smith\",\n                    \"first_name\": \"Amalia\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Female\",\n                    \"date_of_birth\": \"2015-05-05\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-22T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-22T20:28:33+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 32184,\n                            \"values\": {\n                                \"family_id\": 47187,\n                                \"is_primary\": true,\n                                \"name\": \"Jackie Smith\",\n                                \"status\": 9\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/47187/guardians/32184\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28997,\n                            \"values\": {\n                                \"child_id\": 47361\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28997\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"323654\",\n                            \"integration\": {\n                                \"id\": 1,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/1\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 47359,\n                    \"status\": {\n                        \"id\": 8,\n                        \"values\": {\n                            \"name\": \"Disenrolled\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/8\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": \"2021-06-19\",\n                        \"enrolled_reason\": {\n                            \"id\": 792,\n                            \"values\": {\n                                \"value\": \"Enrolled in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/enrolled/792\",\n                                    \"rel\": \"enrolled_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-06-01\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": \"2021-07-01\",\n                        \"withdrawn_reason\": {\n                            \"id\": 793,\n                            \"values\": {\n                                \"value\": \"Withdrawn in ProCare\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/reasons/withdrawn/793\",\n                                    \"rel\": \"withdrawn_reason\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-05-22T20:29:10+00:00\",\n                    \"name\": \"Connor Smith\",\n                    \"first_name\": \"Connor\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"Male\",\n                    \"date_of_birth\": \"2012-05-29\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-05-22T12:00:00+00:00\",\n                    \"system_date\": \"2021-05-22T20:27:18+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 32184,\n                            \"values\": {\n                                \"family_id\": 47187,\n                                \"is_primary\": true,\n                                \"name\": \"Jackie Smith\",\n                                \"status\": 9\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/47187/guardians/32184\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 28995,\n                            \"values\": {\n                                \"child_id\": 47359\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/28995\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"323655\",\n                            \"integration\": {\n                                \"id\": 1,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/1\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        },\n        {\n            \"id\": 46591,\n            \"center\": {\n                \"id\": 14,\n                \"values\": {\n                    \"name\": \"Creative World Gateway\",\n                    \"code\": \"125 - Gateway\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/14\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"is_active\": true,\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"exported\": true,\n            \"exported_date\": \"2021-03-29T14:49:55+00:00\",\n            \"created_date\": \"2021-03-18T03:31:43+00:00\",\n            \"added_date\": \"2021-03-18T03:31:43+00:00\",\n            \"inquiry_type\": {\n                \"id\": 143,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/inquiry/143\",\n                        \"rel\": \"family_inquiry_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"source_type\": {\n                \"id\": 682,\n                \"values\": {\n                    \"value\": \"Web Search\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/source/682\",\n                        \"rel\": \"family_source\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"origin_type\": {\n                \"id\": 779,\n                \"values\": {\n                    \"value\": \"Web\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/origins/779\",\n                        \"rel\": \"origin\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaign\": {\n                \"id\": 7,\n                \"values\": {\n                    \"name\": \"Microsite Form\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/marketing/campaigns/7\",\n                        \"rel\": \"marketing_campaign\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"marketing_campaigns\": [\n                {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Microsite Form\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/marketing/campaigns/7\",\n                            \"rel\": \"marketing_campaign\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"do_not_call\": false,\n            \"do_not_text\": false,\n            \"do_not_email\": false,\n            \"do_not_auto_email\": false,\n            \"subscriptions\": {\n                \"email\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                },\n                \"text\": {\n                    \"general\": true,\n                    \"marketing\": true,\n                    \"service\": true,\n                    \"urgent\": true\n                }\n            },\n            \"comments\": \"Summer camp 2021 inquiry pls\",\n            \"primary_guardian\": {\n                \"id\": 31879,\n                \"name\": \"Ginalyn Smith\",\n                \"first_name\": \"Ginalyn\",\n                \"last_name\": \"Smith\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-03-17T12:00:00+00:00\",\n                \"email\": \"Gtp.smith@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"n/a\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(314) 856-5753\",\n                    \"number_e164\": \"+13148565753\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 14,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            },\n            \"guardians\": [\n                {\n                    \"id\": 31879,\n                    \"name\": \"Ginalyn Smith\",\n                    \"first_name\": \"Ginalyn\",\n                    \"last_name\": \"Smith\",\n                    \"title\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": null,\n                    \"added_date\": \"2021-03-17T12:00:00+00:00\",\n                    \"email\": \"Gtp.smith@gmail.com\",\n                    \"alternate_email\": \"\",\n                    \"address\": {\n                        \"address1\": \"\",\n                        \"address2\": \"\",\n                        \"address3\": \"\",\n                        \"address4\": \"\",\n                        \"locality\": \"\",\n                        \"region\": \"n/a\",\n                        \"postcode\": \"\",\n                        \"country_code\": \"\",\n                        \"longitude\": \"\",\n                        \"latitude\": \"\"\n                    },\n                    \"primary_phone\": {\n                        \"type\": {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Cell\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/phone/19\",\n                                    \"rel\": \"phone_type\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        \"country_code\": null,\n                        \"number\": \"(314) 856-5753\",\n                        \"number_e164\": \"+13148565753\",\n                        \"extension\": null\n                    },\n                    \"alternate_phone\": null,\n                    \"relation_to_child\": null,\n                    \"child_relation\": null,\n                    \"center_id\": 14,\n                    \"external_system_id\": \"\",\n                    \"status\": {\n                        \"id\": 1,\n                        \"values\": {\n                            \"name\": \"New Lead\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/1\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null\n                    },\n                    \"integrations\": [],\n                    \"family_rep\": null,\n                    \"marketing_note\": \"\",\n                    \"referred_by\": \"\",\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\"\n                }\n            ],\n            \"good_standing\": true,\n            \"children\": [\n                {\n                    \"id\": 41109,\n                    \"status\": {\n                        \"id\": 5,\n                        \"values\": {\n                            \"name\": \"Registered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/5\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-09\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-03-30T18:21:14+00:00\",\n                    \"name\": \"Joshua Smith\",\n                    \"first_name\": \"Joshua\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2018-06-11\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-03-29T12:00:00+00:00\",\n                    \"system_date\": \"2021-03-29T14:48:52+00:00\",\n                    \"comments\": \"start in august\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 31879,\n                            \"values\": {\n                                \"family_id\": 46591,\n                                \"is_primary\": true,\n                                \"name\": \"Ginalyn Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/46591/guardians/31879\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 24818,\n                            \"values\": {\n                                \"child_id\": 41109\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/24818\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [\n                        {\n                            \"id\": \"319351\",\n                            \"integration\": {\n                                \"id\": 14,\n                                \"values\": {\n                                    \"name\": \"Procare\",\n                                    \"integration_type\": \"Management System\"\n                                },\n                                \"links\": [\n                                    {\n                                        \"href\": \"/api/v3/integrations/14\",\n                                        \"rel\": \"integration\",\n                                        \"type\": \"GET\"\n                                    }\n                                ]\n                            }\n                        }\n                    ],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                },\n                {\n                    \"id\": 40093,\n                    \"status\": {\n                        \"id\": 5,\n                        \"values\": {\n                            \"name\": \"Registered\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/statuses/5\",\n                                \"rel\": \"status\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"status_details\": {\n                        \"enrolled_date\": null,\n                        \"enrolled_reason\": null,\n                        \"enrolled_comment\": null,\n                        \"expected_start_date\": \"2021-08-02\",\n                        \"lost_opportunity_reason\": null,\n                        \"lost_opportunity_comment\": null,\n                        \"rejected_reason\": null,\n                        \"rejected_comment\": null,\n                        \"temp_leave_date\": null,\n                        \"temp_leave_reason\": null,\n                        \"temp_leave_comment\": null,\n                        \"wait_list_date\": null,\n                        \"wait_list_type\": null,\n                        \"wait_list_priority\": null,\n                        \"wait_list_reason\": null,\n                        \"wait_list_comment\": null,\n                        \"wait_list_fee\": null,\n                        \"is_wait_list_fee_paid\": false,\n                        \"wait_list_fee_paid_date\": null,\n                        \"withdrawn_date\": null,\n                        \"withdrawn_reason\": null,\n                        \"withdrawn_comment\": null,\n                        \"temp_leave_comments\": null\n                    },\n                    \"exported\": true,\n                    \"exported_date\": \"2021-03-29T14:49:55+00:00\",\n                    \"name\": \"Parker Smith\",\n                    \"first_name\": \"Parker\",\n                    \"last_name\": \"Smith\",\n                    \"preferred_name\": \"\",\n                    \"gender\": \"\",\n                    \"date_of_birth\": \"2013-12-30\",\n                    \"is_estimated_date_of_birth\": false,\n                    \"added_date\": \"2021-03-17T12:00:00+00:00\",\n                    \"system_date\": \"2021-03-18T03:31:43+00:00\",\n                    \"comments\": \"\",\n                    \"image\": null,\n                    \"primary_language\": \"\",\n                    \"secondary_language\": \"\",\n                    \"immunizations_compliant\": false,\n                    \"allergies\": \"\",\n                    \"medical_conditions\": \"\",\n                    \"dietary_requirements\": \"\",\n                    \"emergency_contacts\": [\n                        {\n                            \"id\": 31879,\n                            \"values\": {\n                                \"family_id\": 46591,\n                                \"is_primary\": true,\n                                \"name\": \"Ginalyn Smith\",\n                                \"status\": 1\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/families/46591/guardians/31879\",\n                                    \"rel\": \"guardian\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"address\": [],\n                    \"enrollments\": [\n                        {\n                            \"id\": 24227,\n                            \"values\": {\n                                \"child_id\": 40093\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/enrollments/24227\",\n                                    \"rel\": \"enrollment\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"integrations\": [],\n                    \"custom_type_1\": null,\n                    \"custom_type_2\": null,\n                    \"good_standing\": false,\n                    \"is_child_of_staff\": false,\n                    \"current_situation\": null,\n                    \"is_eligible_for_reenrollment\": false,\n                    \"prior_likes\": \"\",\n                    \"prior_dislikes\": \"\",\n                    \"prior_situation_comment\": \"\",\n                    \"reason_for_change\": null,\n                    \"is_sibling_in_care\": false,\n                    \"custom_values\": []\n                }\n            ],\n            \"integrations\": [],\n            \"linked_families\": null,\n            \"custom_values\": [],\n            \"facebook_user_id\": null\n        }\n    ]\n}"}],"_postman_id":"1a1b0fb8-095f-4c65-a348-d4a8b5ee3fdc"},{"name":"Search by partial text","id":"f69693f9-c1df-43d4-8b9b-bb149579fb4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/search?query=value","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","search"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Used for a fuzzy search across multiple fields, like guardian first name, phone number, etc.</p>\n","type":"text/plain"},"key":"query","value":"value"}],"variable":[]}},"response":[],"_postman_id":"f69693f9-c1df-43d4-8b9b-bb149579fb4d"}],"id":"053f9061-0b16-4a4e-8aa5-0e086b69f020","description":"<p>Search for families in your data. Returns an array of full family entities, as well as an array of links to those entities in the API. The array of links are indexed by their order in the search results, in case you want to get more information than what's returned in the results.</p>\n","event":[{"listen":"prerequest","script":{"id":"c4ae1676-53eb-4daa-a061-0585fbf2efa5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1ee6722e-f40d-4491-b0b1-7c4a7d88fe5e","type":"text/javascript","exec":[""]}}],"_postman_id":"053f9061-0b16-4a4e-8aa5-0e086b69f020","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Statuses","item":[{"name":"Status Changes","item":[{"name":"Change Child Status (active -> tour completed)","id":"c182b78a-04e6-4008-9ae7-5b458b07f013","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": 47,\n    \"status\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c182b78a-04e6-4008-9ae7-5b458b07f013"},{"name":"Change Child Status (active -> wait list)","id":"a6c5b763-0e65-445f-9a54-66a714b9b63b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": 47,\n    \"status\": 4,\n    \"date\": \"2021-06-03\",\n    \"reason\": 672,\n    \"comments\": \"Wait list comments here.\",\n    \"wait_list_details\": {\n        \"is_child_of_staff\": true,\n        \"fee\": \"100.52\",\n        \"fee_paid_date\": \"2020-06-03\",\n        \"is_fee_paid\": true,\n        \"priority\": 42,\n        \"type\": 674,\n        \"is_sibling_in_care\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6c5b763-0e65-445f-9a54-66a714b9b63b"},{"name":"Change Child Status (registered -> enrolled)","id":"fba186c2-c9fc-4d08-84af-de85b2bf00e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": 47,\n    \"status\": 6,\n    \"date\": \"2021-06-03\",\n    \"reason\": 672,\n    \"actual_start_date\": \"2021-06-05\",\n    \"comments\": \"Enrolled comments here.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","description":"<p>Example of how to change a child to enrolled. Child must typically first be in Registered status.</p>\n<p>Optional properties are:</p>\n<p>\"actual_start_date\", \"comments\", \"reason\".</p>\n<p>If no \"actual_start_date\" is provided, it will be set to the \"date\" property's value. It is recommended that you set the child's actual start date.</p>\n<p>If not \"comments\" are provided, the enrolled comments will be set to an empty string.</p>\n<p>If no \"reason\" is provided, a default value of \"Unknown\" will be set. It is recommended to set this value for better reporting.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fba186c2-c9fc-4d08-84af-de85b2bf00e6"},{"name":"Change Child Status (active -> lost opp)","id":"4dfef848-069c-489e-ab92-7cf73fd7ea83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": 47,\n    \"status\": 9,\n    \"reason\": 52,\n    \"comments\": \"Lost opp comments here.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4dfef848-069c-489e-ab92-7cf73fd7ea83"},{"name":"Change Child Status (archived -> tour scheduled)","id":"1b5964c2-9748-4783-b94c-e51c1fc3616f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": 47,\n    \"status\": 11\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b5964c2-9748-4783-b94c-e51c1fc3616f"},{"name":"Change Family (Primary Guardian / Lead) Status (active -> tour completed)","id":"fc1e2732-be77-45f6-99ef-035eed7c656d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"child_id\": null,\n    \"status\": 3\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/43/change-status","description":"<p>To change the status of the family instead of a specific child, set \"child_id\" to null. Once a family has children, you should change status on the children.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","43","change-status"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc1e2732-be77-45f6-99ef-035eed7c656d"}],"id":"614a17d3-23c0-4f61-9e8b-764810be3840","description":"<p>To easily change statuses on a family or child, follow these examples.</p>\n","event":[{"listen":"prerequest","script":{"id":"3a093d2c-86c0-4d99-84b1-06f95673e0c2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f455e573-6b6e-4470-acf5-95351f5d4b2d","type":"text/javascript","exec":[""]}}],"_postman_id":"614a17d3-23c0-4f61-9e8b-764810be3840","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"All statuses","id":"5505edac-7b8c-41e9-9d79-41105618e87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/statuses","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","statuses"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"5e2e9795-e512-4d7a-8bed-ee5e48ee0212","name":"All statuses","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/statuses"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Jun 2020 13:31:23 GMT"},{"key":"Server","value":"Apache/2.4.29 (Ubuntu)"},{"key":"Set-Cookie","value":"PHPSESSID=aol30bgkv10cesdrbvja0ribqm; path=/; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Sun, 30-Jun-2019 13:31:22 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"11"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Mon, 29 Jun 2020 13:31:23 GMT"},{"key":"Content-Length","value":"867"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"New Lead\",\n        \"child_only\": false,\n        \"is_archive\": false,\n        \"order\": 0\n    },\n    {\n        \"id\": 2,\n        \"name\": \"Responsive\",\n        \"child_only\": false,\n        \"is_archive\": false,\n        \"order\": 1\n    },\n    {\n        \"id\": 11,\n        \"name\": \"Tour Scheduled\",\n        \"child_only\": false,\n        \"is_archive\": false,\n        \"order\": 2\n    },\n    {\n        \"id\": 3,\n        \"name\": \"Tour Completed\",\n        \"child_only\": false,\n        \"is_archive\": false,\n        \"order\": 3\n    },\n    {\n        \"id\": 4,\n        \"name\": \"Wait List\",\n        \"child_only\": true,\n        \"is_archive\": false,\n        \"order\": 4\n    },\n    {\n        \"id\": 5,\n        \"name\": \"Pre-Enroll\",\n        \"child_only\": true,\n        \"is_archive\": false,\n        \"order\": 5\n    },\n    {\n        \"id\": 6,\n        \"name\": \"Enrolled (Started)\",\n        \"child_only\": true,\n        \"is_archive\": true,\n        \"order\": 6\n    },\n    {\n        \"id\": 7,\n        \"name\": \"Temporary Leave\",\n        \"child_only\": true,\n        \"is_archive\": true,\n        \"order\": 7\n    },\n    {\n        \"id\": 8,\n        \"name\": \"Withdrawn\",\n        \"child_only\": true,\n        \"is_archive\": true,\n        \"order\": 8\n    },\n    {\n        \"id\": 9,\n        \"name\": \"Lost Opportunity\",\n        \"child_only\": false,\n        \"is_archive\": true,\n        \"order\": 9\n    },\n    {\n        \"id\": 10,\n        \"name\": \"To Be Deleted\",\n        \"child_only\": false,\n        \"is_archive\": true,\n        \"order\": 10\n    }\n]"}],"_postman_id":"5505edac-7b8c-41e9-9d79-41105618e87d"},{"name":"Status by id","id":"fa05ff85-a6f1-48cf-97fd-4a515e874234","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/statuses/1","urlObject":{"path":["api","v3","statuses","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa05ff85-a6f1-48cf-97fd-4a515e874234"},{"name":"Status reasons","id":"4c534bd2-ea9c-4e18-a36d-eee4b0d2e32a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/reasons/statuses/6","description":"<p>Many statuses have a \"reason\" for the status change. For example, a child might move to \"Waitlist\" status because \"Classrooms are full\". For statuses that have a reason, you can retrieve the reasons by using the status id.</p>\n<p>Here is an example for the reasons for status id 6.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","reasons","statuses","6"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"ab1cfb88-0944-4862-a901-2e0749000e57","name":"Status reasons","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/reasons/statuses/6"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 01 Apr 2022 13:45:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=6fnnqa6ect37gr696qlvp9kmin; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Thu, 01-Apr-2021 13:45:18 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"10"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"aefb63"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/aefb63"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Fri, 01 Apr 2022 13:45:19 GMT"},{"key":"Content-Length","value":"992"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 47,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 0,\n        \"value\": \"Price\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 46,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 1,\n        \"value\": \"Location\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 360,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 2,\n        \"value\": \"Hours Open\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 48,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 3,\n        \"value\": \"Curriculum\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 197,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 4,\n        \"value\": \"Facilities\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 49,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 5,\n        \"value\": \"Staff\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 367,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 6,\n        \"value\": \"Staff:Child Ratios\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 50,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 7,\n        \"value\": \"Reputation\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 51,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"order\": 8,\n        \"value\": \"Recommendation\",\n        \"identifier\": null\n    },\n    {\n        \"id\": 328,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 9,\n        \"value\": \"Unknown\",\n        \"identifier\": \"reasonEnrolledUnknown\"\n    }\n]"}],"_postman_id":"4c534bd2-ea9c-4e18-a36d-eee4b0d2e32a"}],"id":"5c3d3c6f-eebf-443d-9d00-7e68758d89ae","description":"<p>The various designations that can be applied to a Lead or Child as they move through the process towards Enrollment.  Active statuses mark progress towards Enrollment.  Archive statuses happen after the Enrollment process stops.  Consequently, “Enrolled” is an archive status. To move children to an archive status, use the <a href=\"https://apidocs.childcarecrm.com/?version=latest#424e4d31-e25c-4377-a08d-c3b3fac11cd3\">/api/v3/enrollments endpoints</a>. (“Pending”, being a gatekeeping status for data, is neither active nor archive.)  The complete list of Lead/Child statuses include:  </p>\n<ul>\n<li><strong>Pending</strong> – Before a family has a status, applies to records which have not yet been validated by Staff. For example, Lead information provided through a website interface. Prevents spam from entering the CRM.</li>\n<li><strong>New Lead</strong> – A Lead with validated data but who hasn’t had two-way communication with Staff yet.  For example, a previously Pending Lead whose data was vetted but who hasn’t yet been contacted by Staff.</li>\n<li><strong>Engaged</strong> (aka Responsive) – A Lead who has established two-way communication with Staff but who has not yet scheduled a tour.</li>\n<li><strong>Tour Scheduled</strong> – A Lead who has booked a physical tour of the Center but who has not yet had the tour.</li>\n<li><strong>Tour Completed</strong> – A Lead who has had a tour of the Center but has not yet asked to Register or Waitlist their Child.</li>\n<li><strong>Wait List</strong> – The status given to a Child whose guardian wants to Enroll as soon as there is an opening in the Classroom.</li>\n<li><strong>Registered</strong> – A Child who is booked to start attending a Classroom but who has not yet physically begun attending.</li>\n<li><strong>Enrolled</strong> – A Child who has begun and continues to physically attend a Classroom.</li>\n<li><strong>Temporary Leave</strong> – An otherwise Enrolled Child who has been scheduled to not attend for a period of time.  For example, a Child with a parent on maternity/paternity leave.  </li>\n<li><strong>Withdrawn</strong> – A formerly Enrolled Child who is no longer Enrolled, for whatever reason.</li>\n<li><strong>Lost Opportunity</strong> – A Lead or Child who was never Enrolled and who is no longer being pursued for Enrollment, either because the Lead indicated that they are no longer considering the Center or because the Lead has stopped responding to communication attempts.</li>\n<li><strong>Rejected</strong> –Invalid data, for example duplicate records or test data.</li>\n</ul>\n<h2 id=\"status-types\">Status Types</h2>\n<p>There are two \"types\" of statuses, \"active\" and \"archive\". Additionally, statuses may be marked as \"child_only\", which means they can only apply to a child. In combination, this means there are are four possible flavors of statuses.</p>\n<p>\"Pending\" is not treated as a status. Consider it the equivalent of a \"null\" status.</p>\n<h2 id=\"changing-status\">Changing Status</h2>\n<p>To make any status changes for all non-pending families, please use the \"change-status\" endpoint for the specific family, which is documented here: <a href=\"https://apidocs.childcarecrm.com/#614a17d3-23c0-4f61-9e8b-764810be3840\">https://apidocs.childcarecrm.com/#614a17d3-23c0-4f61-9e8b-764810be3840</a></p>\n<h3 id=\"pending-families\">Pending Families</h3>\n<p>To move a family from \"pending\" to \"new lead\", use the <a href=\"https://apidocs.childcarecrm.com/?version=latest#699f4d28-5aa5-4203-9614-7d4fb0c32600\">families/pending/{id}/accept</a> endpoint. To move a family from \"pending\" to \"rejected\", use the <a href=\"https://apidocs.childcarecrm.com/?version=latest#022d6e37-734f-43b8-a619-45572d7800b3\">families/pending/{id}/reject</a> endpoint.</p>\n<h2 id=\"deprecated-status-change-methods\">Deprecated Status Change Methods</h2>\n<p>The instructions below have been deprecated. They will still work, but they describe a way of changing statuses that is confusing.</p>\n<h3 id=\"active-status-no-children\">Active Status, No Children</h3>\n<p>To change the status of a family / primary guardian without children, directly update the \"status\" property in the <a href=\"https://apidocs.childcarecrm.com/?version=latest#de40cc7c-668b-470b-b23a-0bb0e8f405e6\">family object</a>. </p>\n<h3 id=\"active-status-with-children\">Active Status With Children</h3>\n<p>Once a family has children added, each child has its own status. For all non-archive and non-child-only statuses, the child's status is changed by modifying <a href=\"https://apidocs.childcarecrm.com/?version=latest#6867ad14-9898-4c76-b81e-ca630ef7b0df\">the \"status\" property on the appropriate child</a>. </p>\n<h3 id=\"archive-status-with-children\">Archive Status With children</h3>\n<p>Archive, child-only statuses include <a href=\"https://apidocs.childcarecrm.com/?version=latest#698b7628-f993-4680-91c2-70c34571f6be\">\"enrolled\"</a>, \"temporary leave\", and <a href=\"https://apidocs.childcarecrm.com/?version=latest#684d2242-5cfc-4874-94af-addcc506d004\">\"withdrawn\"</a>. These statuses are tied to a child's enrollment status and so require updates via the <a href=\"https://apidocs.childcarecrm.com/?version=latest#424e4d31-e25c-4377-a08d-c3b3fac11cd3\">/api/v3/enrollments endpoint</a> rather than direct changes to the \"status\" property on the child.</p>\n<p>Non-child-only statuses like \"Lost Opportunity\" can be set via the \"status\" property on the child.</p>\n","event":[{"listen":"prerequest","script":{"id":"13e4acf6-aa26-4efe-8edb-4ac65dbcd976","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a5280ce3-f86b-43af-a437-f21b092566c3","type":"text/javascript","exec":[""]}}],"_postman_id":"5c3d3c6f-eebf-443d-9d00-7e68758d89ae","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Families","item":[{"name":"Pending","item":[{"name":"All pending families","id":"75b70dd1-31e1-4592-90cc-c2d25ab16a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/pending?before=2019-09-03T00:00:00z","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","pending"],"host":["{{url}}"],"query":[{"key":"before","value":"2019-09-03T00:00:00z"}],"variable":[]}},"response":[],"_postman_id":"75b70dd1-31e1-4592-90cc-c2d25ab16a99"},{"name":"Pending families for a specific center","id":"cc7a595b-a415-4366-82e3-d0216370d1db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/pending?center_id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","pending"],"host":["{{url}}"],"query":[{"key":"center_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"cc7a595b-a415-4366-82e3-d0216370d1db"},{"name":"Pending families for a specific organization","id":"4ecebe1f-ef6d-4aea-ad39-581d7eb1d6b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/pending?org_id=1","description":"<p>Get pending leads for a specific organization</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","pending"],"host":["{{url}}"],"query":[{"key":"org_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"4ecebe1f-ef6d-4aea-ad39-581d7eb1d6b7"},{"name":"Accept a pending family","id":"699f4d28-5aa5-4203-9614-7d4fb0c32600","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/pending/654/accept","urlObject":{"path":["api","v3","families","pending","654","accept"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"699f4d28-5aa5-4203-9614-7d4fb0c32600"},{"name":"Reject a pending family","id":"022d6e37-734f-43b8-a619-45572d7800b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"reason\": 76\n}"},"url":"{{url}}/api/v3/families/pending/925/reject","urlObject":{"path":["api","v3","families","pending","925","reject"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"022d6e37-734f-43b8-a619-45572d7800b3"}],"id":"03a7d840-aae7-49cf-bab1-08fa292d3bc5","description":"<p>Pending families are families who have submitted their information via web forms. In order to guard against spam and possible duplicates, they are usually reviewed by users and then accepted or rejected, as appropriate, before they enter the pipeline.</p>\n","event":[{"listen":"prerequest","script":{"id":"31cf99d1-e014-45c8-aebe-a26c1c92809f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ff7444ec-0093-49de-b71c-e77830142c80","type":"text/javascript","exec":[""]}}],"_postman_id":"03a7d840-aae7-49cf-bab1-08fa292d3bc5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Children","item":[{"name":"Status Changes","item":[{"name":"Move child to engaged","id":"75d874e7-a8d9-4c05-811b-9bbb64a9d28b","protocolProfileBehavior":{"disableBodyPruning":true,"followOriginalHttpMethod":false},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 2,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"emergency_contacts\": [],\r\n    \"address\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/154/children/102","description":"<p>An example of how to move a child to engaged. Note: child must be in \"new lead\" status before being moved to engaged.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75d874e7-a8d9-4c05-811b-9bbb64a9d28b"},{"name":"Move child to tour scheduled","id":"c375e882-5631-4bca-940a-2f8dab6346eb","protocolProfileBehavior":{"disableBodyPruning":true,"followOriginalHttpMethod":false},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 11,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"emergency_contacts\": [],\r\n    \"address\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/154/children/102","description":"<p>An example of how to move a child to tour scheduled. Note: child must be in \"new lead\" or \"engaged\" status before being moved to tour scheduled.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c375e882-5631-4bca-940a-2f8dab6346eb"},{"name":"Move child to tour scheduled","id":"a41b9819-d940-4c44-b47b-8eeb7588aedf","protocolProfileBehavior":{"disableBodyPruning":true,"followOriginalHttpMethod":false},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 11,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"emergency_contacts\": [],\r\n    \"address\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/154/children/102","description":"<p>An example of how to move a child to tour completed. Note: child must be in \"new lead\" or \"engaged\" or \"tour scheduled\" status before being moved to tour completed.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a41b9819-d940-4c44-b47b-8eeb7588aedf"},{"name":"Move child to waitlist","id":"01e93fad-5e05-49fb-9215-1bad31c7e753","protocolProfileBehavior":{"disableBodyPruning":true,"followOriginalHttpMethod":false},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 4,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"emergency_contacts\": [],\r\n    \"address\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/154/children/102","description":"<p>An example of how to move a child to wait list. Note: child must be in \"new lead\" or \"engaged\" or \"tour scheduled\" or \"tour completed\" status before being moved to wait list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"01e93fad-5e05-49fb-9215-1bad31c7e753"},{"name":"Move child to registered","id":"eb14d4b5-e465-4b94-85e5-91cbf6ba92e6","protocolProfileBehavior":{"disableBodyPruning":true,"followOriginalHttpMethod":false},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 5,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"emergency_contacts\": [],\r\n    \"address\": []\r\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/154/children/102","description":"<p>An example of how to move a child to registered. Note: child must be in \"new lead\" or \"engaged\" or \"tour scheduled\" or \"tour completed\" or \"wait list\" status before being moved to registered.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb14d4b5-e465-4b94-85e5-91cbf6ba92e6"},{"name":"Move child to enrolled","id":"cecafa95-366a-433e-9b6b-007ff420ebdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"child_id\": 363,\n  \"center_id\": 8,\n  \"enrollment\": {\n    \"reason\": 46,\n    \"date\": \"2020-01-01T00:00:00+00:00\"\n  }, \n  \"schedule\": {\n    \"monday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"tuesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"wednesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"thursday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"friday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"full_days\": 0,\n    \"half_days\": 0\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/enrollments/186","description":"<p>An example of how to move a child to enrolled. Note: child must be in \"registered\" status before being moved to enrolled.</p>\n<p>The \"reason\" id is available from /api/v3/types/reasons/enrolled.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments","186"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cecafa95-366a-433e-9b6b-007ff420ebdf"},{"name":"Move child from Withdrawn/Temporary Leave/ Lost Opportunity to Enrolled","id":"5613c21d-c1f1-4859-b8d7-0b100bb95a1f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"center_id\":1,\r\n\t\"child_id\":1,\r\n\t\"expected_start_date\":\"\",\r\n\t\"schedule\":{\r\n\t\t\"friday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"monday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"saturday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"sunday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"thursday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"tuesday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"wednesday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t}\r\n\t},\r\n\t\"enrollment\": {\r\n\t    \"date\": \"2020-01-01\",\r\n        \"reason\": 46\r\n\t}\r\n}"},"url":"{{url}}/api/v3/enrollments","description":"<p>Changing a child’s archive status must be done through the enrollment endpoint. After creating a new enrollment, you have to move it to registered and then enrolled. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5613c21d-c1f1-4859-b8d7-0b100bb95a1f"},{"name":"Move child from Lost Opportunity to Registered","id":"9ec0c172-43e5-4d58-9d71-587e6508f877","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"center_id\":1,\r\n\t\"child_id\":1,\r\n\t\"expected_start_date\":\"\",\r\n\t\"schedule\":{\r\n\t\t\"friday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"monday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"saturday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"sunday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"thursday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"tuesday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t},\r\n\t\t\"wednesday\":{\r\n\t\t\t\"am\":false,\r\n\t\t\t\"pm\":false\r\n\t\t}\r\n\t},\r\n\t\"enrollment\": {\r\n\t    \"date\": \"2020-01-01\",\r\n        \"reason\": 46\r\n\t}\r\n}"},"url":"{{url}}/api/v3/enrollments","description":"<p>Changing a child’s status from an archive status is a two-step process. First, create a new enrollment. You will receive a new child id attached to that enrollment. Then move that child to registered via the children endpoint (e.g., \"{{url}}/api/v3/families/154/children/102\").</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ec0c172-43e5-4d58-9d71-587e6508f877"}],"id":"6ebf0478-12c0-4132-9461-542ac21e0f91","description":"<p>Here are some examples of how to move a child into various statuses.</p>\n","_postman_id":"6ebf0478-12c0-4132-9461-542ac21e0f91","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"All children in a family","event":[{"listen":"test","script":{"id":"85565af0-965a-436d-a82d-194dee775b92","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"id in response\", function () {","    pm.expect(pm.response.text()).to.include(\"id\");","});","","pm.test(\"status in response\", function () {","    pm.expect(pm.response.text()).to.include(\"status\");","});","","pm.test(\"exported in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported\");","});","","pm.test(\"exported_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported_date\");","});","","pm.test(\"name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"name\");","});","","pm.test(\"first_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"first_name\");","});","","pm.test(\"last_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"last_name\");","});","","pm.test(\"preferred_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"preferred_name\");","});","","pm.test(\"gender in response\", function () {","    pm.expect(pm.response.text()).to.include(\"gender\");","});","","pm.test(\"date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"date_of_birth\");","});","","pm.test(\"is_estimated_date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"is_estimated_date_of_birth\");","});","","pm.test(\"added_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"added_date\");","});","","pm.test(\"image in response\", function () {","    pm.expect(pm.response.text()).to.include(\"image\");","});","","pm.test(\"primary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"primary_language\");","});","","pm.test(\"secondary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"secondary_language\");","});","","pm.test(\"immunizations_compliant in response\", function () {","    pm.expect(pm.response.text()).to.include(\"immunizations_compliant\");","});","","pm.test(\"allergies in response\", function () {","    pm.expect(pm.response.text()).to.include(\"allergies\");","});","","pm.test(\"medical_conditions in response\", function () {","    pm.expect(pm.response.text()).to.include(\"medical_conditions\");","});","","pm.test(\"dietary_requirements in response\", function () {","    pm.expect(pm.response.text()).to.include(\"dietary_requirements\");","});","","pm.test(\"emergency_contacts in response\", function () {","    pm.expect(pm.response.text()).to.include(\"emergency_contacts\");","});","","pm.test(\"address in response\", function () {","    pm.expect(pm.response.text()).to.include(\"address\");","});","","pm.test(\"enrollments in response\", function () {","    pm.expect(pm.response.text()).to.include(\"enrollments\");","});"],"type":"text/javascript"}}],"id":"97aa8a60-6dc5-4467-965f-bba8f444970a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/1/children","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","children"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97aa8a60-6dc5-4467-965f-bba8f444970a"},{"name":"Child by id","event":[{"listen":"test","script":{"id":"f04d73cf-b090-4fd6-af0d-67f9b37240e6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"id in response\", function () {","    pm.expect(pm.response.text()).to.include(\"id\");","});","","pm.test(\"status in response\", function () {","    pm.expect(pm.response.text()).to.include(\"status\");","});","","pm.test(\"exported in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported\");","});","","pm.test(\"exported_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported_date\");","});","","pm.test(\"name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"name\");","});","","pm.test(\"first_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"first_name\");","});","","pm.test(\"last_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"last_name\");","});","","pm.test(\"preferred_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"preferred_name\");","});","","pm.test(\"gender in response\", function () {","    pm.expect(pm.response.text()).to.include(\"gender\");","});","","pm.test(\"date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"date_of_birth\");","});","","pm.test(\"is_estimated_date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"is_estimated_date_of_birth\");","});","","pm.test(\"added_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"added_date\");","});","","pm.test(\"image in response\", function () {","    pm.expect(pm.response.text()).to.include(\"image\");","});","","pm.test(\"primary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"primary_language\");","});","","pm.test(\"secondary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"secondary_language\");","});","","pm.test(\"immunizations_compliant in response\", function () {","    pm.expect(pm.response.text()).to.include(\"immunizations_compliant\");","});","","pm.test(\"allergies in response\", function () {","    pm.expect(pm.response.text()).to.include(\"allergies\");","});","","pm.test(\"medical_conditions in response\", function () {","    pm.expect(pm.response.text()).to.include(\"medical_conditions\");","});","","pm.test(\"dietary_requirements in response\", function () {","    pm.expect(pm.response.text()).to.include(\"dietary_requirements\");","});","","pm.test(\"emergency_contacts in response\", function () {","    pm.expect(pm.response.text()).to.include(\"emergency_contacts\");","});","","pm.test(\"address in response\", function () {","    pm.expect(pm.response.text()).to.include(\"address\");","});","","pm.test(\"enrollments in response\", function () {","    pm.expect(pm.response.text()).to.include(\"enrollments\");","});"],"type":"text/javascript"}}],"id":"b51b5340-e38a-4319-9fe7-b0142c7c6e7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/139917/children/150113","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","139917","children","150113"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b51b5340-e38a-4319-9fe7-b0142c7c6e7e"},{"name":"Add children to family","event":[{"listen":"test","script":{"id":"b7b104fb-2621-4c90-ba27-e5d8f49c9565","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","pm.test(\"id in response\", function () {","    pm.expect(pm.response.text()).to.include(\"id\");","});","","pm.test(\"status in response\", function () {","    pm.expect(pm.response.text()).to.include(\"status\");","});","","pm.test(\"exported in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported\");","});","","pm.test(\"exported_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported_date\");","});","","pm.test(\"name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"name\");","});","","pm.test(\"first_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"first_name\");","});","","pm.test(\"last_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"last_name\");","});","","pm.test(\"preferred_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"preferred_name\");","});","","pm.test(\"gender in response\", function () {","    pm.expect(pm.response.text()).to.include(\"gender\");","});","","pm.test(\"date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"date_of_birth\");","});","","pm.test(\"is_estimated_date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"is_estimated_date_of_birth\");","});","","pm.test(\"added_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"added_date\");","});","","pm.test(\"image in response\", function () {","    pm.expect(pm.response.text()).to.include(\"image\");","});","","pm.test(\"primary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"primary_language\");","});","","pm.test(\"secondary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"secondary_language\");","});","","pm.test(\"immunizations_compliant in response\", function () {","    pm.expect(pm.response.text()).to.include(\"immunizations_compliant\");","});","","pm.test(\"allergies in response\", function () {","    pm.expect(pm.response.text()).to.include(\"allergies\");","});","","pm.test(\"medical_conditions in response\", function () {","    pm.expect(pm.response.text()).to.include(\"medical_conditions\");","});","","pm.test(\"dietary_requirements in response\", function () {","    pm.expect(pm.response.text()).to.include(\"dietary_requirements\");","});","","pm.test(\"emergency_contacts in response\", function () {","    pm.expect(pm.response.text()).to.include(\"emergency_contacts\");","});","","pm.test(\"address in response\", function () {","    pm.expect(pm.response.text()).to.include(\"address\");","});","","pm.test(\"enrollments in response\", function () {","    pm.expect(pm.response.text()).to.include(\"enrollments\");","});"],"type":"text/javascript"}}],"id":"7c546596-3c02-4f31-989c-eaa3dc654226","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n    {\n        \"status\": 1,\n        \"first_name\": \"Eric\",\n        \"last_name\": \"Ray\",\n        \"preferred_name\": \"\",\n        \"gender\": \"Male\",\n        \"date_of_birth\": \"2015-04-23\",\n        \"is_estimated_date_of_birth\": false,\n        \"image\": null,\n        \"primary_language\": \"English\",\n        \"secondary_language\": \"\",\n        \"immunizations_compliant\": false,\n        \"allergies\": \"Peanuts\",\n        \"medical_conditions\": \"Asthma\",\n        \"dietary_requirements\": \"Gluten\",\n        \"enrollments\": {\n            \"schedule\": {\n                \"monday\": {\n                    \"am\": false,\n                    \"pm\": false\n                },\n                \"tuesday\": {\n                    \"am\": false,\n                    \"pm\": false\n                },\n                \"wednesday\": {\n                    \"am\": false,\n                    \"pm\": false\n                },\n                \"thursday\": {\n                    \"am\": true,\n                    \"pm\": true\n                },\n                \"friday\": {\n                    \"am\": true,\n                    \"pm\": true\n                },\n                \"saturday\": {\n                    \"am\": false,\n                    \"pm\": false\n                },\n                \"sunday\": {\n                    \"am\": false,\n                    \"pm\": false\n                }\n            },\n            \"days\": {\n                \"half_days\": 0,\n                \"full_days\": 2\n            }\n        },\n        \"emergency_contacts\": {\n            \"phone\": {\n                \"number\": \"0418 502 500\"\n            },\n            \"address\": {\n                \"address1\": \"40 Mt Pleasant Grove\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Armadale\",\n                \"region\": \"VIC\",\n                \"postcode\": \"3143\"\n            }\n        }\n        \n    }\n]"},"url":"{{url}}/api/v3/families/1/children","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","children"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c546596-3c02-4f31-989c-eaa3dc654226"},{"name":"Update a child","event":[{"listen":"test","script":{"id":"302dbd39-7ac0-4d1f-980f-f56767d65b33","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"id in response\", function () {","    pm.expect(pm.response.text()).to.include(\"id\");","});","","pm.test(\"status in response\", function () {","    pm.expect(pm.response.text()).to.include(\"status\");","});","","pm.test(\"exported in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported\");","});","","pm.test(\"exported_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported_date\");","});","","pm.test(\"name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"name\");","});","","pm.test(\"first_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"first_name\");","});","","pm.test(\"last_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"last_name\");","});","","pm.test(\"preferred_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"preferred_name\");","});","","pm.test(\"gender in response\", function () {","    pm.expect(pm.response.text()).to.include(\"gender\");","});","","pm.test(\"date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"date_of_birth\");","});","","pm.test(\"is_estimated_date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"is_estimated_date_of_birth\");","});","","pm.test(\"added_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"added_date\");","});","","pm.test(\"image in response\", function () {","    pm.expect(pm.response.text()).to.include(\"image\");","});","","pm.test(\"primary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"primary_language\");","});","","pm.test(\"secondary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"secondary_language\");","});","","pm.test(\"immunizations_compliant in response\", function () {","    pm.expect(pm.response.text()).to.include(\"immunizations_compliant\");","});","","pm.test(\"allergies in response\", function () {","    pm.expect(pm.response.text()).to.include(\"allergies\");","});","","pm.test(\"medical_conditions in response\", function () {","    pm.expect(pm.response.text()).to.include(\"medical_conditions\");","});","","pm.test(\"dietary_requirements in response\", function () {","    pm.expect(pm.response.text()).to.include(\"dietary_requirements\");","});","","pm.test(\"emergency_contacts in response\", function () {","    pm.expect(pm.response.text()).to.include(\"emergency_contacts\");","});","","pm.test(\"address in response\", function () {","    pm.expect(pm.response.text()).to.include(\"address\");","});","","pm.test(\"enrollments in response\", function () {","    pm.expect(pm.response.text()).to.include(\"enrollments\");","});"],"type":"text/javascript"}}],"id":"0043b104-d235-4e01-8796-9727938d22ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 102,\r\n    \"status\": 5,\r\n    \"name\": \"apistatuschange1c2 apistatuschange1\",\r\n    \"first_name\": \"apistatuschange1c2\",\r\n    \"last_name\": \"apistatuschange1\",\r\n    \"preferred_name\": \"\",\r\n    \"gender\": \"\",\r\n    \"date_of_birth\": \"2018-01-01\",\r\n    \"is_estimated_date_of_birth\": false,\r\n    \"image\": null,\r\n    \"primary_language\": \"\",\r\n    \"secondary_language\": \"\",\r\n    \"immunizations_compliant\": false,\r\n    \"allergies\": \"\",\r\n    \"medical_conditions\": \"\",\r\n    \"dietary_requirements\": \"\",\r\n    \"external_system_id\": \"unique_external_id\",\r\n    \"emergency_contacts\": [\r\n        {\r\n            \"id\": 147,\r\n            \"links\": [\r\n                {\r\n                    \"href\": \"\\/api\\/v3\\/families\\/147\\/guardians\\/335\",\r\n                    \"rel\": \"guardian\",\r\n                    \"type\": \"GET\"\r\n                }\r\n            ]\r\n        }\r\n    ],\r\n    \"address\": [],\r\n    \"enrollments\": [\r\n        {\r\n            \"id\": 67,\r\n            \"href\": \"\\/api\\/v3\\/enrollments\\/67\",\r\n            \"rel\": \"enrollment\",\r\n            \"type\": \"GET\"\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v3/families/154/children/102","urlObject":{"path":["api","v3","families","154","children","102"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0043b104-d235-4e01-8796-9727938d22ec"},{"name":"Delete a child","event":[{"listen":"test","script":{"id":"e34cacee-89f1-4c02-afbd-0cb63c02f66d","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});"],"type":"text/javascript"}}],"id":"04189c9a-fb7a-46b8-afd7-9561e1dc9fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/93/children/95","urlObject":{"path":["api","v3","families","93","children","95"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04189c9a-fb7a-46b8-afd7-9561e1dc9fb5"},{"name":"Get children by status","event":[{"listen":"test","script":{"id":"cae8fd66-dfed-4a37-acfb-3642794e6d6f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"id in response\", function () {","    pm.expect(pm.response.text()).to.include(\"id\");","});","","pm.test(\"status in response\", function () {","    pm.expect(pm.response.text()).to.include(\"status\");","});","","pm.test(\"exported in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported\");","});","","pm.test(\"exported_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"exported_date\");","});","","pm.test(\"name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"name\");","});","","pm.test(\"first_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"first_name\");","});","","pm.test(\"last_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"last_name\");","});","","pm.test(\"preferred_name in response\", function () {","    pm.expect(pm.response.text()).to.include(\"preferred_name\");","});","","pm.test(\"gender in response\", function () {","    pm.expect(pm.response.text()).to.include(\"gender\");","});","","pm.test(\"date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"date_of_birth\");","});","","pm.test(\"is_estimated_date_of_birth in response\", function () {","    pm.expect(pm.response.text()).to.include(\"is_estimated_date_of_birth\");","});","","pm.test(\"added_date in response\", function () {","    pm.expect(pm.response.text()).to.include(\"added_date\");","});","","pm.test(\"image in response\", function () {","    pm.expect(pm.response.text()).to.include(\"image\");","});","","pm.test(\"primary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"primary_language\");","});","","pm.test(\"secondary_language in response\", function () {","    pm.expect(pm.response.text()).to.include(\"secondary_language\");","});","","pm.test(\"immunizations_compliant in response\", function () {","    pm.expect(pm.response.text()).to.include(\"immunizations_compliant\");","});","","pm.test(\"allergies in response\", function () {","    pm.expect(pm.response.text()).to.include(\"allergies\");","});","","pm.test(\"medical_conditions in response\", function () {","    pm.expect(pm.response.text()).to.include(\"medical_conditions\");","});","","pm.test(\"dietary_requirements in response\", function () {","    pm.expect(pm.response.text()).to.include(\"dietary_requirements\");","});","","pm.test(\"emergency_contacts in response\", function () {","    pm.expect(pm.response.text()).to.include(\"emergency_contacts\");","});","","pm.test(\"address in response\", function () {","    pm.expect(pm.response.text()).to.include(\"address\");","});","","pm.test(\"enrollments in response\", function () {","    pm.expect(pm.response.text()).to.include(\"enrollments\");","});","","pm.test(\"Status returned 1\", function () {","    var jsonData = pm.response.json().status;","    pm.expect(jsonData.value).to.eql(1);","});"],"type":"text/javascript"}}],"id":"c8e9a91d-e2e9-4194-a1b0-afbf60b1bb51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/152/children?status=1","description":"<p>Return only the children in a family with a specific status</p>\n","urlObject":{"path":["api","v3","families","152","children"],"host":["{{url}}"],"query":[{"key":"status","value":"1"}],"variable":[]}},"response":[],"_postman_id":"c8e9a91d-e2e9-4194-a1b0-afbf60b1bb51"}],"id":"3c7f1ba5-c854-4d99-b820-5af4681b92a4","description":"<p>From a data standpoint, a “Child” is an opportunity for revenue.  A Family with two Children represents two opportunities.  (A Lead without associated Children is also considered an Opportunity, on the assumption they have at least one Child to Enroll.)  You need both a Child’s ID and that Child’s Family ID to call their data.</p>\n<p>When looking at enrollments on a child, the latest/current enrollment is the one with the highest id.</p>\n","event":[{"listen":"prerequest","script":{"id":"dda51fd6-2c23-4a77-9f86-88c786695723","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4c849728-4715-4b98-994d-fb2c880aaffa","type":"text/javascript","exec":[""]}}],"_postman_id":"3c7f1ba5-c854-4d99-b820-5af4681b92a4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Contacts","item":[{"name":"All contacts in family","id":"135fd9c5-f3a3-4e2f-8abe-ffdbada314f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/2/contacts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","2","contacts"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"135fd9c5-f3a3-4e2f-8abe-ffdbada314f0"},{"name":"Contact by id","id":"908ee830-2f41-4813-9765-fa30d2821173","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/2/contacts/7","urlObject":{"path":["api","v3","families","2","contacts","7"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"908ee830-2f41-4813-9765-fa30d2821173"},{"name":"Add contacts to a family","id":"de612018-a1e2-4b6a-a017-66477a147a3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"[{\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Doe\",\n    \"email\": \"joedoe@example.com\",\n    \"title\":\"\",\n    \"gender\":\"Male\",\n    \"relation_to_child\": 23,\n    \"date_of_birth\":null,\n    \"is_emergency_contact\": false,\n    \"address\":{\n        \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n        \"address2\":\"71566 Beatty Ramp\",\n        \"address3\":\"18316 Abigail Cape Suite 236\",\n        \"address4\":\"132 Mertie Locks Apt. 856\",\n        \"locality\":\"New Mertie\",\n        \"region\":\"Wyoming\",\n        \"postcode\":\"36520-5061\",\n        \"country_code\":\"KH\"\n    },\n    \"alternate_email\":\"alba.schowalter@gmail.com\",\n    \"primary_phone\":{\n        \"type\":19,\n        \"number\":\"(115) 831-3657\",\n        \"country_code\": \"\",\n        \"extension\": \"\"\n    },\n    \"alternate_phone\":{\n        \"type\":20,\n        \"number\":\"(685) 496-7935\",\n        \"country_code\": \"\",\n        \"extension\": \"\"\n    },\n    \"integrations\": [\n        {\n            \"id\": 1234,\n            \"integration_partner_id\": 1\n        }\n    ]\n}]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/1/contacts","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","contacts"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de612018-a1e2-4b6a-a017-66477a147a3b"},{"name":"Update contact","id":"e5afc418-d118-4603-af05-b5bd7c909792","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Doe\",\n    \"email\": \"joedoe@example.com\",\n    \"title\":\"\",\n    \"gender\":\"Male\",\n    \"relation_to_child\": 23,\n    \"date_of_birth\":null,\n    \"is_emergency_contact\": false,\n    \"address\":{\n        \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n        \"address2\":\"71566 Beatty Ramp\",\n        \"address3\":\"18316 Abigail Cape Suite 236\",\n        \"address4\":\"132 Mertie Locks Apt. 856\",\n        \"locality\":\"New Mertie\",\n        \"region\":\"Wyoming\",\n        \"postcode\":\"36520-5061\",\n        \"country_code\":\"KH\"\n    },\n    \"alternate_email\":\"alba.schowalter@gmail.com\",\n    \"primary_phone\":{\n        \"type\":19,\n        \"number\":\"(115) 831-3657\",\n        \"country_code\": \"\",\n        \"extension\": \"\"\n    },\n    \"alternate_phone\":{\n        \"type\":20,\n        \"number\":\"(685) 496-7935\",\n        \"country_code\": \"\",\n        \"extension\": \"\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/2/contacts/7","description":"<p>Update an existing contact</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","2","contacts","7"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5afc418-d118-4603-af05-b5bd7c909792"},{"name":"Swap with Primary Guardian","id":"a7d11a01-3cdf-451e-89f5-b2834227cd62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{url}}/api/v3/families/2/contacts/7/make-primary","description":"<p>Swaps the contact information and integration ids between this contact and the primary guardian. Does not change the entity ids.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","2","contacts","7","make-primary"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7d11a01-3cdf-451e-89f5-b2834227cd62"}],"id":"c31582b9-e484-4d24-87c4-13509dc40c84","description":"<p>An adult who may be contacted about matters pertaining to a child.  Contacts may be flagged as Guardians in the data; all Guardians are Contacts but not all Contacts are Guardians.  You need both a Contact’s ID and that Contact’s Family ID to call their data. </p>\n","event":[{"listen":"prerequest","script":{"id":"93bff4cd-95e1-465a-ae03-ff9d8d6de6a3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"32823c5c-c817-452b-947d-e8ce9b034a1e","type":"text/javascript","exec":[""]}}],"_postman_id":"c31582b9-e484-4d24-87c4-13509dc40c84","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Guardians","item":[{"name":"All guardians in a family","id":"460b1880-2a58-4601-b753-5b2c0fb5aafc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/1/guardians","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","guardians"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"460b1880-2a58-4601-b753-5b2c0fb5aafc"},{"name":"Guardian by id","id":"0dbaa731-dd60-487a-ba59-a52569027f50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/1/guardians/6","urlObject":{"path":["api","v3","families","1","guardians","6"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dbaa731-dd60-487a-ba59-a52569027f50"},{"name":"Update guardians","id":"f6b6777a-a4a9-47cd-a3b9-a493283485a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"id\": 328,\n        \"name\": \"Heather Kuhn\",\n        \"first_name\": \"Jonathon\",\n        \"last_name\": \"Shields\",\n        \"gender\": \"omnis\",\n        \"timezone\": \"saepe\",\n        \"date_of_birth\": \"2018-06-04\",\n        \"address\": {\n            \"address1\": \"9542 Kerluke Mall Apt. 193\",\n            \"address2\": \"70173 Boris Loop\",\n            \"address3\": \"43072 Pfannerstill Spur\",\n            \"address4\": \"8665 Deshaun Stravenue Apt. 134\",\n            \"locality\": \"Audreyberg\",\n            \"region\": \"Washington\",\n            \"postcode\": \"53976\"\n        },\n        \"email\": \"kaleigh45@example.net\",\n        \"alternate_email\": \"uerdman@example.net\",\n        \"primary_phone\": {\n            \"number\": \"(861) 307-9278\",\n            \"country_code\": 1,\n            \"extension\": 541260396,\n            \"type\": 20\n        },\n        \"alternate_phone\": {\n            \"number\": \"(396) 623-5591\",\n            \"country_code\": 1,\n            \"extension\": 66222,\n            \"type\": 19\n        }\n    },\n    {\n        \"id\": 18,\n        \"name\": \"Ms. Madonna Beahan Sr.\",\n        \"first_name\": \"Ona\",\n        \"last_name\": \"Conroy\",\n        \"gender\": \"doloremque\",\n        \"timezone\": \"libero\",\n        \"date_of_birth\": \"1919-06-15\",\n        \"address\": {\n            \"address1\": \"4903 Hintz Wall\",\n            \"address2\": \"48015 Keebler Ranch\",\n            \"address3\": \"6532 Little Lakes\",\n            \"address4\": \"6344 Marks Mount Suite 362\",\n            \"locality\": \"Fostermouth\",\n            \"region\": \"Idaho\",\n            \"postcode\": \"23366-7665\"\n        },\n        \"email\": \"hrath@example.org\",\n        \"alternate_email\": \"walton86@example.org\",\n        \"primary_phone\": {\n            \"number\": \"(374) 455-1672\",\n            \"country_code\": 1,\n            \"extension\": 664429,\n            \"type\": 19\n        },\n        \"alternate_phone\": {\n            \"number\": \"(714) 313-7276\",\n            \"country_code\": 1,\n            \"extension\": 5,\n            \"type\": 20\n        }\n    }\n]"},"url":"{{url}}/api/v3/families/7/guardians","urlObject":{"path":["api","v3","families","7","guardians"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f6b6777a-a4a9-47cd-a3b9-a493283485a7"},{"name":"Update a guardian","id":"04670b3a-d9bc-44f7-9436-d490b44011ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"id\": 657,\n    \"name\": \"Contact Test\",\n    \"first_name\": \"Contact\",\n    \"last_name\": \"Test\",\n    \"gender\": \"\",\n    \"timezone\": \"\",\n    \"date_of_birth\": null,\n    \"address\": {\n        \"address1\": \"Test address added in the test controller\",\n        \"address2\": \"\",\n        \"address3\": \"\",\n        \"address4\": \"\",\n        \"locality\": \"\",\n        \"region\": \"\",\n        \"postcode\": \"\"\n    },\n    \"email\": \"\",\n    \"alternate_email\": \"\",\n    \"primary_phone\": {\n        \"number\": \"5555555555\",\n        \"type\": 20,\n        \"country_code\": 1,\n        \"extension\": 1\n    }\n}\n"},"url":"{{url}}/api/v3/families/907/guardians/657","urlObject":{"path":["api","v3","families","907","guardians","657"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04670b3a-d9bc-44f7-9436-d490b44011ae"},{"name":"Delete a guardian","id":"ae8403b0-43ce-4626-b872-56b33b2eaf1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{urll}/api/v3/families/1/guardians/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","guardians","1"],"host":["{{urll}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae8403b0-43ce-4626-b872-56b33b2eaf1d"},{"name":"Add guardians","id":"49e6e950-6ca6-4be5-8531-c3806097f7af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"Heather Kuhn\",\n        \"first_name\": \"Jonathon\",\n        \"last_name\": \"Shields\",\n        \"gender\": \"omnis\",\n        \"date_of_birth\": \"2018-06-04\",\n        \"address\": {\n            \"address1\": \"9542 Kerluke Mall Apt. 193\",\n            \"address2\": \"70173 Boris Loop\",\n            \"address3\": \"43072 Pfannerstill Spur\",\n            \"address4\": \"8665 Deshaun Stravenue Apt. 134\",\n            \"locality\": \"Audreyberg\",\n            \"region\": \"Washington\",\n            \"postcode\": \"53976\"\n        },\n        \"email\": \"kaleigh45@example.net\",\n        \"alternate_email\": \"uerdman@example.net\",\n        \"primary_phone\": {\n            \"number\": \"(861) 307-9278\",\n            \"country_code\": 1,\n            \"extension\": 541260396,\n            \"type\": \"Cell\"\n        },\n        \"alternate_phone\": {\n            \"number\": \"(396) 623-5591\",\n            \"country_code\": 1,\n            \"extension\": 66222,\n            \"type\": \"Work\"\n        },\n        \"integrations\": [\n        \t{\n\t    \t\t\"id\": 12345,\n\t    \t\t\"integration_partner_id\": 1\n    \t\t}\n        ]\n    },\n    {\n        \"id\": 18,\n        \"name\": \"Ms. Madonna Beahan Sr.\",\n        \"first_name\": \"Ona\",\n        \"last_name\": \"Conroy\",\n        \"gender\": \"doloremque\",\n        \"timezone\": \"libero\",\n        \"date_of_birth\": \"1919-06-15\",\n        \"address\": {\n            \"address1\": \"4903 Hintz Wall\",\n            \"address2\": \"48015 Keebler Ranch\",\n            \"address3\": \"6532 Little Lakes\",\n            \"address4\": \"6344 Marks Mount Suite 362\",\n            \"locality\": \"Fostermouth\",\n            \"region\": \"Idaho\",\n            \"postcode\": \"23366-7665\"\n        },\n        \"email\": \"hrath@example.org\",\n        \"alternate_email\": \"walton86@example.org\",\n        \"phone\": {\n            \"number\": \"(374) 455-1672\",\n            \"country_code\": 1,\n            \"extension\": 664429,\n            \"type\": 19\n        },\n        \"alternate_phone\": {\n            \"number\": \"(714) 313-7276\",\n            \"country_code\": 1,\n            \"extension\": 5,\n            \"type\": 20\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/1/guardians","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1","guardians"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"f104e16f-98df-4d17-9f0c-a1f13d72631a","name":"Add guardians","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"Heather Kuhn\",\n        \"first_name\": \"Jonathon\",\n        \"last_name\": \"Shields\",\n        \"gender\": \"omnis\",\n        \"timezone\": \"saepe\",\n        \"date_of_birth\": \"2018-06-04\",\n        \"address\": {\n            \"address1\": \"9542 Kerluke Mall Apt. 193\",\n            \"address2\": \"70173 Boris Loop\",\n            \"address3\": \"43072 Pfannerstill Spur\",\n            \"address4\": \"8665 Deshaun Stravenue Apt. 134\",\n            \"locality\": \"Audreyberg\",\n            \"region\": \"Washington\",\n            \"postcode\": \"53976\"\n        },\n        \"email\": \"kaleigh45@example.net\",\n        \"alternate_email\": \"uerdman@example.net\",\n        \"phone\": {\n            \"number\": \"(861) 307-9278\",\n            \"country_code\": 1,\n            \"extension\": 541260396,\n            \"type\": \"Cell\"\n        },\n        \"alternate_phone\": {\n            \"number\": \"(396) 623-5591\",\n            \"country_code\": 1,\n            \"extension\": 66222,\n            \"type\": \"Work\"\n        },\n        \"integrations\": [\n        \t{\n\t    \t\t\"id\": 12345,\n\t    \t\t\"integration_partner_id\": 1\n    \t\t}\n        ]\n    },\n    {\n        \"id\": 18,\n        \"name\": \"Ms. Madonna Beahan Sr.\",\n        \"first_name\": \"Ona\",\n        \"last_name\": \"Conroy\",\n        \"gender\": \"doloremque\",\n        \"timezone\": \"libero\",\n        \"date_of_birth\": \"1919-06-15\",\n        \"address\": {\n            \"address1\": \"4903 Hintz Wall\",\n            \"address2\": \"48015 Keebler Ranch\",\n            \"address3\": \"6532 Little Lakes\",\n            \"address4\": \"6344 Marks Mount Suite 362\",\n            \"locality\": \"Fostermouth\",\n            \"region\": \"Idaho\",\n            \"postcode\": \"23366-7665\"\n        },\n        \"email\": \"hrath@example.org\",\n        \"alternate_email\": \"walton86@example.org\",\n        \"phone\": {\n            \"number\": \"(374) 455-1672\",\n            \"country_code\": 1,\n            \"extension\": 664429,\n            \"type\": 19\n        },\n        \"alternate_phone\": {\n            \"number\": \"(714) 313-7276\",\n            \"country_code\": 1,\n            \"extension\": 5,\n            \"type\": 20\n        }\n    }\n]","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/families/1/guardians"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 28 May 2020 17:10:45 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.17"},{"key":"Set-Cookie","value":"PHPSESSID=a2682673ded802d641d3c69cbfc73632; path=/; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Wed, 29-May-2019 17:10:47 GMT; Max-Age=0; path=/; httponly"},{"key":"Set-Cookie","value":"sf_redirect=%7B%22token%22%3A%229284e0%22%2C%22route%22%3A%22api_families_add_guardians%22%2C%22method%22%3A%22POST%22%2C%22controller%22%3A%7B%22class%22%3A%22App%5C%5CController%5C%5CAPI%5C%5CGuardiansController%22%2C%22method%22%3A%22postGuardians%22%2C%22file%22%3A%22%5C%2Fvar%5C%2Fwww%5C%2FCRM%5C%2Fsrc%5C%2FController%5C%2FAPI%5C%2FGuardiansController.php%22%2C%22line%22%3A330%7D%2C%22status_code%22%3A201%2C%22status_text%22%3A%22Created%22%7D; path=/; httponly; samesite=lax"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"9284e0"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/9284e0"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Thu, 28 May 2020 17:10:48 GMT"},{"key":"Content-Length","value":"2014"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 65,\n        \"name\": \"Jonathon Shields\",\n        \"first_name\": \"Jonathon\",\n        \"last_name\": \"Shields\",\n        \"title\": \"\",\n        \"gender\": \"omnis\",\n        \"date_of_birth\": \"2018-06-04\",\n        \"added_date\": \"2020-05-28\",\n        \"email\": \"kaleigh45@example.net\",\n        \"alternate_email\": \"uerdman@example.net\",\n        \"address\": {\n            \"address1\": \"9542 Kerluke Mall Apt. 193\",\n            \"address2\": \"70173 Boris Loop\",\n            \"address3\": \"43072 Pfannerstill Spur\",\n            \"address4\": \"8665 Deshaun Stravenue Apt. 134\",\n            \"locality\": \"Audreyberg\",\n            \"region\": \"Washington\",\n            \"postcode\": \"53976\",\n            \"country_code\": \"\",\n            \"longitude\": \"\",\n            \"latitude\": \"\"\n        },\n        \"phone\": {\n            \"type\": {\n                \"id\": 19,\n                \"values\": {\n                    \"value\": \"Cell\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/phone/19\",\n                        \"rel\": \"phone_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"country_code\": \"1\",\n            \"number\": \"(861) 307-9278\",\n            \"number_e164\": \"+18613079278\",\n            \"extension\": \"541260396\"\n        },\n        \"center_id\": 1,\n        \"external_system_id\": null,\n        \"integrations\": [\n            {\n                \"id\": \"12345\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"primary_phone\": {\n            \"type\": {\n                \"id\": 19,\n                \"values\": {\n                    \"value\": \"Cell\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/phone/19\",\n                        \"rel\": \"phone_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"country_code\": \"1\",\n            \"number\": \"(861) 307-9278\",\n            \"number_e164\": \"+18613079278\",\n            \"extension\": \"541260396\"\n        }\n    },\n    {\n        \"id\": 67,\n        \"name\": \"Ona Conroy\",\n        \"first_name\": \"Ona\",\n        \"last_name\": \"Conroy\",\n        \"title\": \"\",\n        \"gender\": \"doloremque\",\n        \"date_of_birth\": \"1919-06-15\",\n        \"added_date\": \"2020-05-28\",\n        \"email\": \"hrath@example.org\",\n        \"alternate_email\": \"walton86@example.org\",\n        \"address\": {\n            \"address1\": \"4903 Hintz Wall\",\n            \"address2\": \"48015 Keebler Ranch\",\n            \"address3\": \"6532 Little Lakes\",\n            \"address4\": \"6344 Marks Mount Suite 362\",\n            \"locality\": \"Fostermouth\",\n            \"region\": \"Idaho\",\n            \"postcode\": \"23366-7665\",\n            \"country_code\": \"\",\n            \"longitude\": \"\",\n            \"latitude\": \"\"\n        },\n        \"phone\": {\n            \"type\": null,\n            \"country_code\": \"1\",\n            \"number\": \"(374) 455-1672\",\n            \"number_e164\": \"+13744551672\",\n            \"extension\": \"664429\"\n        },\n        \"center_id\": 1,\n        \"external_system_id\": null,\n        \"integrations\": [],\n        \"primary_phone\": {\n            \"type\": null,\n            \"country_code\": \"1\",\n            \"number\": \"(374) 455-1672\",\n            \"number_e164\": \"+13744551672\",\n            \"extension\": \"664429\"\n        }\n    }\n]"}],"_postman_id":"49e6e950-6ca6-4be5-8531-c3806097f7af"},{"name":"Swap with primary guardian","id":"84e672e7-2f95-4141-b34e-57a1fec3a705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{url}}/api/v3/families/1214/guardians/1406/make-primary","description":"<p>Swaps the contact information and any integration ids between this guardian and the primary guardian. Does not change the ids for either entity in LineLeader.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","1214","guardians","1406","make-primary"],"host":["{{url}}"],"query":[{"disabled":true,"key":"XEBUG_SESSION_START","value":"PHPSTORM"}],"variable":[]}},"response":[],"_postman_id":"84e672e7-2f95-4141-b34e-57a1fec3a705"}],"id":"cd33df42-04e1-44af-b183-ac200ee97fd9","description":"<p>Any Contact that has been flagged (by Center Staff) as a “Guardian” in the CRM database.  You need a Family ID and Guardian/Lead ID to call a Family’s Guardian data. All guardians are contacts, but not all contacts are guardians.</p>\n","event":[{"listen":"prerequest","script":{"id":"41fa9eeb-bfc4-4e0d-bacf-b756543b5a5d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f3af350d-aeca-4bb0-a553-1658574a463f","type":"text/javascript","exec":[""]}}],"_postman_id":"cd33df42-04e1-44af-b183-ac200ee97fd9","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Exports","item":[{"name":"Get Pending Exports","id":"4a8be8ec-07f0-4b18-9072-222d5f68ec6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/families/pending-exports","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","pending-exports"],"host":["{{url}}"],"query":[{"disabled":true,"key":"org_id","value":"1"}],"variable":[]}},"response":[{"id":"600775ae-aae7-4bd7-995a-51dee71c8c47","name":"Get Pending Exports","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v3/families/pending-exports","host":["{{url}}"],"path":["api","v3","families","pending-exports"],"query":[{"key":"org_id","value":"1","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 22 Jul 2021 18:56:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=2qv0g1lttngusbpdpvm1pqs4pn; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Wed, 22-Jul-2020 18:56:18 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"6"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"18973f"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/18973f"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Thu, 22 Jul 2021 18:56:19 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 54,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:20+00:00\",\n        \"created_date\": \"2021-06-28T18:57:20+00:00\",\n        \"added_date\": \"2021-06-28T18:57:20+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 55,\n            \"name\": \"mal60da1b90c0eaa5.16092033 reynolds60da1b90c0eb64.86377036\",\n            \"first_name\": \"mal60da1b90c0eaa5.16092033\",\n            \"last_name\": \"reynolds60da1b90c0eb64.86377036\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:20+00:00\",\n            \"email\": \"mal60da1b90c0ebb1.24109028@reynolds.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b90c0eb91.79968322\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(511) 628-6816\",\n                \"number_e164\": \"+15116286816\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 55,\n                \"name\": \"mal60da1b90c0eaa5.16092033 reynolds60da1b90c0eb64.86377036\",\n                \"first_name\": \"mal60da1b90c0eaa5.16092033\",\n                \"last_name\": \"reynolds60da1b90c0eb64.86377036\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:20+00:00\",\n                \"email\": \"mal60da1b90c0ebb1.24109028@reynolds.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b90c0eb91.79968322\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(511) 628-6816\",\n                    \"number_e164\": \"+15116286816\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 71,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:20+00:00\",\n                \"name\": \"Enrolled bebop60da1b90f1ea80.15547698\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b90f1ea80.15547698\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:20+00:00\",\n                \"system_date\": \"2021-06-28T18:57:20+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 55,\n                        \"values\": {\n                            \"family_id\": 54,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b90c0eaa5.16092033 reynolds60da1b90c0eb64.86377036\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/54/guardians/55\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 71,\n                        \"values\": {\n                            \"child_id\": 71\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/71\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 70,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:20+00:00\",\n                \"name\": \"Registered bebop60da1b90e062d4.18706895\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b90e062d4.18706895\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:20+00:00\",\n                \"system_date\": \"2021-06-28T18:57:20+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 55,\n                        \"values\": {\n                            \"family_id\": 54,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b90c0eaa5.16092033 reynolds60da1b90c0eb64.86377036\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/54/guardians/55\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 70,\n                        \"values\": {\n                            \"child_id\": 70\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/70\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 55,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n        \"created_date\": \"2021-06-28T18:57:21+00:00\",\n        \"added_date\": \"2021-06-28T18:57:21+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 57,\n            \"name\": \"mal60da1b912731d8.22666848 reynolds60da1b91273221.86596934\",\n            \"first_name\": \"mal60da1b912731d8.22666848\",\n            \"last_name\": \"reynolds60da1b91273221.86596934\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:21+00:00\",\n            \"email\": \"mal60da1b91273256.02777040@reynolds.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b91273232.58353550\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(700) 790-6209\",\n                \"number_e164\": \"+17007906209\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 57,\n                \"name\": \"mal60da1b912731d8.22666848 reynolds60da1b91273221.86596934\",\n                \"first_name\": \"mal60da1b912731d8.22666848\",\n                \"last_name\": \"reynolds60da1b91273221.86596934\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"email\": \"mal60da1b91273256.02777040@reynolds.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b91273232.58353550\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(700) 790-6209\",\n                    \"number_e164\": \"+17007906209\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 73,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n                \"name\": \"Enrolled bebop60da1b91590cc1.32797542\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b91590cc1.32797542\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"system_date\": \"2021-06-28T18:57:21+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 57,\n                        \"values\": {\n                            \"family_id\": 55,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b912731d8.22666848 reynolds60da1b91273221.86596934\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/55/guardians/57\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 73,\n                        \"values\": {\n                            \"child_id\": 73\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/73\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 72,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n                \"name\": \"Registered bebop60da1b9148fa00.33824603\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b9148fa00.33824603\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"system_date\": \"2021-06-28T18:57:21+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 57,\n                        \"values\": {\n                            \"family_id\": 55,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b912731d8.22666848 reynolds60da1b91273221.86596934\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/55/guardians/57\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 72,\n                        \"values\": {\n                            \"child_id\": 72\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/72\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 56,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n        \"created_date\": \"2021-06-28T18:57:21+00:00\",\n        \"added_date\": \"2021-06-28T18:57:21+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 59,\n            \"name\": \"mal60da1b9179dc22.13528428 reynolds60da1b9179dc63.25403797\",\n            \"first_name\": \"mal60da1b9179dc22.13528428\",\n            \"last_name\": \"reynolds60da1b9179dc63.25403797\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:21+00:00\",\n            \"email\": \"mal60da1b9179dc82.78860219@reynolds.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b9179dc73.18163860\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(571) 566-1910\",\n                \"number_e164\": \"+15715661910\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 59,\n                \"name\": \"mal60da1b9179dc22.13528428 reynolds60da1b9179dc63.25403797\",\n                \"first_name\": \"mal60da1b9179dc22.13528428\",\n                \"last_name\": \"reynolds60da1b9179dc63.25403797\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"email\": \"mal60da1b9179dc82.78860219@reynolds.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b9179dc73.18163860\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(571) 566-1910\",\n                    \"number_e164\": \"+15715661910\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 75,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n                \"name\": \"Enrolled bebop60da1b91aac485.50007938\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b91aac485.50007938\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"system_date\": \"2021-06-28T18:57:21+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 59,\n                        \"values\": {\n                            \"family_id\": 56,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b9179dc22.13528428 reynolds60da1b9179dc63.25403797\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/56/guardians/59\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 75,\n                        \"values\": {\n                            \"child_id\": 75\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/75\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 74,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:21+00:00\",\n                \"name\": \"Registered bebop60da1b91993487.52092010\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b91993487.52092010\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:21+00:00\",\n                \"system_date\": \"2021-06-28T18:57:21+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 59,\n                        \"values\": {\n                            \"family_id\": 56,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b9179dc22.13528428 reynolds60da1b9179dc63.25403797\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/56/guardians/59\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 74,\n                        \"values\": {\n                            \"child_id\": 74\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/74\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 59,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n        \"created_date\": \"2021-06-28T18:57:22+00:00\",\n        \"added_date\": \"2021-06-28T18:57:22+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 64,\n            \"name\": \"mal60da1b92431e11.29810917 reynolds60da1b92431e57.26134114\",\n            \"first_name\": \"mal60da1b92431e11.29810917\",\n            \"last_name\": \"reynolds60da1b92431e57.26134114\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:22+00:00\",\n            \"email\": \"\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b92431e60.60557698\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 64,\n                \"name\": \"mal60da1b92431e11.29810917 reynolds60da1b92431e57.26134114\",\n                \"first_name\": \"mal60da1b92431e11.29810917\",\n                \"last_name\": \"reynolds60da1b92431e57.26134114\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"email\": \"\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b92431e60.60557698\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 79,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n                \"name\": \"Enrolled bebop60da1b9277e0f8.42503667\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b9277e0f8.42503667\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"system_date\": \"2021-06-28T18:57:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 64,\n                        \"values\": {\n                            \"family_id\": 59,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b92431e11.29810917 reynolds60da1b92431e57.26134114\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/59/guardians/64\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 79,\n                        \"values\": {\n                            \"child_id\": 79\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/79\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 78,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n                \"name\": \"Registered bebop60da1b9265d375.89689183\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b9265d375.89689183\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"system_date\": \"2021-06-28T18:57:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 64,\n                        \"values\": {\n                            \"family_id\": 59,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b92431e11.29810917 reynolds60da1b92431e57.26134114\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/59/guardians/64\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 78,\n                        \"values\": {\n                            \"child_id\": 78\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/78\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 60,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n        \"created_date\": \"2021-06-28T18:57:22+00:00\",\n        \"added_date\": \"2021-06-28T18:57:22+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 66,\n            \"name\": \"mal60da1b92a3cde4.87385794 reynolds60da1b92a3ce39.14997673\",\n            \"first_name\": \"mal60da1b92a3cde4.87385794\",\n            \"last_name\": \"reynolds60da1b92a3ce39.14997673\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:22+00:00\",\n            \"email\": \"mal60da1b92a3ce61.06023236@reynolds.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b92a3ce56.33141713\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1084922625\",\n                \"number_e164\": \"+11084922625\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 66,\n                \"name\": \"mal60da1b92a3cde4.87385794 reynolds60da1b92a3ce39.14997673\",\n                \"first_name\": \"mal60da1b92a3cde4.87385794\",\n                \"last_name\": \"reynolds60da1b92a3ce39.14997673\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"email\": \"mal60da1b92a3ce61.06023236@reynolds.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b92a3ce56.33141713\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1084922625\",\n                    \"number_e164\": \"+11084922625\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 81,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n                \"name\": \"Enrolled bebop60da1b92d58906.75202707\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b92d58906.75202707\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"system_date\": \"2021-06-28T18:57:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 66,\n                        \"values\": {\n                            \"family_id\": 60,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b92a3cde4.87385794 reynolds60da1b92a3ce39.14997673\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/60/guardians/66\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 81,\n                        \"values\": {\n                            \"child_id\": 81\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/81\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 80,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:22+00:00\",\n                \"name\": \"Registered bebop60da1b92c464f6.04038538\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b92c464f6.04038538\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:22+00:00\",\n                \"system_date\": \"2021-06-28T18:57:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 66,\n                        \"values\": {\n                            \"family_id\": 60,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b92a3cde4.87385794 reynolds60da1b92a3ce39.14997673\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/60/guardians/66\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 80,\n                        \"values\": {\n                            \"child_id\": 80\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/80\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 62,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"center_1_S?.oQixMunf%n2oD_.9QogKy|g87hVypa<s|P'7IK@jplGq\\\\wn\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": true,\n        \"exported_date\": \"2021-06-28T18:57:23+00:00\",\n        \"created_date\": \"2021-06-28T18:57:23+00:00\",\n        \"added_date\": \"2021-06-28T18:57:23+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 327,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/source/327\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"marketing_campaigns\": [],\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 69,\n            \"name\": \"mal60da1b9317b398.36169315 reynolds60da1b9317b3e1.32667833\",\n            \"first_name\": \"mal60da1b9317b398.36169315\",\n            \"last_name\": \"reynolds60da1b9317b3e1.32667833\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-06-28T18:57:23+00:00\",\n            \"email\": \"mal60da1b9317b416.70782640@reynolds.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"serenity60da1b9317b3f0.00312424\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(676) 313-4139\",\n                \"number_e164\": \"+16763134139\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": null,\n            \"child_relation\": null,\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null\n        },\n        \"guardians\": [\n            {\n                \"id\": 69,\n                \"name\": \"mal60da1b9317b398.36169315 reynolds60da1b9317b3e1.32667833\",\n                \"first_name\": \"mal60da1b9317b398.36169315\",\n                \"last_name\": \"reynolds60da1b9317b3e1.32667833\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2021-06-28T18:57:23+00:00\",\n                \"email\": \"mal60da1b9317b416.70782640@reynolds.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"serenity60da1b9317b3f0.00312424\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(676) 313-4139\",\n                    \"number_e164\": \"+16763134139\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": null,\n                \"child_relation\": null,\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null\n                },\n                \"integrations\": [],\n                \"family_rep\": null,\n                \"marketing_note\": \"\",\n                \"referred_by\": \"\",\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\"\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 83,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": \"2021-06-28\",\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": \"2021-06-28\",\n                    \"withdrawn_reason\": {\n                        \"id\": 839,\n                        \"values\": {\n                            \"value\": \"Withdrawn in ProCare\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/reasons/withdrawn/839\",\n                                \"rel\": \"withdrawn_reason\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:23+00:00\",\n                \"name\": \"Enrolled bebop60da1b9348bcf3.54403507\",\n                \"first_name\": \"Enrolled\",\n                \"last_name\": \"bebop60da1b9348bcf3.54403507\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:23+00:00\",\n                \"system_date\": \"2021-06-28T18:57:23+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 69,\n                        \"values\": {\n                            \"family_id\": 62,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b9317b398.36169315 reynolds60da1b9317b3e1.32667833\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/62/guardians/69\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 83,\n                        \"values\": {\n                            \"child_id\": 83\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/83\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            },\n            {\n                \"id\": 82,\n                \"status\": {\n                    \"id\": 5,\n                    \"values\": {\n                        \"name\": \"Registered\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/5\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"status_details\": {\n                    \"enrolled_date\": null,\n                    \"enrolled_reason\": null,\n                    \"enrolled_comment\": null,\n                    \"expected_start_date\": null,\n                    \"lost_opportunity_reason\": null,\n                    \"lost_opportunity_comment\": null,\n                    \"rejected_reason\": null,\n                    \"rejected_comment\": null,\n                    \"temp_leave_date\": null,\n                    \"temp_leave_reason\": null,\n                    \"temp_leave_comment\": null,\n                    \"wait_list_date\": null,\n                    \"wait_list_type\": null,\n                    \"wait_list_priority\": null,\n                    \"wait_list_reason\": null,\n                    \"wait_list_comment\": null,\n                    \"wait_list_fee\": null,\n                    \"is_wait_list_fee_paid\": false,\n                    \"wait_list_fee_paid_date\": null,\n                    \"withdrawn_date\": null,\n                    \"withdrawn_reason\": null,\n                    \"withdrawn_comment\": null,\n                    \"temp_leave_comments\": null\n                },\n                \"exported\": true,\n                \"exported_date\": \"2021-06-28T18:57:23+00:00\",\n                \"name\": \"Registered bebop60da1b933948c8.48580775\",\n                \"first_name\": \"Registered\",\n                \"last_name\": \"bebop60da1b933948c8.48580775\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"1970-01-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2021-06-28T18:57:23+00:00\",\n                \"system_date\": \"2021-06-28T18:57:23+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 69,\n                        \"values\": {\n                            \"family_id\": 62,\n                            \"is_primary\": true,\n                            \"name\": \"mal60da1b9317b398.36169315 reynolds60da1b9317b3e1.32667833\",\n                            \"status\": 1\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/62/guardians/69\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 82,\n                        \"values\": {\n                            \"child_id\": 82\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/82\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [],\n                \"custom_type_1\": null,\n                \"custom_type_2\": null,\n                \"custom_type_3\": null,\n                \"custom_type_4\": null,\n                \"good_standing\": false,\n                \"is_child_of_staff\": false,\n                \"current_situation\": null,\n                \"is_eligible_for_reenrollment\": false,\n                \"prior_likes\": \"\",\n                \"prior_dislikes\": \"\",\n                \"prior_situation_comment\": \"\",\n                \"reason_for_change\": null,\n                \"is_sibling_in_care\": false,\n                \"custom_values\": []\n            }\n        ],\n        \"integrations\": [],\n        \"linked_families\": null,\n        \"custom_values\": [],\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null,\n        \"enrollment_rep\": null\n    }\n]"}],"_postman_id":"4a8be8ec-07f0-4b18-9072-222d5f68ec6b"},{"name":"Complete Primary Guardian Export","id":"3eb0a246-42f3-4637-b9ca-5fce36eb441e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"1234567\",\n    \"integration_partner_id\": 1\n}"},"url":"{{url}}/api/v3/families/6/complete-export","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","6","complete-export"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3eb0a246-42f3-4637-b9ca-5fce36eb441e"},{"name":"Complete Child Export","id":"8d1bae7b-a165-47a6-9a72-aa27841d2093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"12345678\",\n    \"integration_partner_id\": 1\n}"},"url":"{{url}}/api/v3/families/470/children/350/complete-export","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","470","children","350","complete-export"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d1bae7b-a165-47a6-9a72-aa27841d2093"}],"id":"0f68252d-4723-4d45-9ac5-bc98c0aab3f4","description":"<p>Endpoints to retrieve families pending export to an integration partner. Mostly used for management system integrations.</p>\n","event":[{"listen":"prerequest","script":{"id":"b4abe532-7c41-468a-b02f-9b2b3080a672","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"402e5d6a-25e0-48ca-82b5-f1f8c0feaf8a","type":"text/javascript","exec":[""]}}],"_postman_id":"0f68252d-4723-4d45-9ac5-bc98c0aab3f4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Get all families","id":"2c85b27c-39ea-4206-bfeb-9ea922dc0b0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"089cfcb5-ca15-472c-841b-f9ececbe14af","name":"Get all families","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 11 May 2020 22:12:17 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.17"},{"key":"Set-Cookie","value":"PHPSESSID=13a2f4c5bfa299e9c3c7bbe4c2804e17; path=/; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Sun, 12-May-2019 22:12:19 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"67"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"c94817"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/c94817"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Mon, 11 May 2020 22:12:20 GMT"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 2,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:38+00:00\",\n        \"inquiry_type\": {\n            \"id\": 142,\n            \"values\": {\n                \"value\": \"Email\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/142\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 24,\n            \"values\": {\n                \"value\": \"Publication Adv\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/24\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 834,\n            \"values\": {\n                \"value\": \"Wait List Form\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/834\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 2,\n            \"name\": \"Henri fixture-lead-2\",\n            \"first_name\": \"Henri\",\n            \"last_name\": \"fixture-lead-2\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:38+00:00\",\n            \"email\": \"childcarespam2@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(968) 889-5772\",\n                \"number_e164\": \"+19688895772\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 2,\n                \"name\": \"Henri fixture-lead-2\",\n                \"first_name\": \"Henri\",\n                \"last_name\": \"fixture-lead-2\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:38+00:00\",\n                \"email\": \"childcarespam2@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(968) 889-5772\",\n                    \"number_e164\": \"+19688895772\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 2,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Clovis fixture-child-2-1\",\n                \"first_name\": \"Clovis\",\n                \"last_name\": \"fixture-child-2-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-01-09\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 2,\n                        \"values\": {\n                            \"family_id\": 2,\n                            \"is_primary\": true,\n                            \"name\": \"Henri fixture-lead-2\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/2/guardians/2\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 2,\n                        \"values\": {\n                            \"child_id\": 2\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/2\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 3,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Heath fixture-child-2-2\",\n                \"first_name\": \"Heath\",\n                \"last_name\": \"fixture-child-2-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-12-16\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 2,\n                        \"values\": {\n                            \"family_id\": 2,\n                            \"is_primary\": true,\n                            \"name\": \"Henri fixture-lead-2\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/2/guardians/2\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 3,\n                        \"values\": {\n                            \"child_id\": 3\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/3\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 3,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 827,\n            \"values\": {\n                \"value\": \"User\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/827\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 3,\n            \"name\": \"Kiana fixture-lead-3\",\n            \"first_name\": \"Kiana\",\n            \"last_name\": \"fixture-lead-3\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam3@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(982) 318-6271\",\n                \"number_e164\": \"+19823186271\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 3,\n                \"name\": \"Kiana fixture-lead-3\",\n                \"first_name\": \"Kiana\",\n                \"last_name\": \"fixture-lead-3\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam3@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(982) 318-6271\",\n                    \"number_e164\": \"+19823186271\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 43,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 142,\n            \"values\": {\n                \"value\": \"Email\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/142\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 120,\n            \"values\": {\n                \"value\": \"Drove By Location\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/120\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 43,\n            \"name\": \"Julien fixture-lead-43\",\n            \"first_name\": \"Julien\",\n            \"last_name\": \"fixture-lead-43\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam43@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(440) 672-8533\",\n                \"number_e164\": \"+14406728533\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 43,\n                \"name\": \"Julien fixture-lead-43\",\n                \"first_name\": \"Julien\",\n                \"last_name\": \"fixture-lead-43\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam43@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(440) 672-8533\",\n                    \"number_e164\": \"+14406728533\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 5,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 25,\n            \"values\": {\n                \"value\": \"Flyer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/25\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 832,\n            \"values\": {\n                \"value\": \"Kiosk\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/832\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 5,\n            \"name\": \"Ulises fixture-lead-5\",\n            \"first_name\": \"Ulises\",\n            \"last_name\": \"fixture-lead-5\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam5@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (819) 415-4158\",\n                \"number_e164\": \"+18194154158\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 2,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 5,\n                \"name\": \"Ulises fixture-lead-5\",\n                \"first_name\": \"Ulises\",\n                \"last_name\": \"fixture-lead-5\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam5@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (819) 415-4158\",\n                    \"number_e164\": \"+18194154158\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 5,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Denis fixture-child-5-1\",\n                \"first_name\": \"Denis\",\n                \"last_name\": \"fixture-child-5-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-11-18\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 5,\n                        \"values\": {\n                            \"family_id\": 5,\n                            \"is_primary\": true,\n                            \"name\": \"Ulises fixture-lead-5\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/5/guardians/5\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 5,\n                        \"values\": {\n                            \"child_id\": 5\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/5\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 6,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Colton fixture-child-5-2\",\n                \"first_name\": \"Colton\",\n                \"last_name\": \"fixture-child-5-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-08-13\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 5,\n                        \"values\": {\n                            \"family_id\": 5,\n                            \"is_primary\": true,\n                            \"name\": \"Ulises fixture-lead-5\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/5/guardians/5\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 6,\n                        \"values\": {\n                            \"child_id\": 6\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/6\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 6,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 140,\n            \"values\": {\n                \"value\": \"Phone\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/140\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 25,\n            \"values\": {\n                \"value\": \"Flyer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/25\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 6,\n            \"name\": \"Percival fixture-lead-6\",\n            \"first_name\": \"Percival\",\n            \"last_name\": \"fixture-lead-6\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam6@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(814) 781-9822\",\n                \"number_e164\": \"+18147819822\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandmother\",\n            \"center_id\": 2,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 6,\n                \"name\": \"Percival fixture-lead-6\",\n                \"first_name\": \"Percival\",\n                \"last_name\": \"fixture-lead-6\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam6@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(814) 781-9822\",\n                    \"number_e164\": \"+18147819822\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandmother\",\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 8,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 120,\n            \"values\": {\n                \"value\": \"Drove By Location\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/120\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 827,\n            \"values\": {\n                \"value\": \"User\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/827\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 8,\n            \"name\": \"Gloria fixture-lead-8\",\n            \"first_name\": \"Gloria\",\n            \"last_name\": \"fixture-lead-8\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam8@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(835) 318-5163\",\n                \"number_e164\": \"+18353185163\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Aunt\",\n            \"center_id\": 3,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 8,\n                \"name\": \"Gloria fixture-lead-8\",\n                \"first_name\": \"Gloria\",\n                \"last_name\": \"fixture-lead-8\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam8@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(835) 318-5163\",\n                    \"number_e164\": \"+18353185163\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Aunt\",\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 8,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"David fixture-child-8-1\",\n                \"first_name\": \"David\",\n                \"last_name\": \"fixture-child-8-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-06-16\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 8,\n                        \"values\": {\n                            \"family_id\": 8,\n                            \"is_primary\": true,\n                            \"name\": \"Gloria fixture-lead-8\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/8/guardians/8\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 8,\n                        \"values\": {\n                            \"child_id\": 8\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/8\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 9,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Giovani fixture-child-8-2\",\n                \"first_name\": \"Giovani\",\n                \"last_name\": \"fixture-child-8-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-06-02\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 8,\n                        \"values\": {\n                            \"family_id\": 8,\n                            \"is_primary\": true,\n                            \"name\": \"Gloria fixture-lead-8\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/8/guardians/8\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 9,\n                        \"values\": {\n                            \"child_id\": 9\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/9\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 9,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 377,\n            \"values\": {\n                \"value\": \"Referral-Family\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/377\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 837,\n            \"values\": {\n                \"value\": \"Self-Scheduled Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/837\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 9,\n            \"name\": \"Brooklyn fixture-lead-9\",\n            \"first_name\": \"Brooklyn\",\n            \"last_name\": \"fixture-lead-9\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam9@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(608) 807-7066\",\n                \"number_e164\": \"+16088077066\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 3,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 9,\n                \"name\": \"Brooklyn fixture-lead-9\",\n                \"first_name\": \"Brooklyn\",\n                \"last_name\": \"fixture-lead-9\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam9@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(608) 807-7066\",\n                    \"number_e164\": \"+16088077066\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 11,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 195,\n            \"values\": {\n                \"value\": \"Center Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/195\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 11,\n            \"name\": \"Ben fixture-lead-11\",\n            \"first_name\": \"Ben\",\n            \"last_name\": \"fixture-lead-11\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam11@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(460) 369-2855\",\n                \"number_e164\": \"+14603692855\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Guardian\",\n            \"center_id\": 4,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 11,\n                \"name\": \"Ben fixture-lead-11\",\n                \"first_name\": \"Ben\",\n                \"last_name\": \"fixture-lead-11\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam11@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(460) 369-2855\",\n                    \"number_e164\": \"+14603692855\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Guardian\",\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 11,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Eleazar fixture-child-11-1\",\n                \"first_name\": \"Eleazar\",\n                \"last_name\": \"fixture-child-11-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-09-15\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 11,\n                        \"values\": {\n                            \"family_id\": 11,\n                            \"is_primary\": true,\n                            \"name\": \"Ben fixture-lead-11\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/11/guardians/11\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 11,\n                        \"values\": {\n                            \"child_id\": 11\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/11\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 12,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Linnea fixture-child-11-2\",\n                \"first_name\": \"Linnea\",\n                \"last_name\": \"fixture-child-11-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-02-27\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 11,\n                        \"values\": {\n                            \"family_id\": 11,\n                            \"is_primary\": true,\n                            \"name\": \"Ben fixture-lead-11\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/11/guardians/11\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 12,\n                        \"values\": {\n                            \"child_id\": 12\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/12\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 12,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 140,\n            \"values\": {\n                \"value\": \"Phone\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/140\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 195,\n            \"values\": {\n                \"value\": \"Center Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/195\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 837,\n            \"values\": {\n                \"value\": \"Self-Scheduled Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/837\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 12,\n            \"name\": \"Jorge fixture-lead-12\",\n            \"first_name\": \"Jorge\",\n            \"last_name\": \"fixture-lead-12\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam12@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(858) 672-7049\",\n                \"number_e164\": \"+18586727049\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 4,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 12,\n                \"name\": \"Jorge fixture-lead-12\",\n                \"first_name\": \"Jorge\",\n                \"last_name\": \"fixture-lead-12\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam12@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(858) 672-7049\",\n                    \"number_e164\": \"+18586727049\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 14,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 142,\n            \"values\": {\n                \"value\": \"Email\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/142\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 195,\n            \"values\": {\n                \"value\": \"Center Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/195\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 828,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/828\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 14,\n            \"name\": \"Neva fixture-lead-14\",\n            \"first_name\": \"Neva\",\n            \"last_name\": \"fixture-lead-14\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam14@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(318) 414-2646\",\n                \"number_e164\": \"+13184142646\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 5,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 14,\n                \"name\": \"Neva fixture-lead-14\",\n                \"first_name\": \"Neva\",\n                \"last_name\": \"fixture-lead-14\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam14@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(318) 414-2646\",\n                    \"number_e164\": \"+13184142646\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 5,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 14,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Dorcas fixture-child-14-1\",\n                \"first_name\": \"Dorcas\",\n                \"last_name\": \"fixture-child-14-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-02-04\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 14,\n                        \"values\": {\n                            \"family_id\": 14,\n                            \"is_primary\": true,\n                            \"name\": \"Neva fixture-lead-14\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/14/guardians/14\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 14,\n                        \"values\": {\n                            \"child_id\": 14\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/14\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 15,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Alf fixture-child-14-2\",\n                \"first_name\": \"Alf\",\n                \"last_name\": \"fixture-child-14-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-08-31\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 14,\n                        \"values\": {\n                            \"family_id\": 14,\n                            \"is_primary\": true,\n                            \"name\": \"Neva fixture-lead-14\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/14/guardians/14\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 15,\n                        \"values\": {\n                            \"child_id\": 15\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/15\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 15,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 26,\n            \"values\": {\n                \"value\": \"Referral-Staff\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/26\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 15,\n            \"name\": \"Elody fixture-lead-15\",\n            \"first_name\": \"Elody\",\n            \"last_name\": \"fixture-lead-15\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam15@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(501) 317-9982\",\n                \"number_e164\": \"+15013179982\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandfather\",\n            \"center_id\": 5,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 15,\n                \"name\": \"Elody fixture-lead-15\",\n                \"first_name\": \"Elody\",\n                \"last_name\": \"fixture-lead-15\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam15@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(501) 317-9982\",\n                    \"number_e164\": \"+15013179982\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandfather\",\n                \"center_id\": 5,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 17,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 140,\n            \"values\": {\n                \"value\": \"Phone\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/140\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 26,\n            \"values\": {\n                \"value\": \"Referral-Staff\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/26\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 832,\n            \"values\": {\n                \"value\": \"Kiosk\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/832\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 17,\n            \"name\": \"Muriel fixture-lead-17\",\n            \"first_name\": \"Muriel\",\n            \"last_name\": \"fixture-lead-17\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam17@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(321) 298-2055\",\n                \"number_e164\": \"+13212982055\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandmother\",\n            \"center_id\": 6,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 17,\n                \"name\": \"Muriel fixture-lead-17\",\n                \"first_name\": \"Muriel\",\n                \"last_name\": \"fixture-lead-17\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam17@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(321) 298-2055\",\n                    \"number_e164\": \"+13212982055\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandmother\",\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 17,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Aniyah fixture-child-17-1\",\n                \"first_name\": \"Aniyah\",\n                \"last_name\": \"fixture-child-17-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-06-30\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 17,\n                        \"values\": {\n                            \"family_id\": 17,\n                            \"is_primary\": true,\n                            \"name\": \"Muriel fixture-lead-17\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/17/guardians/17\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 17,\n                        \"values\": {\n                            \"child_id\": 17\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/17\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 18,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lilly fixture-child-17-2\",\n                \"first_name\": \"Lilly\",\n                \"last_name\": \"fixture-child-17-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-12-05\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 17,\n                        \"values\": {\n                            \"family_id\": 17,\n                            \"is_primary\": true,\n                            \"name\": \"Muriel fixture-lead-17\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/17/guardians/17\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 18,\n                        \"values\": {\n                            \"child_id\": 18\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/18\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 18,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 831,\n            \"values\": {\n                \"value\": \"Duplicate\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/831\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 18,\n            \"name\": \"Keanu fixture-lead-18\",\n            \"first_name\": \"Keanu\",\n            \"last_name\": \"fixture-lead-18\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam18@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(460) 639-3156\",\n                \"number_e164\": \"+14606393156\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 6,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 18,\n                \"name\": \"Keanu fixture-lead-18\",\n                \"first_name\": \"Keanu\",\n                \"last_name\": \"fixture-lead-18\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam18@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(460) 639-3156\",\n                    \"number_e164\": \"+14606393156\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 20,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 658,\n            \"values\": {\n                \"value\": \"Other Social Media\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/658\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 827,\n            \"values\": {\n                \"value\": \"User\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/827\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 20,\n            \"name\": \"Kenny fixture-lead-20\",\n            \"first_name\": \"Kenny\",\n            \"last_name\": \"fixture-lead-20\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam20@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(245) 491-4692\",\n                \"number_e164\": \"+12454914692\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Aunt\",\n            \"center_id\": 7,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 20,\n                \"name\": \"Kenny fixture-lead-20\",\n                \"first_name\": \"Kenny\",\n                \"last_name\": \"fixture-lead-20\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam20@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(245) 491-4692\",\n                    \"number_e164\": \"+12454914692\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Aunt\",\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 20,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lelah fixture-child-20-1\",\n                \"first_name\": \"Lelah\",\n                \"last_name\": \"fixture-child-20-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2020-03-18\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 20,\n                        \"values\": {\n                            \"family_id\": 20,\n                            \"is_primary\": true,\n                            \"name\": \"Kenny fixture-lead-20\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/20/guardians/20\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 20,\n                        \"values\": {\n                            \"child_id\": 20\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/20\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 21,\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Rafael fixture-child-20-2\",\n                \"first_name\": \"Rafael\",\n                \"last_name\": \"fixture-child-20-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-04-17\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 20,\n                        \"values\": {\n                            \"family_id\": 20,\n                            \"is_primary\": true,\n                            \"name\": \"Kenny fixture-lead-20\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/20/guardians/20\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 21,\n                        \"values\": {\n                            \"child_id\": 21\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/21\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 21,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Lead\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 377,\n            \"values\": {\n                \"value\": \"Referral-Family\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/377\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 831,\n            \"values\": {\n                \"value\": \"Duplicate\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/831\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 21,\n            \"name\": \"Franco fixture-lead-21\",\n            \"first_name\": \"Franco\",\n            \"last_name\": \"fixture-lead-21\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam21@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(898) 764-2345\",\n                \"number_e164\": \"+18987642345\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 7,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Lead\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 21,\n                \"name\": \"Franco fixture-lead-21\",\n                \"first_name\": \"Franco\",\n                \"last_name\": \"fixture-lead-21\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam21@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(898) 764-2345\",\n                    \"number_e164\": \"+18987642345\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 1,\n                    \"values\": {\n                        \"name\": \"New Lead\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/1\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 22,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 196,\n            \"values\": {\n                \"value\": \"Community Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/196\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 22,\n            \"name\": \"Paul fixture-lead-22\",\n            \"first_name\": \"Paul\",\n            \"last_name\": \"fixture-lead-22\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam22@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(940) 640-3235\",\n                \"number_e164\": \"+19406403235\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 22,\n                \"name\": \"Paul fixture-lead-22\",\n                \"first_name\": \"Paul\",\n                \"last_name\": \"fixture-lead-22\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam22@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(940) 640-3235\",\n                    \"number_e164\": \"+19406403235\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 22,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Nicholas fixture-child-22-1\",\n                \"first_name\": \"Nicholas\",\n                \"last_name\": \"fixture-child-22-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-08-09\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 22,\n                        \"values\": {\n                            \"family_id\": 22,\n                            \"is_primary\": true,\n                            \"name\": \"Paul fixture-lead-22\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/22/guardians/22\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 22,\n                        \"values\": {\n                            \"child_id\": 22\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/22\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 23,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Dena fixture-child-22-2\",\n                \"first_name\": \"Dena\",\n                \"last_name\": \"fixture-child-22-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-09-18\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 22,\n                        \"values\": {\n                            \"family_id\": 22,\n                            \"is_primary\": true,\n                            \"name\": \"Paul fixture-lead-22\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/22/guardians/22\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 23,\n                        \"values\": {\n                            \"child_id\": 23\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/23\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 90,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:31:08+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 90,\n            \"name\": \"Evans Sawayn\",\n            \"first_name\": \"Evans\",\n            \"last_name\": \"Sawayn\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:31:08+00:00\",\n            \"email\": \"ashlynn.schneider@hotmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"336 Garett Garden Apt. 622\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"East Noemi\",\n                \"region\": \"th_TH\",\n                \"postcode\": \"25039-7199\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(967) 599-4400\",\n                \"number_e164\": \"+19675994400\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(554) 976-0414 ext. 26926\",\n                \"number_e164\": \"+15549760414\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"5\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 90,\n                \"name\": \"Evans Sawayn\",\n                \"first_name\": \"Evans\",\n                \"last_name\": \"Sawayn\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:31:08+00:00\",\n                \"email\": \"ashlynn.schneider@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"336 Garett Garden Apt. 622\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"East Noemi\",\n                    \"region\": \"th_TH\",\n                    \"postcode\": \"25039-7199\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(967) 599-4400\",\n                    \"number_e164\": \"+19675994400\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(554) 976-0414 ext. 26926\",\n                    \"number_e164\": \"+15549760414\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"5\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 111,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Destinee Pollich\",\n                \"first_name\": \"Destinee\",\n                \"last_name\": \"Pollich\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:31:08+00:00\",\n                \"system_date\": \"2020-05-11T17:30:59+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 90,\n                        \"values\": {\n                            \"family_id\": 90,\n                            \"is_primary\": true,\n                            \"name\": \"Evans Sawayn\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/90/guardians/90\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 111,\n                        \"values\": {\n                            \"child_id\": 111\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/111\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"334\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"90760\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 93,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:31:09+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 93,\n            \"name\": \"Zaria Schultz\",\n            \"first_name\": \"Zaria\",\n            \"last_name\": \"Schultz\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:31:09+00:00\",\n            \"email\": \"sally04@hotmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"1378 Kaleigh Expressway Apt. 127\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"West Daijaton\",\n                \"region\": \"ar_SD\",\n                \"postcode\": \"74446\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(694) 860-2324\",\n                \"number_e164\": \"+16948602324\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"5754\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 93,\n                \"name\": \"Zaria Schultz\",\n                \"first_name\": \"Zaria\",\n                \"last_name\": \"Schultz\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:31:09+00:00\",\n                \"email\": \"sally04@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"1378 Kaleigh Expressway Apt. 127\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"West Daijaton\",\n                    \"region\": \"ar_SD\",\n                    \"postcode\": \"74446\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(694) 860-2324\",\n                    \"number_e164\": \"+16948602324\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"5754\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 114,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Angelo Deckow\",\n                \"first_name\": \"Angelo\",\n                \"last_name\": \"Deckow\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:31:10+00:00\",\n                \"system_date\": \"2020-05-11T17:30:59+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 93,\n                        \"values\": {\n                            \"family_id\": 93,\n                            \"is_primary\": true,\n                            \"name\": \"Zaria Schultz\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/93/guardians/93\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 114,\n                        \"values\": {\n                            \"child_id\": 114\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/114\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"226578102\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"38278061\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 138,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:31:37+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 138,\n            \"name\": \"Maude Douglas\",\n            \"first_name\": \"Maude\",\n            \"last_name\": \"Douglas\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:31:37+00:00\",\n            \"email\": \"karley.hyatt@mosciski.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"75562 Heidenreich Burgs Apt. 091\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Bogisichfurt\",\n                \"region\": \"pt_PT\",\n                \"postcode\": \"23853\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(818) 600-8856\",\n                \"number_e164\": \"+18186008856\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(307) 633-3711 ext. 5083\",\n                \"number_e164\": \"+13076333711\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"9\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 138,\n                \"name\": \"Maude Douglas\",\n                \"first_name\": \"Maude\",\n                \"last_name\": \"Douglas\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:31:37+00:00\",\n                \"email\": \"karley.hyatt@mosciski.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"75562 Heidenreich Burgs Apt. 091\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Bogisichfurt\",\n                    \"region\": \"pt_PT\",\n                    \"postcode\": \"23853\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(818) 600-8856\",\n                    \"number_e164\": \"+18186008856\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(307) 633-3711 ext. 5083\",\n                    \"number_e164\": \"+13076333711\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"9\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 161,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Dayna Roob\",\n                \"first_name\": \"Dayna\",\n                \"last_name\": \"Roob\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:31:37+00:00\",\n                \"system_date\": \"2020-05-11T17:31:27+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 138,\n                        \"values\": {\n                            \"family_id\": 138,\n                            \"is_primary\": true,\n                            \"name\": \"Maude Douglas\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/138/guardians/138\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 161,\n                        \"values\": {\n                            \"child_id\": 161\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/161\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"7\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"5\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 141,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:31:38+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 141,\n            \"name\": \"Makayla Stokes\",\n            \"first_name\": \"Makayla\",\n            \"last_name\": \"Stokes\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:31:38+00:00\",\n            \"email\": \"elissa93@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"84495 Helga Motorway Apt. 318\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"New Madisen\",\n                \"region\": \"sr_RS\",\n                \"postcode\": \"77347\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(496) 261-1902\",\n                \"number_e164\": \"+14962611902\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"310\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 141,\n                \"name\": \"Makayla Stokes\",\n                \"first_name\": \"Makayla\",\n                \"last_name\": \"Stokes\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:31:38+00:00\",\n                \"email\": \"elissa93@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"84495 Helga Motorway Apt. 318\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"New Madisen\",\n                    \"region\": \"sr_RS\",\n                    \"postcode\": \"77347\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(496) 261-1902\",\n                    \"number_e164\": \"+14962611902\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"310\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 164,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Regan Gusikowski\",\n                \"first_name\": \"Regan\",\n                \"last_name\": \"Gusikowski\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:31:38+00:00\",\n                \"system_date\": \"2020-05-11T17:31:27+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 141,\n                        \"values\": {\n                            \"family_id\": 141,\n                            \"is_primary\": true,\n                            \"name\": \"Makayla Stokes\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/141/guardians/141\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 164,\n                        \"values\": {\n                            \"child_id\": 164\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/164\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"68290467\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"513714\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 186,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:35:02+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 186,\n            \"name\": \"Kristina Weimann\",\n            \"first_name\": \"Kristina\",\n            \"last_name\": \"Weimann\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:35:02+00:00\",\n            \"email\": \"ycole@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"14386 Bernhard Ferry\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Port Ellenfort\",\n                \"region\": \"ar_OM\",\n                \"postcode\": \"43646\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(893) 329-4206 ext. 718\",\n                \"number_e164\": \"+18933294206\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(396) 620-0487 ext. 9716\",\n                \"number_e164\": \"+13966200487\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"9938\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 186,\n                \"name\": \"Kristina Weimann\",\n                \"first_name\": \"Kristina\",\n                \"last_name\": \"Weimann\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:35:02+00:00\",\n                \"email\": \"ycole@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"14386 Bernhard Ferry\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Port Ellenfort\",\n                    \"region\": \"ar_OM\",\n                    \"postcode\": \"43646\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(893) 329-4206 ext. 718\",\n                    \"number_e164\": \"+18933294206\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(396) 620-0487 ext. 9716\",\n                    \"number_e164\": \"+13966200487\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"9938\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 211,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Leanna Rogahn\",\n                \"first_name\": \"Leanna\",\n                \"last_name\": \"Rogahn\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:35:02+00:00\",\n                \"system_date\": \"2020-05-11T17:34:53+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 186,\n                        \"values\": {\n                            \"family_id\": 186,\n                            \"is_primary\": true,\n                            \"name\": \"Kristina Weimann\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/186/guardians/186\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 211,\n                        \"values\": {\n                            \"child_id\": 211\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/211\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"746633920\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"22552\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 189,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:35:04+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 189,\n            \"name\": \"Briana Carroll\",\n            \"first_name\": \"Briana\",\n            \"last_name\": \"Carroll\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:35:04+00:00\",\n            \"email\": \"swolff@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"2971 Brown Passage\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Albaland\",\n                \"region\": \"sr_ME\",\n                \"postcode\": \"20943\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(685) 961-6340\",\n                \"number_e164\": \"+16859616340\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"18704\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 189,\n                \"name\": \"Briana Carroll\",\n                \"first_name\": \"Briana\",\n                \"last_name\": \"Carroll\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:35:04+00:00\",\n                \"email\": \"swolff@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"2971 Brown Passage\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Albaland\",\n                    \"region\": \"sr_ME\",\n                    \"postcode\": \"20943\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(685) 961-6340\",\n                    \"number_e164\": \"+16859616340\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"18704\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 214,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Ocie Nitzsche\",\n                \"first_name\": \"Ocie\",\n                \"last_name\": \"Nitzsche\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:35:04+00:00\",\n                \"system_date\": \"2020-05-11T17:34:53+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 189,\n                        \"values\": {\n                            \"family_id\": 189,\n                            \"is_primary\": true,\n                            \"name\": \"Briana Carroll\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/189/guardians/189\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 214,\n                        \"values\": {\n                            \"child_id\": 214\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/214\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"775499\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"9481\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 234,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:36:07+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 234,\n            \"name\": \"Burnice Stamm\",\n            \"first_name\": \"Burnice\",\n            \"last_name\": \"Stamm\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:36:07+00:00\",\n            \"email\": \"omcdermott@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"9428 Bergstrom Points Suite 973\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Grahamchester\",\n                \"region\": \"lv_LV\",\n                \"postcode\": \"51008-9999\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (647) 559-3718\",\n                \"number_e164\": \"+16475593718\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(270) 351-4597 ext. 4522\",\n                \"number_e164\": \"+12703514597\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"97687900\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 234,\n                \"name\": \"Burnice Stamm\",\n                \"first_name\": \"Burnice\",\n                \"last_name\": \"Stamm\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:36:07+00:00\",\n                \"email\": \"omcdermott@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"9428 Bergstrom Points Suite 973\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Grahamchester\",\n                    \"region\": \"lv_LV\",\n                    \"postcode\": \"51008-9999\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (647) 559-3718\",\n                    \"number_e164\": \"+16475593718\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(270) 351-4597 ext. 4522\",\n                    \"number_e164\": \"+12703514597\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"97687900\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 261,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Chris Kuvalis\",\n                \"first_name\": \"Chris\",\n                \"last_name\": \"Kuvalis\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:36:07+00:00\",\n                \"system_date\": \"2020-05-11T17:35:56+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 234,\n                        \"values\": {\n                            \"family_id\": 234,\n                            \"is_primary\": true,\n                            \"name\": \"Burnice Stamm\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/234/guardians/234\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 261,\n                        \"values\": {\n                            \"child_id\": 261\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/261\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"6045\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"57635\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 237,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:36:08+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 237,\n            \"name\": \"Kariane Skiles\",\n            \"first_name\": \"Kariane\",\n            \"last_name\": \"Skiles\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:36:08+00:00\",\n            \"email\": \"bianka.witting@runolfsson.biz\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"3503 Dare Avenue\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Lakinmouth\",\n                \"region\": \"ar_LY\",\n                \"postcode\": \"44189\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(456) 256-8610\",\n                \"number_e164\": \"+14562568610\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"55\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 237,\n                \"name\": \"Kariane Skiles\",\n                \"first_name\": \"Kariane\",\n                \"last_name\": \"Skiles\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:36:08+00:00\",\n                \"email\": \"bianka.witting@runolfsson.biz\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"3503 Dare Avenue\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Lakinmouth\",\n                    \"region\": \"ar_LY\",\n                    \"postcode\": \"44189\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(456) 256-8610\",\n                    \"number_e164\": \"+14562568610\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"55\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 264,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Armando Krajcik\",\n                \"first_name\": \"Armando\",\n                \"last_name\": \"Krajcik\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:36:08+00:00\",\n                \"system_date\": \"2020-05-11T17:35:57+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 237,\n                        \"values\": {\n                            \"family_id\": 237,\n                            \"is_primary\": true,\n                            \"name\": \"Kariane Skiles\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/237/guardians/237\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 264,\n                        \"values\": {\n                            \"child_id\": 264\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/264\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"38165097\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"2929022\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 282,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:37:20+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 282,\n            \"name\": \"Rowan Tromp\",\n            \"first_name\": \"Rowan\",\n            \"last_name\": \"Tromp\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:37:20+00:00\",\n            \"email\": \"oliver.bartoletti@schimmel.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"848 Harber Lakes\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"East Treybury\",\n                \"region\": \"es_PY\",\n                \"postcode\": \"96901-4529\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(274) 710-8168\",\n                \"number_e164\": \"+12747108168\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(370) 527-3650\",\n                \"number_e164\": \"+13705273650\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"35320\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 282,\n                \"name\": \"Rowan Tromp\",\n                \"first_name\": \"Rowan\",\n                \"last_name\": \"Tromp\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:37:20+00:00\",\n                \"email\": \"oliver.bartoletti@schimmel.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"848 Harber Lakes\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"East Treybury\",\n                    \"region\": \"es_PY\",\n                    \"postcode\": \"96901-4529\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(274) 710-8168\",\n                    \"number_e164\": \"+12747108168\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(370) 527-3650\",\n                    \"number_e164\": \"+13705273650\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"35320\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 312,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Madelyn Dooley\",\n                \"first_name\": \"Madelyn\",\n                \"last_name\": \"Dooley\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:37:20+00:00\",\n                \"system_date\": \"2020-05-11T17:37:09+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 282,\n                        \"values\": {\n                            \"family_id\": 282,\n                            \"is_primary\": true,\n                            \"name\": \"Rowan Tromp\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/282/guardians/282\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 312,\n                        \"values\": {\n                            \"child_id\": 312\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/312\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"4\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"667076\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 285,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:37:22+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 285,\n            \"name\": \"Reagan Hintz\",\n            \"first_name\": \"Reagan\",\n            \"last_name\": \"Hintz\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:37:22+00:00\",\n            \"email\": \"lolita77@breitenberg.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"493 McLaughlin Heights\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"West Aliyah\",\n                \"region\": \"bn_BD\",\n                \"postcode\": \"72229-4452\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(435) 990-3902\",\n                \"number_e164\": \"+14359903902\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"39\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 285,\n                \"name\": \"Reagan Hintz\",\n                \"first_name\": \"Reagan\",\n                \"last_name\": \"Hintz\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:37:22+00:00\",\n                \"email\": \"lolita77@breitenberg.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"493 McLaughlin Heights\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"West Aliyah\",\n                    \"region\": \"bn_BD\",\n                    \"postcode\": \"72229-4452\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(435) 990-3902\",\n                    \"number_e164\": \"+14359903902\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"39\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 315,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Mortimer Denesik\",\n                \"first_name\": \"Mortimer\",\n                \"last_name\": \"Denesik\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:37:22+00:00\",\n                \"system_date\": \"2020-05-11T17:37:09+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 285,\n                        \"values\": {\n                            \"family_id\": 285,\n                            \"is_primary\": true,\n                            \"name\": \"Reagan Hintz\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/285/guardians/285\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 315,\n                        \"values\": {\n                            \"child_id\": 315\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/315\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"1722\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"50\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 338,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:43:07+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 338,\n            \"name\": \"Mauricio Wehner\",\n            \"first_name\": \"Mauricio\",\n            \"last_name\": \"Wehner\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:43:07+00:00\",\n            \"email\": \"stacy.konopelski@hotmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"3807 Brekke Stravenue\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Haventown\",\n                \"region\": \"af_ZA\",\n                \"postcode\": \"94564-4251\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(842) 219-6688\",\n                \"number_e164\": \"+18422196688\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"148\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 338,\n                \"name\": \"Mauricio Wehner\",\n                \"first_name\": \"Mauricio\",\n                \"last_name\": \"Wehner\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:43:07+00:00\",\n                \"email\": \"stacy.konopelski@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"3807 Brekke Stravenue\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Haventown\",\n                    \"region\": \"af_ZA\",\n                    \"postcode\": \"94564-4251\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(842) 219-6688\",\n                    \"number_e164\": \"+18422196688\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"148\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 373,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lourdes Schumm\",\n                \"first_name\": \"Lourdes\",\n                \"last_name\": \"Schumm\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:43:07+00:00\",\n                \"system_date\": \"2020-05-11T17:42:56+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 338,\n                        \"values\": {\n                            \"family_id\": 338,\n                            \"is_primary\": true,\n                            \"name\": \"Mauricio Wehner\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/338/guardians/338\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 373,\n                        \"values\": {\n                            \"child_id\": 373\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/373\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"840\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"328291\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 383,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:43:32+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 383,\n            \"name\": \"Darren Konopelski\",\n            \"first_name\": \"Darren\",\n            \"last_name\": \"Konopelski\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:43:32+00:00\",\n            \"email\": \"omer80@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"63136 Swaniawski Ramp Suite 527\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"West Sienna\",\n                \"region\": \"ca_ES\",\n                \"postcode\": \"96778-4046\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(347) 694-3329\",\n                \"number_e164\": \"+13476943329\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(202) 756-9906\",\n                \"number_e164\": \"+12027569906\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"678721076\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 383,\n                \"name\": \"Darren Konopelski\",\n                \"first_name\": \"Darren\",\n                \"last_name\": \"Konopelski\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:43:32+00:00\",\n                \"email\": \"omer80@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"63136 Swaniawski Ramp Suite 527\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"West Sienna\",\n                    \"region\": \"ca_ES\",\n                    \"postcode\": \"96778-4046\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(347) 694-3329\",\n                    \"number_e164\": \"+13476943329\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(202) 756-9906\",\n                    \"number_e164\": \"+12027569906\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"678721076\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 419,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Nakia Sawayn\",\n                \"first_name\": \"Nakia\",\n                \"last_name\": \"Sawayn\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:43:33+00:00\",\n                \"system_date\": \"2020-05-11T17:43:23+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 383,\n                        \"values\": {\n                            \"family_id\": 383,\n                            \"is_primary\": true,\n                            \"name\": \"Darren Konopelski\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/383/guardians/383\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 419,\n                        \"values\": {\n                            \"child_id\": 419\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/419\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"380157864\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"857\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 386,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:43:34+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 386,\n            \"name\": \"Tobin O'Kon\",\n            \"first_name\": \"Tobin\",\n            \"last_name\": \"O'Kon\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:43:34+00:00\",\n            \"email\": \"weber.favian@willms.biz\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"633 Johns Lakes\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"South Lauryhaven\",\n                \"region\": \"es_PR\",\n                \"postcode\": \"70962-4284\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(536) 649-6511\",\n                \"number_e164\": \"+15366496511\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"52\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 386,\n                \"name\": \"Tobin O'Kon\",\n                \"first_name\": \"Tobin\",\n                \"last_name\": \"O'Kon\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:43:34+00:00\",\n                \"email\": \"weber.favian@willms.biz\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"633 Johns Lakes\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"South Lauryhaven\",\n                    \"region\": \"es_PR\",\n                    \"postcode\": \"70962-4284\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(536) 649-6511\",\n                    \"number_e164\": \"+15366496511\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"52\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 422,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Onie O'Kon\",\n                \"first_name\": \"Onie\",\n                \"last_name\": \"O'Kon\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:43:34+00:00\",\n                \"system_date\": \"2020-05-11T17:43:23+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 386,\n                        \"values\": {\n                            \"family_id\": 386,\n                            \"is_primary\": true,\n                            \"name\": \"Tobin O'Kon\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/386/guardians/386\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 422,\n                        \"values\": {\n                            \"child_id\": 422\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/422\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"1\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"57201\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 431,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:30:52+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 431,\n            \"name\": \"Ella Toy\",\n            \"first_name\": \"Ella\",\n            \"last_name\": \"Toy\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:30:52+00:00\",\n            \"email\": \"geovany31@cole.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"8756 Harber Pines\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"East Maidafurt\",\n                \"region\": \"trv_TW\",\n                \"postcode\": \"67475\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(478) 710-0024\",\n                \"number_e164\": \"+14787100024\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(479) 946-1705\",\n                \"number_e164\": \"+14799461705\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"8945\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 431,\n                \"name\": \"Ella Toy\",\n                \"first_name\": \"Ella\",\n                \"last_name\": \"Toy\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:30:52+00:00\",\n                \"email\": \"geovany31@cole.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"8756 Harber Pines\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"East Maidafurt\",\n                    \"region\": \"trv_TW\",\n                    \"postcode\": \"67475\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(478) 710-0024\",\n                    \"number_e164\": \"+14787100024\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(479) 946-1705\",\n                    \"number_e164\": \"+14799461705\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"8945\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 468,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Isadore Schowalter\",\n                \"first_name\": \"Isadore\",\n                \"last_name\": \"Schowalter\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:30:52+00:00\",\n                \"system_date\": \"2020-05-11T18:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 431,\n                        \"values\": {\n                            \"family_id\": 431,\n                            \"is_primary\": true,\n                            \"name\": \"Ella Toy\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/431/guardians/431\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 468,\n                        \"values\": {\n                            \"child_id\": 468\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/468\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"6873\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"570308\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 434,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:30:53+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 434,\n            \"name\": \"Julio Considine\",\n            \"first_name\": \"Julio\",\n            \"last_name\": \"Considine\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:30:53+00:00\",\n            \"email\": \"etrantow@hotmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"984 Trudie Summit\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Vonmouth\",\n                \"region\": \"en_AS\",\n                \"postcode\": \"20464-2965\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(727) 486-4281\",\n                \"number_e164\": \"+17274864281\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"396\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 434,\n                \"name\": \"Julio Considine\",\n                \"first_name\": \"Julio\",\n                \"last_name\": \"Considine\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:30:53+00:00\",\n                \"email\": \"etrantow@hotmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"984 Trudie Summit\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Vonmouth\",\n                    \"region\": \"en_AS\",\n                    \"postcode\": \"20464-2965\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(727) 486-4281\",\n                    \"number_e164\": \"+17274864281\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"396\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 471,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Beau Reinger\",\n                \"first_name\": \"Beau\",\n                \"last_name\": \"Reinger\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:30:53+00:00\",\n                \"system_date\": \"2020-05-11T18:30:44+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 434,\n                        \"values\": {\n                            \"family_id\": 434,\n                            \"is_primary\": true,\n                            \"name\": \"Julio Considine\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/434/guardians/434\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 471,\n                        \"values\": {\n                            \"child_id\": 471\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/471\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"2059\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"855534\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 497,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:41:35+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 497,\n            \"name\": \"Ahmad Ledner\",\n            \"first_name\": \"Ahmad\",\n            \"last_name\": \"Ledner\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:41:35+00:00\",\n            \"email\": \"fisher.dedrick@willms.biz\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"9837 Stephanie Islands\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"New Ewellburgh\",\n                \"region\": \"es_BO\",\n                \"postcode\": \"22423\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (647) 812-1904\",\n                \"number_e164\": \"+16478121904\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"87845\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 497,\n                \"name\": \"Ahmad Ledner\",\n                \"first_name\": \"Ahmad\",\n                \"last_name\": \"Ledner\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:41:35+00:00\",\n                \"email\": \"fisher.dedrick@willms.biz\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"9837 Stephanie Islands\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"New Ewellburgh\",\n                    \"region\": \"es_BO\",\n                    \"postcode\": \"22423\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (647) 812-1904\",\n                    \"number_e164\": \"+16478121904\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"87845\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 535,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Vita Denesik\",\n                \"first_name\": \"Vita\",\n                \"last_name\": \"Denesik\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:41:35+00:00\",\n                \"system_date\": \"2020-05-11T18:41:25+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 497,\n                        \"values\": {\n                            \"family_id\": 497,\n                            \"is_primary\": true,\n                            \"name\": \"Ahmad Ledner\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/497/guardians/497\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 535,\n                        \"values\": {\n                            \"child_id\": 535\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/535\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"933\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"866\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 542,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:42:51+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 542,\n            \"name\": \"Keenan Reilly\",\n            \"first_name\": \"Keenan\",\n            \"last_name\": \"Reilly\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:42:51+00:00\",\n            \"email\": \"iva.okon@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"3634 Donnie Mountain Apt. 823\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Charityville\",\n                \"region\": \"de_LI\",\n                \"postcode\": \"00925-2806\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(806) 555-5362\",\n                \"number_e164\": \"+18065555362\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(229) 526-5416 ext. 4053\",\n                \"number_e164\": \"+12295265416\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"69\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 542,\n                \"name\": \"Keenan Reilly\",\n                \"first_name\": \"Keenan\",\n                \"last_name\": \"Reilly\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:42:51+00:00\",\n                \"email\": \"iva.okon@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"3634 Donnie Mountain Apt. 823\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Charityville\",\n                    \"region\": \"de_LI\",\n                    \"postcode\": \"00925-2806\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(806) 555-5362\",\n                    \"number_e164\": \"+18065555362\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(229) 526-5416 ext. 4053\",\n                    \"number_e164\": \"+12295265416\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"69\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 581,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Jaylin Schoen\",\n                \"first_name\": \"Jaylin\",\n                \"last_name\": \"Schoen\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:42:51+00:00\",\n                \"system_date\": \"2020-05-11T18:42:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 542,\n                        \"values\": {\n                            \"family_id\": 542,\n                            \"is_primary\": true,\n                            \"name\": \"Keenan Reilly\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/542/guardians/542\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 581,\n                        \"values\": {\n                            \"child_id\": 581\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/581\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"521\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"478476\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 545,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:42:53+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 545,\n            \"name\": \"Lera Stamm\",\n            \"first_name\": \"Lera\",\n            \"last_name\": \"Stamm\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:42:53+00:00\",\n            \"email\": \"jayme91@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"33227 Curt Walk\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"South Hipolito\",\n                \"region\": \"kcg_NG\",\n                \"postcode\": \"91938\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(641) 879-4935\",\n                \"number_e164\": \"+16418794935\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"948066\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 545,\n                \"name\": \"Lera Stamm\",\n                \"first_name\": \"Lera\",\n                \"last_name\": \"Stamm\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:42:53+00:00\",\n                \"email\": \"jayme91@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"33227 Curt Walk\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"South Hipolito\",\n                    \"region\": \"kcg_NG\",\n                    \"postcode\": \"91938\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(641) 879-4935\",\n                    \"number_e164\": \"+16418794935\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"948066\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 584,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Ahmad Gorczany\",\n                \"first_name\": \"Ahmad\",\n                \"last_name\": \"Gorczany\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:42:54+00:00\",\n                \"system_date\": \"2020-05-11T18:42:22+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 545,\n                        \"values\": {\n                            \"family_id\": 545,\n                            \"is_primary\": true,\n                            \"name\": \"Lera Stamm\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/545/guardians/545\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 584,\n                        \"values\": {\n                            \"child_id\": 584\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/584\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"2086934\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"12\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 625,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:43:21+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 625,\n            \"name\": \"Cordie Hermiston\",\n            \"first_name\": \"Cordie\",\n            \"last_name\": \"Hermiston\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:43:21+00:00\",\n            \"email\": \"xwuckert@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"99436 Daugherty Drives\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"New Sageville\",\n                \"region\": \"ha_NE\",\n                \"postcode\": \"54165\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(952) 530-6322 ext. 813\",\n                \"number_e164\": \"+19525306322\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(420) 921-2588 ext. 0008\",\n                \"number_e164\": \"+14209212588\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"51819736\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 625,\n                \"name\": \"Cordie Hermiston\",\n                \"first_name\": \"Cordie\",\n                \"last_name\": \"Hermiston\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:43:21+00:00\",\n                \"email\": \"xwuckert@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"99436 Daugherty Drives\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"New Sageville\",\n                    \"region\": \"ha_NE\",\n                    \"postcode\": \"54165\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(952) 530-6322 ext. 813\",\n                    \"number_e164\": \"+19525306322\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(420) 921-2588 ext. 0008\",\n                    \"number_e164\": \"+14209212588\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"51819736\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 667,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Spencer Schimmel\",\n                \"first_name\": \"Spencer\",\n                \"last_name\": \"Schimmel\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:43:21+00:00\",\n                \"system_date\": \"2020-05-11T18:43:08+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 625,\n                        \"values\": {\n                            \"family_id\": 625,\n                            \"is_primary\": true,\n                            \"name\": \"Cordie Hermiston\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/625/guardians/625\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 667,\n                        \"values\": {\n                            \"child_id\": 667\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/667\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"5591853\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"962743471\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 628,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:43:23+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 628,\n            \"name\": \"Idella Mann\",\n            \"first_name\": \"Idella\",\n            \"last_name\": \"Mann\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:43:23+00:00\",\n            \"email\": \"aliza17@yahoo.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"866 Nella Brook\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Lemketown\",\n                \"region\": \"ln_CG\",\n                \"postcode\": \"06066\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(747) 589-3308\",\n                \"number_e164\": \"+17475893308\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"15967071\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 628,\n                \"name\": \"Idella Mann\",\n                \"first_name\": \"Idella\",\n                \"last_name\": \"Mann\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:43:23+00:00\",\n                \"email\": \"aliza17@yahoo.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"866 Nella Brook\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Lemketown\",\n                    \"region\": \"ln_CG\",\n                    \"postcode\": \"06066\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(747) 589-3308\",\n                    \"number_e164\": \"+17475893308\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"15967071\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 670,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Haskell Moen\",\n                \"first_name\": \"Haskell\",\n                \"last_name\": \"Moen\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:43:24+00:00\",\n                \"system_date\": \"2020-05-11T18:43:08+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 628,\n                        \"values\": {\n                            \"family_id\": 628,\n                            \"is_primary\": true,\n                            \"name\": \"Idella Mann\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/628/guardians/628\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 670,\n                        \"values\": {\n                            \"child_id\": 670\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/670\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"8\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"313\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 673,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:44:38+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 673,\n            \"name\": \"Vivianne Kemmer\",\n            \"first_name\": \"Vivianne\",\n            \"last_name\": \"Kemmer\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:44:38+00:00\",\n            \"email\": \"pollich.alvera@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"18908 Bernadette Vista\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"New Evans\",\n                \"region\": \"sa_IN\",\n                \"postcode\": \"15787-4936\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(978) 856-5891\",\n                \"number_e164\": \"+19788565891\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(702) 742-7675\",\n                \"number_e164\": \"+17027427675\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"534\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 673,\n                \"name\": \"Vivianne Kemmer\",\n                \"first_name\": \"Vivianne\",\n                \"last_name\": \"Kemmer\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:44:38+00:00\",\n                \"email\": \"pollich.alvera@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"18908 Bernadette Vista\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"New Evans\",\n                    \"region\": \"sa_IN\",\n                    \"postcode\": \"15787-4936\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(978) 856-5891\",\n                    \"number_e164\": \"+19788565891\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(702) 742-7675\",\n                    \"number_e164\": \"+17027427675\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"534\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 716,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Miller Schamberger\",\n                \"first_name\": \"Miller\",\n                \"last_name\": \"Schamberger\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:44:38+00:00\",\n                \"system_date\": \"2020-05-11T18:43:36+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 673,\n                        \"values\": {\n                            \"family_id\": 673,\n                            \"is_primary\": true,\n                            \"name\": \"Vivianne Kemmer\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/673/guardians/673\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 716,\n                        \"values\": {\n                            \"child_id\": 716\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/716\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"433\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"116\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 676,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:44:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 676,\n            \"name\": \"Margie Kris\",\n            \"first_name\": \"Margie\",\n            \"last_name\": \"Kris\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:44:40+00:00\",\n            \"email\": \"hills.terry@heller.net\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"31309 Roosevelt Creek\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Kuhnview\",\n                \"region\": \"tig_ER\",\n                \"postcode\": \"89106-7551\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(676) 229-0274\",\n                \"number_e164\": \"+16762290274\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"854\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 676,\n                \"name\": \"Margie Kris\",\n                \"first_name\": \"Margie\",\n                \"last_name\": \"Kris\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:44:40+00:00\",\n                \"email\": \"hills.terry@heller.net\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"31309 Roosevelt Creek\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Kuhnview\",\n                    \"region\": \"tig_ER\",\n                    \"postcode\": \"89106-7551\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(676) 229-0274\",\n                    \"number_e164\": \"+16762290274\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"854\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 719,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Susana Koelpin\",\n                \"first_name\": \"Susana\",\n                \"last_name\": \"Koelpin\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:44:40+00:00\",\n                \"system_date\": \"2020-05-11T18:43:36+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 676,\n                        \"values\": {\n                            \"family_id\": 676,\n                            \"is_primary\": true,\n                            \"name\": \"Margie Kris\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/676/guardians/676\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 719,\n                        \"values\": {\n                            \"child_id\": 719\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/719\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"71417\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"6248053\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 723,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T18:45:55+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 723,\n            \"name\": \"Dewayne Trantow\",\n            \"first_name\": \"Dewayne\",\n            \"last_name\": \"Trantow\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T18:45:55+00:00\",\n            \"email\": \"tyson42@kassulke.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"536 Kennedi Port Apt. 884\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"East Shawn\",\n                \"region\": \"en_NA\",\n                \"postcode\": \"92036\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(458) 686-0898\",\n                \"number_e164\": \"+14586860898\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"334885\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 723,\n                \"name\": \"Dewayne Trantow\",\n                \"first_name\": \"Dewayne\",\n                \"last_name\": \"Trantow\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T18:45:55+00:00\",\n                \"email\": \"tyson42@kassulke.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"536 Kennedi Port Apt. 884\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"East Shawn\",\n                    \"region\": \"en_NA\",\n                    \"postcode\": \"92036\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(458) 686-0898\",\n                    \"number_e164\": \"+14586860898\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"334885\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 767,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Leanne Kuphal\",\n                \"first_name\": \"Leanne\",\n                \"last_name\": \"Kuphal\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T18:45:55+00:00\",\n                \"system_date\": \"2020-05-11T18:45:47+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 723,\n                        \"values\": {\n                            \"family_id\": 723,\n                            \"is_primary\": true,\n                            \"name\": \"Dewayne Trantow\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/723/guardians/723\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 767,\n                        \"values\": {\n                            \"child_id\": 767\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/767\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"297607\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"64446\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 768,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T21:38:18+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 768,\n            \"name\": \"Ronny Donnelly\",\n            \"first_name\": \"Ronny\",\n            \"last_name\": \"Donnelly\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T21:38:18+00:00\",\n            \"email\": \"ggusikowski@mayert.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"61773 DuBuque Manors Suite 956\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"Bechtelarfurt\",\n                \"region\": \"wal_ET\",\n                \"postcode\": \"62915-4681\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(290) 548-1382 ext. 256\",\n                \"number_e164\": \"+12905481382\",\n                \"extension\": null\n            },\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(735) 640-1570 ext. 5580\",\n                \"number_e164\": \"+17356401570\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"517980183\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 768,\n                \"name\": \"Ronny Donnelly\",\n                \"first_name\": \"Ronny\",\n                \"last_name\": \"Donnelly\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T21:38:18+00:00\",\n                \"email\": \"ggusikowski@mayert.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"61773 DuBuque Manors Suite 956\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"Bechtelarfurt\",\n                    \"region\": \"wal_ET\",\n                    \"postcode\": \"62915-4681\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(290) 548-1382 ext. 256\",\n                    \"number_e164\": \"+12905481382\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(735) 640-1570 ext. 5580\",\n                    \"number_e164\": \"+17356401570\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"517980183\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 813,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Alanna Klein\",\n                \"first_name\": \"Alanna\",\n                \"last_name\": \"Klein\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T21:38:18+00:00\",\n                \"system_date\": \"2020-05-11T21:38:11+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 768,\n                        \"values\": {\n                            \"family_id\": 768,\n                            \"is_primary\": true,\n                            \"name\": \"Ronny Donnelly\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/768/guardians/768\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 813,\n                        \"values\": {\n                            \"child_id\": 813\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/813\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"833811446\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"5\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 771,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T21:38:19+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 771,\n            \"name\": \"Nicole Lemke\",\n            \"first_name\": \"Nicole\",\n            \"last_name\": \"Lemke\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T21:38:19+00:00\",\n            \"email\": \"lurline.christiansen@russel.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"72263 Eli Knolls Suite 590\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"West Tyra\",\n                \"region\": \"gez_ER\",\n                \"postcode\": \"19762-8537\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": null,\n            \"alternate_phone\": {\n                \"type\": {\n                    \"id\": 20,\n                    \"values\": {\n                        \"value\": \"Home\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/20\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(761) 925-6716\",\n                \"number_e164\": \"+17619256716\",\n                \"extension\": null\n            },\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": [\n                {\n                    \"id\": \"65305\",\n                    \"integration\": {\n                        \"id\": 2,\n                        \"values\": {\n                            \"name\": \"Procare\",\n                            \"integration_type\": \"Management System\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/integrations/2\",\n                                \"rel\": \"integration\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                }\n            ]\n        },\n        \"guardians\": [\n            {\n                \"id\": 771,\n                \"name\": \"Nicole Lemke\",\n                \"first_name\": \"Nicole\",\n                \"last_name\": \"Lemke\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T21:38:19+00:00\",\n                \"email\": \"lurline.christiansen@russel.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"72263 Eli Knolls Suite 590\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"West Tyra\",\n                    \"region\": \"gez_ER\",\n                    \"postcode\": \"19762-8537\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": null,\n                \"alternate_phone\": {\n                    \"type\": {\n                        \"id\": 20,\n                        \"values\": {\n                            \"value\": \"Home\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/20\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(761) 925-6716\",\n                    \"number_e164\": \"+17619256716\",\n                    \"extension\": null\n                },\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": [\n                    {\n                        \"id\": \"65305\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 816,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Gregg Blick\",\n                \"first_name\": \"Gregg\",\n                \"last_name\": \"Blick\",\n                \"preferred_name\": \"\",\n                \"gender\": \"Female\",\n                \"date_of_birth\": \"2018-09-10\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T21:38:19+00:00\",\n                \"system_date\": \"2020-05-11T21:38:11+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 771,\n                        \"values\": {\n                            \"family_id\": 771,\n                            \"is_primary\": true,\n                            \"name\": \"Nicole Lemke\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/771/guardians/771\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 816,\n                        \"values\": {\n                            \"child_id\": 816\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/816\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": [\n                    {\n                        \"id\": \"99189\",\n                        \"integration\": {\n                            \"id\": 2,\n                            \"values\": {\n                                \"name\": \"Procare\",\n                                \"integration_type\": \"Management System\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/integrations/2\",\n                                    \"rel\": \"integration\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    }\n                ]\n            }\n        ],\n        \"integrations\": [\n            {\n                \"id\": \"40\",\n                \"integration\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Procare\",\n                        \"integration_type\": \"Management System\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/integrations/2\",\n                            \"rel\": \"integration\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            }\n        ],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 25,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 25,\n            \"values\": {\n                \"value\": \"Flyer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/25\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 25,\n            \"name\": \"Abel fixture-lead-25\",\n            \"first_name\": \"Abel\",\n            \"last_name\": \"fixture-lead-25\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam25@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(227) 628-4302\",\n                \"number_e164\": \"+12276284302\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Father\",\n            \"center_id\": 2,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 25,\n                \"name\": \"Abel fixture-lead-25\",\n                \"first_name\": \"Abel\",\n                \"last_name\": \"fixture-lead-25\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam25@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(227) 628-4302\",\n                    \"number_e164\": \"+12276284302\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Father\",\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 28,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Brady fixture-child-25-1\",\n                \"first_name\": \"Brady\",\n                \"last_name\": \"fixture-child-25-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-01-26\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 25,\n                        \"values\": {\n                            \"family_id\": 25,\n                            \"is_primary\": true,\n                            \"name\": \"Abel fixture-lead-25\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/25/guardians/25\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 28,\n                        \"values\": {\n                            \"child_id\": 28\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/28\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 29,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Quincy fixture-child-25-2\",\n                \"first_name\": \"Quincy\",\n                \"last_name\": \"fixture-child-25-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-08-17\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 25,\n                        \"values\": {\n                            \"family_id\": 25,\n                            \"is_primary\": true,\n                            \"name\": \"Abel fixture-lead-25\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/25/guardians/25\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 29,\n                        \"values\": {\n                            \"child_id\": 29\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/29\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 28,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 386,\n            \"values\": {\n                \"value\": \"Email Campaign\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/386\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 836,\n            \"values\": {\n                \"value\": \"Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/836\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 28,\n            \"name\": \"Dock fixture-lead-28\",\n            \"first_name\": \"Dock\",\n            \"last_name\": \"fixture-lead-28\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam28@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(609) 780-9824\",\n                \"number_e164\": \"+16097809824\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Nanny\",\n            \"center_id\": 3,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 28,\n                \"name\": \"Dock fixture-lead-28\",\n                \"first_name\": \"Dock\",\n                \"last_name\": \"fixture-lead-28\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam28@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(609) 780-9824\",\n                    \"number_e164\": \"+16097809824\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Nanny\",\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 34,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lonny fixture-child-28-1\",\n                \"first_name\": \"Lonny\",\n                \"last_name\": \"fixture-child-28-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-01-30\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 28,\n                        \"values\": {\n                            \"family_id\": 28,\n                            \"is_primary\": true,\n                            \"name\": \"Dock fixture-lead-28\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/28/guardians/28\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 34,\n                        \"values\": {\n                            \"child_id\": 34\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/34\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 35,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Octavia fixture-child-28-2\",\n                \"first_name\": \"Octavia\",\n                \"last_name\": \"fixture-child-28-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-03-24\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 28,\n                        \"values\": {\n                            \"family_id\": 28,\n                            \"is_primary\": true,\n                            \"name\": \"Dock fixture-lead-28\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/28/guardians/28\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 35,\n                        \"values\": {\n                            \"child_id\": 35\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/35\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 31,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 657,\n            \"values\": {\n                \"value\": \"Twitter\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/657\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 835,\n            \"values\": {\n                \"value\": \"API\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/835\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 31,\n            \"name\": \"Magnolia fixture-lead-31\",\n            \"first_name\": \"Magnolia\",\n            \"last_name\": \"fixture-lead-31\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam31@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(897) 842-2511\",\n                \"number_e164\": \"+18978422511\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 4,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 31,\n                \"name\": \"Magnolia fixture-lead-31\",\n                \"first_name\": \"Magnolia\",\n                \"last_name\": \"fixture-lead-31\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam31@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(897) 842-2511\",\n                    \"number_e164\": \"+18978422511\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 40,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Phoebe fixture-child-31-1\",\n                \"first_name\": \"Phoebe\",\n                \"last_name\": \"fixture-child-31-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-04-21\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 31,\n                        \"values\": {\n                            \"family_id\": 31,\n                            \"is_primary\": true,\n                            \"name\": \"Magnolia fixture-lead-31\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/31/guardians/31\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 40,\n                        \"values\": {\n                            \"child_id\": 40\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/40\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 41,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Ken fixture-child-31-2\",\n                \"first_name\": \"Ken\",\n                \"last_name\": \"fixture-child-31-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-06-24\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 31,\n                        \"values\": {\n                            \"family_id\": 31,\n                            \"is_primary\": true,\n                            \"name\": \"Magnolia fixture-lead-31\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/31/guardians/31\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 41,\n                        \"values\": {\n                            \"child_id\": 41\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/41\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 34,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 746,\n            \"values\": {\n                \"value\": \"Care for Kids\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/746\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 831,\n            \"values\": {\n                \"value\": \"Duplicate\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/831\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 34,\n            \"name\": \"Aglae fixture-lead-34\",\n            \"first_name\": \"Aglae\",\n            \"last_name\": \"fixture-lead-34\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam34@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(980) 373-9033\",\n                \"number_e164\": \"+19803739033\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 5,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 34,\n                \"name\": \"Aglae fixture-lead-34\",\n                \"first_name\": \"Aglae\",\n                \"last_name\": \"fixture-lead-34\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam34@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(980) 373-9033\",\n                    \"number_e164\": \"+19803739033\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 5,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 46,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lesley fixture-child-34-1\",\n                \"first_name\": \"Lesley\",\n                \"last_name\": \"fixture-child-34-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-01-24\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 34,\n                        \"values\": {\n                            \"family_id\": 34,\n                            \"is_primary\": true,\n                            \"name\": \"Aglae fixture-lead-34\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/34/guardians/34\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 46,\n                        \"values\": {\n                            \"child_id\": 46\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/46\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 47,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Webster fixture-child-34-2\",\n                \"first_name\": \"Webster\",\n                \"last_name\": \"fixture-child-34-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-05-14\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 34,\n                        \"values\": {\n                            \"family_id\": 34,\n                            \"is_primary\": true,\n                            \"name\": \"Aglae fixture-lead-34\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/34/guardians/34\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 47,\n                        \"values\": {\n                            \"child_id\": 47\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/47\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 37,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 25,\n            \"values\": {\n                \"value\": \"Flyer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/25\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 832,\n            \"values\": {\n                \"value\": \"Kiosk\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/832\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 37,\n            \"name\": \"Hank fixture-lead-37\",\n            \"first_name\": \"Hank\",\n            \"last_name\": \"fixture-lead-37\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam37@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (647) 923-9403\",\n                \"number_e164\": \"+16479239403\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Mother\",\n            \"center_id\": 6,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 37,\n                \"name\": \"Hank fixture-lead-37\",\n                \"first_name\": \"Hank\",\n                \"last_name\": \"fixture-lead-37\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam37@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (647) 923-9403\",\n                    \"number_e164\": \"+16479239403\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Mother\",\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 52,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Jacynthe fixture-child-37-1\",\n                \"first_name\": \"Jacynthe\",\n                \"last_name\": \"fixture-child-37-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-06-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 37,\n                        \"values\": {\n                            \"family_id\": 37,\n                            \"is_primary\": true,\n                            \"name\": \"Hank fixture-lead-37\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/37/guardians/37\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 52,\n                        \"values\": {\n                            \"child_id\": 52\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/52\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 53,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Zita fixture-child-37-2\",\n                \"first_name\": \"Zita\",\n                \"last_name\": \"fixture-child-37-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-08-12\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 37,\n                        \"values\": {\n                            \"family_id\": 37,\n                            \"is_primary\": true,\n                            \"name\": \"Hank fixture-lead-37\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/37/guardians/37\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 53,\n                        \"values\": {\n                            \"child_id\": 53\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/53\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 40,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 2,\n            \"values\": {\n                \"name\": \"Responsive\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/2\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 386,\n            \"values\": {\n                \"value\": \"Email Campaign\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/386\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 837,\n            \"values\": {\n                \"value\": \"Self-Scheduled Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/837\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 40,\n            \"name\": \"Geovanni fixture-lead-40\",\n            \"first_name\": \"Geovanni\",\n            \"last_name\": \"fixture-lead-40\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam40@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(571) 704-0219\",\n                \"number_e164\": \"+15717040219\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 7,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 2,\n                \"values\": {\n                    \"name\": \"Responsive\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/2\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 40,\n                \"name\": \"Geovanni fixture-lead-40\",\n                \"first_name\": \"Geovanni\",\n                \"last_name\": \"fixture-lead-40\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam40@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(571) 704-0219\",\n                    \"number_e164\": \"+15717040219\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 58,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Timmothy fixture-child-40-1\",\n                \"first_name\": \"Timmothy\",\n                \"last_name\": \"fixture-child-40-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-07-09\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 40,\n                        \"values\": {\n                            \"family_id\": 40,\n                            \"is_primary\": true,\n                            \"name\": \"Geovanni fixture-lead-40\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/40/guardians/40\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 58,\n                        \"values\": {\n                            \"child_id\": 58\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/58\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 59,\n                \"status\": {\n                    \"id\": 2,\n                    \"values\": {\n                        \"name\": \"Responsive\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/2\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Hulda fixture-child-40-2\",\n                \"first_name\": \"Hulda\",\n                \"last_name\": \"fixture-child-40-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-09-08\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 40,\n                        \"values\": {\n                            \"family_id\": 40,\n                            \"is_primary\": true,\n                            \"name\": \"Geovanni fixture-lead-40\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/40/guardians/40\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 59,\n                        \"values\": {\n                            \"child_id\": 59\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/59\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 46,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 3,\n            \"values\": {\n                \"name\": \"Tour Completed\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/3\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:41+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 196,\n            \"values\": {\n                \"value\": \"Community Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/196\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 834,\n            \"values\": {\n                \"value\": \"Wait List Form\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/834\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 46,\n            \"name\": \"Shyann fixture-lead-46\",\n            \"first_name\": \"Shyann\",\n            \"last_name\": \"fixture-lead-46\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:41+00:00\",\n            \"email\": \"childcarespam46@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(495) 636-9704\",\n                \"number_e164\": \"+14956369704\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandmother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 46,\n                \"name\": \"Shyann fixture-lead-46\",\n                \"first_name\": \"Shyann\",\n                \"last_name\": \"fixture-lead-46\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:41+00:00\",\n                \"email\": \"childcarespam46@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(495) 636-9704\",\n                    \"number_e164\": \"+14956369704\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandmother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 64,\n                \"status\": {\n                    \"id\": 8,\n                    \"values\": {\n                        \"name\": \"Withdrawn\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/8\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Rupert fixture-child-46-1\",\n                \"first_name\": \"Rupert\",\n                \"last_name\": \"fixture-child-46-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-06-20\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 46,\n                        \"values\": {\n                            \"family_id\": 46,\n                            \"is_primary\": true,\n                            \"name\": \"Shyann fixture-lead-46\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/46/guardians/46\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 64,\n                        \"values\": {\n                            \"child_id\": 64\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/64\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 47,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 3,\n            \"values\": {\n                \"name\": \"Tour Completed\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/3\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:41+00:00\",\n        \"inquiry_type\": {\n            \"id\": 140,\n            \"values\": {\n                \"value\": \"Phone\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/140\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 387,\n            \"values\": {\n                \"value\": \"Referral-Agency\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/387\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 47,\n            \"name\": \"Erwin fixture-lead-47\",\n            \"first_name\": \"Erwin\",\n            \"last_name\": \"fixture-lead-47\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:41+00:00\",\n            \"email\": \"childcarespam47@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(442) 492-9607\",\n                \"number_e164\": \"+14424929607\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 47,\n                \"name\": \"Erwin fixture-lead-47\",\n                \"first_name\": \"Erwin\",\n                \"last_name\": \"fixture-lead-47\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:41+00:00\",\n                \"email\": \"childcarespam47@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(442) 492-9607\",\n                    \"number_e164\": \"+14424929607\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 65,\n                \"status\": {\n                    \"id\": 7,\n                    \"values\": {\n                        \"name\": \"Temporary Leave\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/7\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Rickie fixture-child-47-1\",\n                \"first_name\": \"Rickie\",\n                \"last_name\": \"fixture-child-47-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-02-23\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:44+00:00\",\n                \"system_date\": \"2020-05-11T17:30:44+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 47,\n                        \"values\": {\n                            \"family_id\": 47,\n                            \"is_primary\": true,\n                            \"name\": \"Erwin fixture-lead-47\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/47/guardians/47\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 65,\n                        \"values\": {\n                            \"child_id\": 65\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/65\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 48,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 3,\n            \"values\": {\n                \"name\": \"Tour Completed\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/3\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:41+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 658,\n            \"values\": {\n                \"value\": \"Other Social Media\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/658\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 833,\n            \"values\": {\n                \"value\": \"Care.com\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/833\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 48,\n            \"name\": \"Kristoffer fixture-lead-48\",\n            \"first_name\": \"Kristoffer\",\n            \"last_name\": \"fixture-lead-48\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:41+00:00\",\n            \"email\": \"childcarespam48@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(562) 205-7540\",\n                \"number_e164\": \"+15622057540\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Father\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 48,\n                \"name\": \"Kristoffer fixture-lead-48\",\n                \"first_name\": \"Kristoffer\",\n                \"last_name\": \"fixture-lead-48\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:41+00:00\",\n                \"email\": \"childcarespam48@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(562) 205-7540\",\n                    \"number_e164\": \"+15622057540\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Father\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 66,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Carroll fixture-child-48-1\",\n                \"first_name\": \"Carroll\",\n                \"last_name\": \"fixture-child-48-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-06-26\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:44+00:00\",\n                \"system_date\": \"2020-05-11T17:30:44+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 48,\n                        \"values\": {\n                            \"family_id\": 48,\n                            \"is_primary\": true,\n                            \"name\": \"Kristoffer fixture-lead-48\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/48/guardians/48\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 66,\n                        \"values\": {\n                            \"child_id\": 66\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/66\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 49,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 3,\n            \"values\": {\n                \"name\": \"Tour Completed\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/3\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:41+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 49,\n            \"name\": \"Tania fixture-lead-49\",\n            \"first_name\": \"Tania\",\n            \"last_name\": \"fixture-lead-49\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:41+00:00\",\n            \"email\": \"childcarespam49@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(913) 818-6747\",\n                \"number_e164\": \"+19138186747\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Guardian\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 49,\n                \"name\": \"Tania fixture-lead-49\",\n                \"first_name\": \"Tania\",\n                \"last_name\": \"fixture-lead-49\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:41+00:00\",\n                \"email\": \"childcarespam49@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(913) 818-6747\",\n                    \"number_e164\": \"+19138186747\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Guardian\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 67,\n                \"status\": {\n                    \"id\": 6,\n                    \"values\": {\n                        \"name\": \"Enrolled (Started)\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/6\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Rosie fixture-child-49-1\",\n                \"first_name\": \"Rosie\",\n                \"last_name\": \"fixture-child-49-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-11-14\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:45+00:00\",\n                \"system_date\": \"2020-05-11T17:30:45+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 49,\n                        \"values\": {\n                            \"family_id\": 49,\n                            \"is_primary\": true,\n                            \"name\": \"Tania fixture-lead-49\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/49/guardians/49\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 67,\n                        \"values\": {\n                            \"child_id\": 67\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/67\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 44,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 9,\n            \"values\": {\n                \"name\": \"Lost Opportunity\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/9\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 387,\n            \"values\": {\n                \"value\": \"Referral-Agency\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/387\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 828,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/828\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 44,\n            \"name\": \"Thaddeus fixture-lead-44\",\n            \"first_name\": \"Thaddeus\",\n            \"last_name\": \"fixture-lead-44\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam44@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(404) 781-5855\",\n                \"number_e164\": \"+14047815855\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandfather\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 44,\n                \"name\": \"Thaddeus fixture-lead-44\",\n                \"first_name\": \"Thaddeus\",\n                \"last_name\": \"fixture-lead-44\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam44@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(404) 781-5855\",\n                    \"number_e164\": \"+14047815855\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandfather\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 45,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 9,\n            \"values\": {\n                \"name\": \"Lost Opportunity\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/9\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:41+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 386,\n            \"values\": {\n                \"value\": \"Email Campaign\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/386\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 833,\n            \"values\": {\n                \"value\": \"Care.com\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/833\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 45,\n            \"name\": \"Sonya fixture-lead-45\",\n            \"first_name\": \"Sonya\",\n            \"last_name\": \"fixture-lead-45\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:41+00:00\",\n            \"email\": \"childcarespam45@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(210) 805-1094\",\n                \"number_e164\": \"+12108051094\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Father\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 9,\n                \"values\": {\n                    \"name\": \"Lost Opportunity\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/9\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 45,\n                \"name\": \"Sonya fixture-lead-45\",\n                \"first_name\": \"Sonya\",\n                \"last_name\": \"fixture-lead-45\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:41+00:00\",\n                \"email\": \"childcarespam45@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(210) 805-1094\",\n                    \"number_e164\": \"+12108051094\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Father\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 9,\n                    \"values\": {\n                        \"name\": \"Lost Opportunity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/9\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 23,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 658,\n            \"values\": {\n                \"value\": \"Other Social Media\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/658\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 832,\n            \"values\": {\n                \"value\": \"Kiosk\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/832\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 23,\n            \"name\": \"Jarrod fixture-lead-23\",\n            \"first_name\": \"Jarrod\",\n            \"last_name\": \"fixture-lead-23\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam23@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(963) 676-6842\",\n                \"number_e164\": \"+19636766842\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 23,\n                \"name\": \"Jarrod fixture-lead-23\",\n                \"first_name\": \"Jarrod\",\n                \"last_name\": \"fixture-lead-23\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam23@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(963) 676-6842\",\n                    \"number_e164\": \"+19636766842\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 24,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Litzy fixture-child-23-1\",\n                \"first_name\": \"Litzy\",\n                \"last_name\": \"fixture-child-23-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-11-01\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 23,\n                        \"values\": {\n                            \"family_id\": 23,\n                            \"is_primary\": true,\n                            \"name\": \"Jarrod fixture-lead-23\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/23/guardians/23\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 24,\n                        \"values\": {\n                            \"child_id\": 24\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/24\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 25,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Thomas fixture-child-23-2\",\n                \"first_name\": \"Thomas\",\n                \"last_name\": \"fixture-child-23-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-08-09\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 23,\n                        \"values\": {\n                            \"family_id\": 23,\n                            \"is_primary\": true,\n                            \"name\": \"Jarrod fixture-lead-23\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/23/guardians/23\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 25,\n                        \"values\": {\n                            \"child_id\": 25\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/25\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 24,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 25,\n            \"values\": {\n                \"value\": \"Flyer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/25\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 24,\n            \"name\": \"Therese fixture-lead-24\",\n            \"first_name\": \"Therese\",\n            \"last_name\": \"fixture-lead-24\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam24@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (664) 485-3342\",\n                \"number_e164\": \"+16644853342\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Nanny\",\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 24,\n                \"name\": \"Therese fixture-lead-24\",\n                \"first_name\": \"Therese\",\n                \"last_name\": \"fixture-lead-24\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam24@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (664) 485-3342\",\n                    \"number_e164\": \"+16644853342\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Nanny\",\n                \"center_id\": 1,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 26,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Hoyt fixture-child-24-1\",\n                \"first_name\": \"Hoyt\",\n                \"last_name\": \"fixture-child-24-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-08-17\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 24,\n                        \"values\": {\n                            \"family_id\": 24,\n                            \"is_primary\": true,\n                            \"name\": \"Therese fixture-lead-24\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/24/guardians/24\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 26,\n                        \"values\": {\n                            \"child_id\": 26\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/26\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 27,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Koby fixture-child-24-2\",\n                \"first_name\": \"Koby\",\n                \"last_name\": \"fixture-child-24-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-10-05\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 24,\n                        \"values\": {\n                            \"family_id\": 24,\n                            \"is_primary\": true,\n                            \"name\": \"Therese fixture-lead-24\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/24/guardians/24\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 27,\n                        \"values\": {\n                            \"child_id\": 27\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/27\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 26,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 746,\n            \"values\": {\n                \"value\": \"Care for Kids\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/746\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 833,\n            \"values\": {\n                \"value\": \"Care.com\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/833\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 26,\n            \"name\": \"Jace fixture-lead-26\",\n            \"first_name\": \"Jace\",\n            \"last_name\": \"fixture-lead-26\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam26@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(937) 407-6468\",\n                \"number_e164\": \"+19374076468\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Father\",\n            \"center_id\": 2,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 26,\n                \"name\": \"Jace fixture-lead-26\",\n                \"first_name\": \"Jace\",\n                \"last_name\": \"fixture-lead-26\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam26@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(937) 407-6468\",\n                    \"number_e164\": \"+19374076468\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Father\",\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 30,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Jamal fixture-child-26-1\",\n                \"first_name\": \"Jamal\",\n                \"last_name\": \"fixture-child-26-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-01-23\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 26,\n                        \"values\": {\n                            \"family_id\": 26,\n                            \"is_primary\": true,\n                            \"name\": \"Jace fixture-lead-26\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/26/guardians/26\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 30,\n                        \"values\": {\n                            \"child_id\": 30\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/30\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 31,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Adaline fixture-child-26-2\",\n                \"first_name\": \"Adaline\",\n                \"last_name\": \"fixture-child-26-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-01-23\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 26,\n                        \"values\": {\n                            \"family_id\": 26,\n                            \"is_primary\": true,\n                            \"name\": \"Jace fixture-lead-26\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/26/guardians/26\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 31,\n                        \"values\": {\n                            \"child_id\": 31\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/31\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 27,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 24,\n            \"values\": {\n                \"value\": \"Publication Adv\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/24\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 27,\n            \"name\": \"Erich fixture-lead-27\",\n            \"first_name\": \"Erich\",\n            \"last_name\": \"fixture-lead-27\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam27@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(678) 976-1327\",\n                \"number_e164\": \"+16789761327\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Mother\",\n            \"center_id\": 2,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 27,\n                \"name\": \"Erich fixture-lead-27\",\n                \"first_name\": \"Erich\",\n                \"last_name\": \"fixture-lead-27\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam27@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(678) 976-1327\",\n                    \"number_e164\": \"+16789761327\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Mother\",\n                \"center_id\": 2,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 32,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Daron fixture-child-27-1\",\n                \"first_name\": \"Daron\",\n                \"last_name\": \"fixture-child-27-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-01-15\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 27,\n                        \"values\": {\n                            \"family_id\": 27,\n                            \"is_primary\": true,\n                            \"name\": \"Erich fixture-lead-27\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/27/guardians/27\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 32,\n                        \"values\": {\n                            \"child_id\": 32\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/32\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 33,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Dayton fixture-child-27-2\",\n                \"first_name\": \"Dayton\",\n                \"last_name\": \"fixture-child-27-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-04-21\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 27,\n                        \"values\": {\n                            \"family_id\": 27,\n                            \"is_primary\": true,\n                            \"name\": \"Erich fixture-lead-27\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/27/guardians/27\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 33,\n                        \"values\": {\n                            \"child_id\": 33\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/33\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 29,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 143,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/143\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 740,\n            \"values\": {\n                \"value\": \"Care for Kids\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/740\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 830,\n            \"values\": {\n                \"value\": \"Transfer\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/830\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 29,\n            \"name\": \"Hope fixture-lead-29\",\n            \"first_name\": \"Hope\",\n            \"last_name\": \"fixture-lead-29\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam29@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(549) 520-4763\",\n                \"number_e164\": \"+15495204763\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandfather\",\n            \"center_id\": 3,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 29,\n                \"name\": \"Hope fixture-lead-29\",\n                \"first_name\": \"Hope\",\n                \"last_name\": \"fixture-lead-29\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam29@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(549) 520-4763\",\n                    \"number_e164\": \"+15495204763\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandfather\",\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 36,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Chelsey fixture-child-29-1\",\n                \"first_name\": \"Chelsey\",\n                \"last_name\": \"fixture-child-29-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-02-25\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 29,\n                        \"values\": {\n                            \"family_id\": 29,\n                            \"is_primary\": true,\n                            \"name\": \"Hope fixture-lead-29\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/29/guardians/29\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 36,\n                        \"values\": {\n                            \"child_id\": 36\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/36\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 37,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Santa fixture-child-29-2\",\n                \"first_name\": \"Santa\",\n                \"last_name\": \"fixture-child-29-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2020-01-24\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 29,\n                        \"values\": {\n                            \"family_id\": 29,\n                            \"is_primary\": true,\n                            \"name\": \"Hope fixture-lead-29\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/29/guardians/29\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 37,\n                        \"values\": {\n                            \"child_id\": 37\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/37\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 30,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 195,\n            \"values\": {\n                \"value\": \"Center Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/195\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 831,\n            \"values\": {\n                \"value\": \"Duplicate\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/831\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 30,\n            \"name\": \"Zella fixture-lead-30\",\n            \"first_name\": \"Zella\",\n            \"last_name\": \"fixture-lead-30\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam30@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(814) 271-7039\",\n                \"number_e164\": \"+18142717039\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Guardian\",\n            \"center_id\": 3,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 30,\n                \"name\": \"Zella fixture-lead-30\",\n                \"first_name\": \"Zella\",\n                \"last_name\": \"fixture-lead-30\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam30@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(814) 271-7039\",\n                    \"number_e164\": \"+18142717039\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Guardian\",\n                \"center_id\": 3,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 38,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Fausto fixture-child-30-1\",\n                \"first_name\": \"Fausto\",\n                \"last_name\": \"fixture-child-30-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-07-07\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 30,\n                        \"values\": {\n                            \"family_id\": 30,\n                            \"is_primary\": true,\n                            \"name\": \"Zella fixture-lead-30\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/30/guardians/30\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 38,\n                        \"values\": {\n                            \"child_id\": 38\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/38\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 39,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Mabel fixture-child-30-2\",\n                \"first_name\": \"Mabel\",\n                \"last_name\": \"fixture-child-30-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-02-07\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 30,\n                        \"values\": {\n                            \"family_id\": 30,\n                            \"is_primary\": true,\n                            \"name\": \"Zella fixture-lead-30\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/30/guardians/30\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 39,\n                        \"values\": {\n                            \"child_id\": 39\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/39\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 32,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 347,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/347\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 121,\n            \"values\": {\n                \"value\": \"Direct Mail\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/121\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 831,\n            \"values\": {\n                \"value\": \"Duplicate\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/831\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 32,\n            \"name\": \"Bernardo fixture-lead-32\",\n            \"first_name\": \"Bernardo\",\n            \"last_name\": \"fixture-lead-32\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam32@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(253) 653-2468\",\n                \"number_e164\": \"+12536532468\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Guardian\",\n            \"center_id\": 4,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 32,\n                \"name\": \"Bernardo fixture-lead-32\",\n                \"first_name\": \"Bernardo\",\n                \"last_name\": \"fixture-lead-32\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam32@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(253) 653-2468\",\n                    \"number_e164\": \"+12536532468\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Guardian\",\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 42,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Eveline fixture-child-32-1\",\n                \"first_name\": \"Eveline\",\n                \"last_name\": \"fixture-child-32-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-09-06\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 32,\n                        \"values\": {\n                            \"family_id\": 32,\n                            \"is_primary\": true,\n                            \"name\": \"Bernardo fixture-lead-32\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/32/guardians/32\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 42,\n                        \"values\": {\n                            \"child_id\": 42\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/42\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 43,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Elyssa fixture-child-32-2\",\n                \"first_name\": \"Elyssa\",\n                \"last_name\": \"fixture-child-32-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-09-23\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 32,\n                        \"values\": {\n                            \"family_id\": 32,\n                            \"is_primary\": true,\n                            \"name\": \"Bernardo fixture-lead-32\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/32/guardians/32\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 43,\n                        \"values\": {\n                            \"child_id\": 43\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/43\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 33,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 33,\n            \"name\": \"Ursula fixture-lead-33\",\n            \"first_name\": \"Ursula\",\n            \"last_name\": \"fixture-lead-33\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam33@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(512) 507-7528\",\n                \"number_e164\": \"+15125077528\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Guardian\",\n            \"center_id\": 4,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 33,\n                \"name\": \"Ursula fixture-lead-33\",\n                \"first_name\": \"Ursula\",\n                \"last_name\": \"fixture-lead-33\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam33@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(512) 507-7528\",\n                    \"number_e164\": \"+15125077528\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Guardian\",\n                \"center_id\": 4,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 44,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Leola fixture-child-33-1\",\n                \"first_name\": \"Leola\",\n                \"last_name\": \"fixture-child-33-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-01-24\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 33,\n                        \"values\": {\n                            \"family_id\": 33,\n                            \"is_primary\": true,\n                            \"name\": \"Ursula fixture-lead-33\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/33/guardians/33\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 44,\n                        \"values\": {\n                            \"child_id\": 44\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/44\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 45,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Mabelle fixture-child-33-2\",\n                \"first_name\": \"Mabelle\",\n                \"last_name\": \"fixture-child-33-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-01-02\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 33,\n                        \"values\": {\n                            \"family_id\": 33,\n                            \"is_primary\": true,\n                            \"name\": \"Ursula fixture-lead-33\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/33/guardians/33\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 45,\n                        \"values\": {\n                            \"child_id\": 45\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/45\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 35,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 142,\n            \"values\": {\n                \"value\": \"Email\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/142\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 682,\n            \"values\": {\n                \"value\": \"Web Search\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/682\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 826,\n            \"values\": {\n                \"value\": \"Unknown\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/826\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 35,\n            \"name\": \"Jayme fixture-lead-35\",\n            \"first_name\": \"Jayme\",\n            \"last_name\": \"fixture-lead-35\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam35@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(258) 476-5004\",\n                \"number_e164\": \"+12584765004\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandfather\",\n            \"center_id\": 5,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 35,\n                \"name\": \"Jayme fixture-lead-35\",\n                \"first_name\": \"Jayme\",\n                \"last_name\": \"fixture-lead-35\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam35@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(258) 476-5004\",\n                    \"number_e164\": \"+12584765004\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandfather\",\n                \"center_id\": 5,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 48,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Johnpaul fixture-child-35-1\",\n                \"first_name\": \"Johnpaul\",\n                \"last_name\": \"fixture-child-35-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2020-02-14\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 35,\n                        \"values\": {\n                            \"family_id\": 35,\n                            \"is_primary\": true,\n                            \"name\": \"Jayme fixture-lead-35\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/35/guardians/35\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 48,\n                        \"values\": {\n                            \"child_id\": 48\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/48\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 49,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Jan fixture-child-35-2\",\n                \"first_name\": \"Jan\",\n                \"last_name\": \"fixture-child-35-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-06-02\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 35,\n                        \"values\": {\n                            \"family_id\": 35,\n                            \"is_primary\": true,\n                            \"name\": \"Jayme fixture-lead-35\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/35/guardians/35\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 49,\n                        \"values\": {\n                            \"child_id\": 49\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/49\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 36,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 144,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/144\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 24,\n            \"values\": {\n                \"value\": \"Publication Adv\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/24\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 36,\n            \"name\": \"Modesta fixture-lead-36\",\n            \"first_name\": \"Modesta\",\n            \"last_name\": \"fixture-lead-36\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam36@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(934) 200-8856\",\n                \"number_e164\": \"+19342008856\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 5,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 36,\n                \"name\": \"Modesta fixture-lead-36\",\n                \"first_name\": \"Modesta\",\n                \"last_name\": \"fixture-lead-36\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam36@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(934) 200-8856\",\n                    \"number_e164\": \"+19342008856\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 5,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 50,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Desiree fixture-child-36-1\",\n                \"first_name\": \"Desiree\",\n                \"last_name\": \"fixture-child-36-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-01-12\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 36,\n                        \"values\": {\n                            \"family_id\": 36,\n                            \"is_primary\": true,\n                            \"name\": \"Modesta fixture-lead-36\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/36/guardians/36\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 50,\n                        \"values\": {\n                            \"child_id\": 50\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/50\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 51,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Maxime fixture-child-36-2\",\n                \"first_name\": \"Maxime\",\n                \"last_name\": \"fixture-child-36-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-10-29\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:42+00:00\",\n                \"system_date\": \"2020-05-11T17:30:42+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 36,\n                        \"values\": {\n                            \"family_id\": 36,\n                            \"is_primary\": true,\n                            \"name\": \"Modesta fixture-lead-36\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/36/guardians/36\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 51,\n                        \"values\": {\n                            \"child_id\": 51\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/51\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 38,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:39+00:00\",\n        \"inquiry_type\": {\n            \"id\": 805,\n            \"values\": {\n                \"value\": \"Self Tour\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/805\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 658,\n            \"values\": {\n                \"value\": \"Other Social Media\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/658\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 829,\n            \"values\": {\n                \"value\": \"Referral\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/829\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 38,\n            \"name\": \"Jeramie fixture-lead-38\",\n            \"first_name\": \"Jeramie\",\n            \"last_name\": \"fixture-lead-38\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:39+00:00\",\n            \"email\": \"childcarespam38@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(746) 478-4296\",\n                \"number_e164\": \"+17464784296\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 6,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 38,\n                \"name\": \"Jeramie fixture-lead-38\",\n                \"first_name\": \"Jeramie\",\n                \"last_name\": \"fixture-lead-38\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:39+00:00\",\n                \"email\": \"childcarespam38@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(746) 478-4296\",\n                    \"number_e164\": \"+17464784296\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 54,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Stefan fixture-child-38-1\",\n                \"first_name\": \"Stefan\",\n                \"last_name\": \"fixture-child-38-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-04-28\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 38,\n                        \"values\": {\n                            \"family_id\": 38,\n                            \"is_primary\": true,\n                            \"name\": \"Jeramie fixture-lead-38\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/38/guardians/38\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 54,\n                        \"values\": {\n                            \"child_id\": 54\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/54\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 55,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Patrick fixture-child-38-2\",\n                \"first_name\": \"Patrick\",\n                \"last_name\": \"fixture-child-38-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-04-17\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 38,\n                        \"values\": {\n                            \"family_id\": 38,\n                            \"is_primary\": true,\n                            \"name\": \"Jeramie fixture-lead-38\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/38/guardians/38\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 55,\n                        \"values\": {\n                            \"child_id\": 55\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/55\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 39,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 196,\n            \"values\": {\n                \"value\": \"Community Event\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/196\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 835,\n            \"values\": {\n                \"value\": \"API\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/835\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 39,\n            \"name\": \"Mae fixture-lead-39\",\n            \"first_name\": \"Mae\",\n            \"last_name\": \"fixture-lead-39\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam39@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"1 (684) 545-7510\",\n                \"number_e164\": \"+16845457510\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Uncle\",\n            \"center_id\": 6,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 39,\n                \"name\": \"Mae fixture-lead-39\",\n                \"first_name\": \"Mae\",\n                \"last_name\": \"fixture-lead-39\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam39@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"1 (684) 545-7510\",\n                    \"number_e164\": \"+16845457510\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Uncle\",\n                \"center_id\": 6,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 56,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Annabelle fixture-child-39-1\",\n                \"first_name\": \"Annabelle\",\n                \"last_name\": \"fixture-child-39-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-10-14\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 39,\n                        \"values\": {\n                            \"family_id\": 39,\n                            \"is_primary\": true,\n                            \"name\": \"Mae fixture-lead-39\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/39/guardians/39\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 56,\n                        \"values\": {\n                            \"child_id\": 56\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/56\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 57,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Lera fixture-child-39-2\",\n                \"first_name\": \"Lera\",\n                \"last_name\": \"fixture-child-39-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2018-07-17\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 39,\n                        \"values\": {\n                            \"family_id\": 39,\n                            \"is_primary\": true,\n                            \"name\": \"Mae fixture-lead-39\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/39/guardians/39\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 57,\n                        \"values\": {\n                            \"child_id\": 57\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/57\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 41,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 142,\n            \"values\": {\n                \"value\": \"Email\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/142\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 200,\n            \"values\": {\n                \"value\": \"QikKids Import\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/200\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 833,\n            \"values\": {\n                \"value\": \"Care.com\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/833\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 41,\n            \"name\": \"Jarod fixture-lead-41\",\n            \"first_name\": \"Jarod\",\n            \"last_name\": \"fixture-lead-41\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam41@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(702) 959-0616\",\n                \"number_e164\": \"+17029590616\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Step-Father\",\n            \"center_id\": 7,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 41,\n                \"name\": \"Jarod fixture-lead-41\",\n                \"first_name\": \"Jarod\",\n                \"last_name\": \"fixture-lead-41\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam41@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(702) 959-0616\",\n                    \"number_e164\": \"+17029590616\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Step-Father\",\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 60,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Kristian fixture-child-41-1\",\n                \"first_name\": \"Kristian\",\n                \"last_name\": \"fixture-child-41-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2015-07-20\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 41,\n                        \"values\": {\n                            \"family_id\": 41,\n                            \"is_primary\": true,\n                            \"name\": \"Jarod fixture-lead-41\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/41/guardians/41\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 60,\n                        \"values\": {\n                            \"child_id\": 60\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/60\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 61,\n                \"status\": {\n                    \"id\": 3,\n                    \"values\": {\n                        \"name\": \"Tour Completed\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/3\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Carolanne fixture-child-41-2\",\n                \"first_name\": \"Carolanne\",\n                \"last_name\": \"fixture-child-41-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2019-08-30\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 41,\n                        \"values\": {\n                            \"family_id\": 41,\n                            \"is_primary\": true,\n                            \"name\": \"Jarod fixture-lead-41\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/41/guardians/41\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 61,\n                        \"values\": {\n                            \"child_id\": 61\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/61\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    },\n    {\n        \"id\": 42,\n        \"is_active\": true,\n        \"status\": {\n            \"id\": 11,\n            \"values\": {\n                \"name\": \"Tour Scheduled\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/11\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"exported\": false,\n        \"exported_date\": null,\n        \"created_date\": \"2020-05-11T17:30:40+00:00\",\n        \"inquiry_type\": {\n            \"id\": 141,\n            \"values\": {\n                \"value\": \"Walk In\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/inquiry/141\",\n                    \"rel\": \"family_inquiry_type\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"source_type\": {\n            \"id\": 377,\n            \"values\": {\n                \"value\": \"Referral-Family\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/source/377\",\n                    \"rel\": \"family_source\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"origin_type\": {\n            \"id\": 828,\n            \"values\": {\n                \"value\": \"Web\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/family/origins/828\",\n                    \"rel\": \"origin\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"marketing_campaign\": null,\n        \"do_not_call\": false,\n        \"do_not_text\": false,\n        \"do_not_email\": false,\n        \"do_not_auto_email\": false,\n        \"subscriptions\": {\n            \"email\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            },\n            \"text\": {\n                \"general\": true,\n                \"marketing\": true,\n                \"service\": true,\n                \"urgent\": true\n            }\n        },\n        \"comments\": \"\",\n        \"primary_guardian\": {\n            \"id\": 42,\n            \"name\": \"Forrest fixture-lead-42\",\n            \"first_name\": \"Forrest\",\n            \"last_name\": \"fixture-lead-42\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-05-11T17:30:40+00:00\",\n            \"email\": \"childcarespam42@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(489) 866-9017\",\n                \"number_e164\": \"+14898669017\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Grandmother\",\n            \"center_id\": 7,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"integrations\": []\n        },\n        \"guardians\": [\n            {\n                \"id\": 42,\n                \"name\": \"Forrest fixture-lead-42\",\n                \"first_name\": \"Forrest\",\n                \"last_name\": \"fixture-lead-42\",\n                \"title\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": null,\n                \"added_date\": \"2020-05-11T17:30:40+00:00\",\n                \"email\": \"childcarespam42@gmail.com\",\n                \"alternate_email\": \"\",\n                \"address\": {\n                    \"address1\": \"\",\n                    \"address2\": \"\",\n                    \"address3\": \"\",\n                    \"address4\": \"\",\n                    \"locality\": \"\",\n                    \"region\": \"\",\n                    \"postcode\": \"\",\n                    \"country_code\": \"\",\n                    \"longitude\": \"\",\n                    \"latitude\": \"\"\n                },\n                \"primary_phone\": {\n                    \"type\": {\n                        \"id\": 19,\n                        \"values\": {\n                            \"value\": \"Cell\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/phone/19\",\n                                \"rel\": \"phone_type\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"country_code\": null,\n                    \"number\": \"(489) 866-9017\",\n                    \"number_e164\": \"+14898669017\",\n                    \"extension\": null\n                },\n                \"alternate_phone\": null,\n                \"relation_to_child\": \"Grandmother\",\n                \"center_id\": 7,\n                \"external_system_id\": \"\",\n                \"status\": {\n                    \"id\": 11,\n                    \"values\": {\n                        \"name\": \"Tour Scheduled\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/11\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"integrations\": []\n            }\n        ],\n        \"good_standing\": true,\n        \"children\": [\n            {\n                \"id\": 62,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Hazel fixture-child-42-1\",\n                \"first_name\": \"Hazel\",\n                \"last_name\": \"fixture-child-42-1\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2016-01-04\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 42,\n                        \"values\": {\n                            \"family_id\": 42,\n                            \"is_primary\": true,\n                            \"name\": \"Forrest fixture-lead-42\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/42/guardians/42\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 62,\n                        \"values\": {\n                            \"child_id\": 62\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/62\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            },\n            {\n                \"id\": 63,\n                \"status\": {\n                    \"id\": 4,\n                    \"values\": {\n                        \"name\": \"Wait List\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/statuses/4\",\n                            \"rel\": \"status\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"exported\": false,\n                \"exported_date\": null,\n                \"name\": \"Magdalen fixture-child-42-2\",\n                \"first_name\": \"Magdalen\",\n                \"last_name\": \"fixture-child-42-2\",\n                \"preferred_name\": \"\",\n                \"gender\": \"\",\n                \"date_of_birth\": \"2017-01-13\",\n                \"is_estimated_date_of_birth\": false,\n                \"added_date\": \"2020-05-11T17:30:43+00:00\",\n                \"system_date\": \"2020-05-11T17:30:43+00:00\",\n                \"comments\": \"\",\n                \"image\": null,\n                \"primary_language\": \"\",\n                \"secondary_language\": \"\",\n                \"immunizations_compliant\": false,\n                \"allergies\": \"\",\n                \"medical_conditions\": \"\",\n                \"dietary_requirements\": \"\",\n                \"emergency_contacts\": [\n                    {\n                        \"id\": 42,\n                        \"values\": {\n                            \"family_id\": 42,\n                            \"is_primary\": true,\n                            \"name\": \"Forrest fixture-lead-42\"\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/families/42/guardians/42\",\n                                \"rel\": \"guardian\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"address\": [],\n                \"enrollments\": [\n                    {\n                        \"id\": 63,\n                        \"values\": {\n                            \"child_id\": 63\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/enrollments/63\",\n                                \"rel\": \"enrollment\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    }\n                ],\n                \"integrations\": []\n            }\n        ],\n        \"integrations\": [],\n        \"enrollment_rep\": null\n    }\n]"}],"_postman_id":"2c85b27c-39ea-4206-bfeb-9ea922dc0b0c"},{"name":"Get families by origin","id":"2b84b337-9bd2-4475-8fe6-825635fc2b57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families?origin_id=813","description":"<p>All families in ChildCareCRM have an origin. For example, a family added by a user would have a \"User\" origin whereas a family who submitted data via a web form would have a \"Web\" origin.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"key":"origin_id","value":"813"}],"variable":[]}},"response":[],"_postman_id":"2b84b337-9bd2-4475-8fe6-825635fc2b57"},{"name":"Get families by creation date range","id":"20bd19d8-2532-4846-8629-7bef5f8ed06e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families?created_before=1995-03-27&created_after=1995-03-25","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"key":"created_before","value":"1995-03-27"},{"key":"created_after","value":"1995-03-25"}],"variable":[]}},"response":[],"_postman_id":"20bd19d8-2532-4846-8629-7bef5f8ed06e"},{"name":"Get family by an integration id","id":"0cf41a8a-0906-4600-baab-db230a22c10f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families?integration_partner_id=1&integration_id=231","description":"<p>ChildCareCRM offers integrations with many child care management systems. In these cases, families will often have an id in the integration partner's system. This filter allows users to search for a family by an integration ids.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"key":"integration_partner_id","value":"1"},{"key":"integration_id","value":"231"}],"variable":[]}},"response":[],"_postman_id":"0cf41a8a-0906-4600-baab-db230a22c10f"},{"name":"Get families in a center","id":"1a256332-3e7f-4c13-a8fb-4e18ab8be401","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families?center_id=1","urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"key":"center_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"1a256332-3e7f-4c13-a8fb-4e18ab8be401"},{"name":"Get families in a specific status","id":"0466785b-d792-486b-8f7d-2629d1d45e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/families?status_ids[]=1&status_ids[]=2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Filter by specific status(es). </p>\n","type":"text/plain"},"key":"status_ids[]","value":"1"},{"key":"status_ids[]","value":"2"}],"variable":[]}},"response":[],"_postman_id":"0466785b-d792-486b-8f7d-2629d1d45e1a"},{"name":"Family by id","id":"2bad5c40-f5e0-4711-8946-1c367cede0f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/families/539","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","539"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"fd591e70-7f0f-4bc5-b854-004d2e298164","name":"Family by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/admin/v1/customers/1089/families/1051"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 01 Dec 2021 22:31:36 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=bssa50d57raqs1luj0v63lto72; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Tue, 01-Dec-2020 22:31:38 GMT; Max-Age=0; path=/; httponly"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"0944c9"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/0944c9"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"X-Previous-Debug-Token","value":"6ac575"},{"key":"Expires","value":"Wed, 01 Dec 2021 22:31:39 GMT"},{"key":"Content-Length","value":"7896"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1051,\n    \"center\": {\n        \"id\": 1,\n        \"values\": {\n            \"name\": \"ABC Learning of Euless\",\n            \"code\": \"Euless\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/centers/1\",\n                \"rel\": \"center\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"is_active\": true,\n    \"status\": {\n        \"id\": 1,\n        \"values\": {\n            \"name\": \"New Family\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/statuses/1\",\n                \"rel\": \"status\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"exported\": false,\n    \"exported_date\": null,\n    \"created_date\": \"2021-05-22T16:14:02+00:00\",\n    \"added_date\": \"2021-05-22T16:14:02+00:00\",\n    \"inquiry_type\": {\n        \"id\": 141,\n        \"values\": {\n            \"value\": \"Walk In\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/inquiry/141\",\n                \"rel\": \"family_inquiry_type\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"source_type\": {\n        \"id\": 120,\n        \"values\": {\n            \"value\": \"Drive By Location\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/source/120\",\n                \"rel\": \"family_source\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"origin_type\": {\n        \"id\": 580,\n        \"values\": {\n            \"value\": \"Kiosk\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/origins/580\",\n                \"rel\": \"origin\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"marketing_campaign\": null,\n    \"marketing_campaigns\": [],\n    \"do_not_call\": false,\n    \"do_not_text\": true,\n    \"do_not_email\": true,\n    \"do_not_auto_email\": false,\n    \"subscriptions\": {\n        \"email\": {\n            \"general\": false,\n            \"marketing\": false,\n            \"service\": false,\n            \"urgent\": false\n        },\n        \"text\": {\n            \"general\": false,\n            \"marketing\": false,\n            \"service\": false,\n            \"urgent\": false\n        }\n    },\n    \"comments\": \"\",\n    \"primary_guardian\": {\n        \"id\": 2740,\n        \"name\": \"Bart Abrams\",\n        \"first_name\": \"Bart\",\n        \"last_name\": \"Abrams\",\n        \"title\": \"\",\n        \"gender\": \"\",\n        \"date_of_birth\": null,\n        \"added_date\": \"2021-05-22T16:14:02+00:00\",\n        \"email\": \"something@gmail.com\",\n        \"alternate_email\": \"\",\n        \"address\": {\n            \"address1\": \"\",\n            \"address2\": \"\",\n            \"address3\": \"\",\n            \"address4\": \"\",\n            \"locality\": \"\",\n            \"region\": \"\",\n            \"postcode\": \"\",\n            \"country_code\": \"\",\n            \"longitude\": \"\",\n            \"latitude\": \"\"\n        },\n        \"primary_phone\": {\n            \"type\": {\n                \"id\": 19,\n                \"values\": {\n                    \"value\": \"Cell\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/phone/19\",\n                        \"rel\": \"phone_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"country_code\": null,\n            \"number\": \"(972) 555-1369\",\n            \"number_e164\": \"+19725551369\",\n            \"extension\": null\n        },\n        \"alternate_phone\": null,\n        \"relation_to_child\": \"Mother\",\n        \"child_relation\": {\n            \"id\": 22,\n            \"values\": {\n                \"value\": \"Mother\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/relationships/22\",\n                    \"rel\": \"child_relation\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"center_id\": 1,\n        \"external_system_id\": \"\",\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Family\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"status_details\": {\n            \"lost_opportunity_reason\": null,\n            \"lost_opportunity_comment\": null,\n            \"rejected_reason\": null,\n            \"rejected_comment\": null\n        },\n        \"integrations\": [],\n        \"family_rep\": null,\n        \"marketing_note\": \"\",\n        \"referred_by\": \"\",\n        \"prior_likes\": \"\",\n        \"prior_dislikes\": \"\",\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null\n    },\n    \"guardians\": [\n        {\n            \"id\": 2740,\n            \"name\": \"Bart Abrams\",\n            \"first_name\": \"Bart\",\n            \"last_name\": \"Abrams\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2021-05-22T16:14:02+00:00\",\n            \"email\": \"something@gmail.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(972) 555-1369\",\n                \"number_e164\": \"+19725551369\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Mother\",\n            \"child_relation\": {\n                \"id\": 22,\n                \"values\": {\n                    \"value\": \"Mother\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/relationships/22\",\n                        \"rel\": \"child_relation\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"center_id\": 1,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\"\n        }\n    ],\n    \"good_standing\": false,\n    \"children\": [\n        {\n            \"id\": 1047,\n            \"status\": {\n                \"id\": 4,\n                \"values\": {\n                    \"name\": \"Wait List\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/4\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"enrolled_date\": null,\n                \"enrolled_reason\": null,\n                \"enrolled_comment\": null,\n                \"expected_start_date\": \"2021-11-03\",\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null,\n                \"temp_leave_date\": null,\n                \"temp_leave_reason\": null,\n                \"temp_leave_comment\": null,\n                \"wait_list_date\": \"2021-11-03\",\n                \"wait_list_type\": null,\n                \"wait_list_priority\": null,\n                \"wait_list_reason\": {\n                    \"id\": 488,\n                    \"values\": {\n                        \"value\": \"No Staff to Cover\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/reasons/wait-list/488\",\n                            \"rel\": \"wait_list_reason\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"wait_list_comment\": null,\n                \"wait_list_fee\": \"250\",\n                \"is_wait_list_fee_paid\": false,\n                \"wait_list_fee_paid_date\": \"2021-11-03\",\n                \"withdrawn_date\": null,\n                \"withdrawn_reason\": null,\n                \"withdrawn_comment\": null,\n                \"temp_leave_comments\": null\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"name\": \"Bob Abrams\",\n            \"first_name\": \"Bob\",\n            \"last_name\": \"Abrams\",\n            \"preferred_name\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": \"2021-11-08\",\n            \"is_estimated_date_of_birth\": false,\n            \"added_date\": \"2021-11-03T14:55:51+00:00\",\n            \"system_date\": \"2021-11-03T14:55:51+00:00\",\n            \"comments\": \"\",\n            \"image\": null,\n            \"primary_language\": \"\",\n            \"secondary_language\": \"\",\n            \"immunizations_compliant\": false,\n            \"allergies\": \"\",\n            \"medical_conditions\": \"\",\n            \"dietary_requirements\": \"\",\n            \"emergency_contacts\": [\n                {\n                    \"id\": 2740,\n                    \"values\": {\n                        \"family_id\": 1051,\n                        \"is_primary\": true,\n                        \"name\": \"Bart Abrams\",\n                        \"status\": 1\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/1051/guardians/2740\",\n                            \"rel\": \"guardian\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"address\": [],\n            \"enrollments\": [\n                {\n                    \"id\": 630,\n                    \"values\": {\n                        \"child_id\": 1047\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/enrollments/630\",\n                            \"rel\": \"enrollment\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"integrations\": [],\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null,\n            \"good_standing\": true,\n            \"is_child_of_staff\": false,\n            \"current_situation\": null,\n            \"is_eligible_for_reenrollment\": true,\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"prior_situation_comment\": \"\",\n            \"reason_for_change\": null,\n            \"is_sibling_in_care\": false,\n            \"custom_values\": [\n                {\n                    \"custom_value_group\": {\n                        \"id\": 6,\n                        \"values\": {\n                            \"value\": \"Allergies\",\n                            \"type\": 1,\n                            \"for_guardian\": true,\n                            \"for_child\": false\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/fields/custom/6\",\n                                \"rel\": \"custom-value-group\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_values\": [\n                        {\n                            \"id\": 18,\n                            \"values\": {\n                                \"value\": \"Hayfever\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/fields/custom/6/values/18\",\n                                    \"rel\": \"custom-value\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": 19,\n                            \"values\": {\n                                \"value\": \"Peanut\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/fields/custom/6/values/19\",\n                                    \"rel\": \"custom-value\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"custom_text_value\": null\n                },\n                {\n                    \"custom_value_group\": {\n                        \"id\": 3,\n                        \"values\": {\n                            \"value\": \"Family Persona\",\n                            \"type\": 1,\n                            \"for_guardian\": true,\n                            \"for_child\": false\n                        },\n                        \"links\": [\n                            {\n                                \"href\": \"/api/v3/types/fields/custom/3\",\n                                \"rel\": \"custom-value-group\",\n                                \"type\": \"GET\"\n                            }\n                        ]\n                    },\n                    \"custom_values\": [\n                        {\n                            \"id\": 6,\n                            \"values\": {\n                                \"value\": \"Christianity\"\n                            },\n                            \"links\": [\n                                {\n                                    \"href\": \"/api/v3/types/fields/custom/3/values/6\",\n                                    \"rel\": \"custom-value\",\n                                    \"type\": \"GET\"\n                                }\n                            ]\n                        }\n                    ],\n                    \"custom_text_value\": null\n                }\n            ]\n        },\n        {\n            \"id\": 992,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"enrolled_date\": null,\n                \"enrolled_reason\": null,\n                \"enrolled_comment\": null,\n                \"expected_start_date\": \"2021-06-23\",\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null,\n                \"temp_leave_date\": null,\n                \"temp_leave_reason\": null,\n                \"temp_leave_comment\": null,\n                \"wait_list_date\": null,\n                \"wait_list_type\": null,\n                \"wait_list_priority\": null,\n                \"wait_list_reason\": null,\n                \"wait_list_comment\": null,\n                \"wait_list_fee\": null,\n                \"is_wait_list_fee_paid\": false,\n                \"wait_list_fee_paid_date\": null,\n                \"withdrawn_date\": null,\n                \"withdrawn_reason\": null,\n                \"withdrawn_comment\": null,\n                \"temp_leave_comments\": null\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"name\": \"Jandy Abrams\",\n            \"first_name\": \"Jandy\",\n            \"last_name\": \"Abrams\",\n            \"preferred_name\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": \"2021-05-02\",\n            \"is_estimated_date_of_birth\": false,\n            \"added_date\": \"2021-05-22T16:14:02+00:00\",\n            \"system_date\": \"2021-05-22T16:14:02+00:00\",\n            \"comments\": \"\",\n            \"image\": null,\n            \"primary_language\": \"\",\n            \"secondary_language\": \"\",\n            \"immunizations_compliant\": false,\n            \"allergies\": \"\",\n            \"medical_conditions\": \"\",\n            \"dietary_requirements\": \"\",\n            \"emergency_contacts\": [\n                {\n                    \"id\": 2740,\n                    \"values\": {\n                        \"family_id\": 1051,\n                        \"is_primary\": true,\n                        \"name\": \"Bart Abrams\",\n                        \"status\": 1\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/1051/guardians/2740\",\n                            \"rel\": \"guardian\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"address\": [],\n            \"enrollments\": [\n                {\n                    \"id\": 572,\n                    \"values\": {\n                        \"child_id\": 992\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/enrollments/572\",\n                            \"rel\": \"enrollment\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"integrations\": [],\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null,\n            \"good_standing\": false,\n            \"is_child_of_staff\": false,\n            \"current_situation\": null,\n            \"is_eligible_for_reenrollment\": false,\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"prior_situation_comment\": \"\",\n            \"reason_for_change\": null,\n            \"is_sibling_in_care\": false,\n            \"custom_values\": []\n        }\n    ],\n    \"integrations\": [],\n    \"linked_families\": null,\n    \"custom_values\": [],\n    \"facebook_user_id\": null,\n    \"custom_type_1\": null,\n    \"custom_type_2\": null,\n    \"custom_type_3\": null,\n    \"custom_type_4\": null,\n    \"enrollment_rep\": null\n}"},{"id":"4ca45146-4874-41a3-a8f4-90d163e6009c","name":"Family by id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/admin/v1/customers/1089/families/1051"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 01 Dec 2021 22:31:36 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=bssa50d57raqs1luj0v63lto72; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Tue, 01-Dec-2020 22:31:38 GMT; Max-Age=0; path=/; httponly"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"0944c9"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/0944c9"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"X-Previous-Debug-Token","value":"6ac575"},{"key":"Expires","value":"Wed, 01 Dec 2021 22:31:39 GMT"},{"key":"Content-Length","value":"7896"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 843,\n    \"center\": {\n        \"id\": 27,\n        \"values\": {\n            \"name\": \"ABC Learning of Bedford\",\n            \"code\": \"Bedford\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/centers/27\",\n                \"rel\": \"center\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"is_active\": true,\n    \"status\": {\n        \"id\": 1,\n        \"values\": {\n            \"name\": \"New Family\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/statuses/1\",\n                \"rel\": \"status\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"exported\": false,\n    \"exported_date\": null,\n    \"created_date\": \"2020-08-14T15:07:14+00:00\",\n    \"added_date\": \"2020-04-06T15:07:14+00:00\",\n    \"inquiry_type\": {\n        \"id\": 141,\n        \"values\": {\n            \"value\": \"Walk In\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/inquiry/141\",\n                \"rel\": \"family_inquiry_type\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"source_type\": {\n        \"id\": 28,\n        \"values\": {\n            \"value\": \"Social Media\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/source/28\",\n                \"rel\": \"family_source\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"origin_type\": {\n        \"id\": 580,\n        \"values\": {\n            \"value\": \"Kiosk\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/families/origins/580\",\n                \"rel\": \"origin\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"marketing_campaign\": null,\n    \"marketing_campaigns\": [],\n    \"do_not_call\": true,\n    \"do_not_text\": false,\n    \"do_not_email\": false,\n    \"do_not_auto_email\": false,\n    \"subscriptions\": {\n        \"email\": {\n            \"general\": true,\n            \"marketing\": true,\n            \"service\": true,\n            \"urgent\": true\n        },\n        \"text\": {\n            \"general\": true,\n            \"marketing\": true,\n            \"service\": true,\n            \"urgent\": true\n        }\n    },\n    \"comments\": \"\",\n    \"primary_guardian\": {\n        \"id\": 2618,\n        \"name\": \"Georgina Alabama\",\n        \"first_name\": \"Georgina\",\n        \"last_name\": \"Alabama\",\n        \"title\": \"\",\n        \"gender\": \"\",\n        \"date_of_birth\": null,\n        \"added_date\": \"2020-04-06T15:07:14+00:00\",\n        \"email\": \"sdiprisco@childcarecrm.com\",\n        \"alternate_email\": \"\",\n        \"address\": {\n            \"address1\": \"\",\n            \"address2\": \"\",\n            \"address3\": \"\",\n            \"address4\": \"\",\n            \"locality\": \"\",\n            \"region\": \"n/a\",\n            \"postcode\": \"\",\n            \"country_code\": \"\",\n            \"longitude\": \"\",\n            \"latitude\": \"\"\n        },\n        \"primary_phone\": {\n            \"type\": {\n                \"id\": 19,\n                \"values\": {\n                    \"value\": \"Cell\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/phone/19\",\n                        \"rel\": \"phone_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"country_code\": null,\n            \"number\": \"(817) 555-8839\",\n            \"number_e164\": \"+18175558839\",\n            \"extension\": null\n        },\n        \"alternate_phone\": null,\n        \"relation_to_child\": \"Mother\",\n        \"child_relation\": {\n            \"id\": 22,\n            \"values\": {\n                \"value\": \"Mother\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/types/families/relationships/22\",\n                    \"rel\": \"child_relation\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"center_id\": 27,\n        \"external_system_id\": \"\",\n        \"status\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"New Family\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/statuses/1\",\n                    \"rel\": \"status\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"status_details\": {\n            \"lost_opportunity_reason\": null,\n            \"lost_opportunity_comment\": null,\n            \"rejected_reason\": null,\n            \"rejected_comment\": null\n        },\n        \"integrations\": [],\n        \"family_rep\": null,\n        \"marketing_note\": \"\",\n        \"referred_by\": \"\",\n        \"prior_likes\": \"\",\n        \"prior_dislikes\": \"\",\n        \"custom_type_1\": null,\n        \"custom_type_2\": null,\n        \"custom_type_3\": null,\n        \"custom_type_4\": null\n    },\n    \"guardians\": [\n        {\n            \"id\": 2618,\n            \"name\": \"Georgina Alabama\",\n            \"first_name\": \"Georgina\",\n            \"last_name\": \"Alabama\",\n            \"title\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": null,\n            \"added_date\": \"2020-04-06T15:07:14+00:00\",\n            \"email\": \"sdiprisco@childcarecrm.com\",\n            \"alternate_email\": \"\",\n            \"address\": {\n                \"address1\": \"\",\n                \"address2\": \"\",\n                \"address3\": \"\",\n                \"address4\": \"\",\n                \"locality\": \"\",\n                \"region\": \"n/a\",\n                \"postcode\": \"\",\n                \"country_code\": \"\",\n                \"longitude\": \"\",\n                \"latitude\": \"\"\n            },\n            \"primary_phone\": {\n                \"type\": {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Cell\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/phone/19\",\n                            \"rel\": \"phone_type\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"country_code\": null,\n                \"number\": \"(817) 555-8839\",\n                \"number_e164\": \"+18175558839\",\n                \"extension\": null\n            },\n            \"alternate_phone\": null,\n            \"relation_to_child\": \"Mother\",\n            \"child_relation\": {\n                \"id\": 22,\n                \"values\": {\n                    \"value\": \"Mother\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/families/relationships/22\",\n                        \"rel\": \"child_relation\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"center_id\": 27,\n            \"external_system_id\": \"\",\n            \"status\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"New Family\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/1\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null\n            },\n            \"integrations\": [],\n            \"family_rep\": null,\n            \"marketing_note\": \"\",\n            \"referred_by\": \"\",\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\"\n        }\n    ],\n    \"good_standing\": false,\n    \"children\": [\n        {\n            \"id\": 879,\n            \"status\": {\n                \"id\": 3,\n                \"values\": {\n                    \"name\": \"Tour Completed\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/3\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"enrolled_date\": null,\n                \"enrolled_reason\": null,\n                \"enrolled_comment\": null,\n                \"expected_start_date\": \"2020-04-30\",\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null,\n                \"temp_leave_date\": null,\n                \"temp_leave_reason\": null,\n                \"temp_leave_comment\": null,\n                \"wait_list_date\": null,\n                \"wait_list_type\": null,\n                \"wait_list_priority\": null,\n                \"wait_list_reason\": null,\n                \"wait_list_comment\": null,\n                \"wait_list_fee\": null,\n                \"is_wait_list_fee_paid\": false,\n                \"wait_list_fee_paid_date\": null,\n                \"withdrawn_date\": null,\n                \"withdrawn_reason\": null,\n                \"withdrawn_comment\": null,\n                \"temp_leave_comments\": null\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"name\": \"Dallas Alabama\",\n            \"first_name\": \"Dallas\",\n            \"last_name\": \"Alabama\",\n            \"preferred_name\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": \"2020-01-06\",\n            \"is_estimated_date_of_birth\": false,\n            \"added_date\": \"2020-08-14T15:07:14+00:00\",\n            \"system_date\": \"2020-08-14T15:07:14+00:00\",\n            \"comments\": \"\",\n            \"image\": null,\n            \"primary_language\": \"\",\n            \"secondary_language\": \"\",\n            \"immunizations_compliant\": false,\n            \"allergies\": \"\",\n            \"medical_conditions\": \"\",\n            \"dietary_requirements\": \"\",\n            \"emergency_contacts\": [\n                {\n                    \"id\": 2618,\n                    \"values\": {\n                        \"family_id\": 843,\n                        \"is_primary\": true,\n                        \"name\": \"Georgina Alabama\",\n                        \"status\": 1\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/843/guardians/2618\",\n                            \"rel\": \"guardian\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"address\": [],\n            \"enrollments\": [\n                {\n                    \"id\": 486,\n                    \"values\": {\n                        \"child_id\": 879\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/enrollments/486\",\n                            \"rel\": \"enrollment\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"integrations\": [],\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null,\n            \"good_standing\": false,\n            \"is_child_of_staff\": false,\n            \"current_situation\": null,\n            \"is_eligible_for_reenrollment\": false,\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"prior_situation_comment\": \"\",\n            \"reason_for_change\": null,\n            \"is_sibling_in_care\": false,\n            \"custom_values\": []\n        },\n        {\n            \"id\": 1005,\n            \"status\": {\n                \"id\": 11,\n                \"values\": {\n                    \"name\": \"Tour Scheduled\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/statuses/11\",\n                        \"rel\": \"status\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"status_details\": {\n                \"enrolled_date\": null,\n                \"enrolled_reason\": {\n                    \"id\": 328,\n                    \"values\": {\n                        \"value\": \"Unknown\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/reasons/enrolled/328\",\n                            \"rel\": \"enrolled_reason\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                \"enrolled_comment\": null,\n                \"expected_start_date\": \"2021-08-11\",\n                \"lost_opportunity_reason\": null,\n                \"lost_opportunity_comment\": null,\n                \"rejected_reason\": null,\n                \"rejected_comment\": null,\n                \"temp_leave_date\": null,\n                \"temp_leave_reason\": null,\n                \"temp_leave_comment\": null,\n                \"wait_list_date\": null,\n                \"wait_list_type\": null,\n                \"wait_list_priority\": null,\n                \"wait_list_reason\": null,\n                \"wait_list_comment\": null,\n                \"wait_list_fee\": null,\n                \"is_wait_list_fee_paid\": false,\n                \"wait_list_fee_paid_date\": null,\n                \"withdrawn_date\": null,\n                \"withdrawn_reason\": null,\n                \"withdrawn_comment\": null,\n                \"temp_leave_comments\": null\n            },\n            \"exported\": false,\n            \"exported_date\": null,\n            \"name\": \"Montgomary Alabama\",\n            \"first_name\": \"Montgomary\",\n            \"last_name\": \"Alabama\",\n            \"preferred_name\": \"\",\n            \"gender\": \"\",\n            \"date_of_birth\": \"2021-07-01\",\n            \"is_estimated_date_of_birth\": false,\n            \"added_date\": \"2021-07-14T17:04:28+00:00\",\n            \"system_date\": \"2021-07-14T17:04:28+00:00\",\n            \"comments\": \"\",\n            \"image\": null,\n            \"primary_language\": \"\",\n            \"secondary_language\": \"\",\n            \"immunizations_compliant\": false,\n            \"allergies\": \"\",\n            \"medical_conditions\": \"\",\n            \"dietary_requirements\": \"\",\n            \"emergency_contacts\": [\n                {\n                    \"id\": 2618,\n                    \"values\": {\n                        \"family_id\": 843,\n                        \"is_primary\": true,\n                        \"name\": \"Georgina Alabama\",\n                        \"status\": 1\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/843/guardians/2618\",\n                            \"rel\": \"guardian\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"address\": [],\n            \"enrollments\": [\n                {\n                    \"id\": 586,\n                    \"values\": {\n                        \"child_id\": 1005\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/enrollments/586\",\n                            \"rel\": \"enrollment\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 587,\n                    \"values\": {\n                        \"child_id\": 1005\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/enrollments/587\",\n                            \"rel\": \"enrollment\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"integrations\": [],\n            \"custom_type_1\": null,\n            \"custom_type_2\": null,\n            \"custom_type_3\": null,\n            \"custom_type_4\": null,\n            \"good_standing\": true,\n            \"is_child_of_staff\": false,\n            \"current_situation\": null,\n            \"is_eligible_for_reenrollment\": true,\n            \"prior_likes\": \"\",\n            \"prior_dislikes\": \"\",\n            \"prior_situation_comment\": \"\",\n            \"reason_for_change\": null,\n            \"is_sibling_in_care\": false,\n            \"custom_values\": []\n        }\n    ],\n    \"integrations\": [],\n    \"linked_families\": [\n        {\n            \"family\": {\n                \"id\": 803,\n                \"values\": {\n                    \"name\": \"Georgina Alabama\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/families/803\",\n                        \"rel\": \"family\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"lead\": {\n                \"id\": 2578,\n                \"values\": {\n                    \"family_id\": 803,\n                    \"is_primary\": true,\n                    \"name\": \"Georgina Alabama\",\n                    \"status\": 1\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/families/803/guardians/2578\",\n                        \"rel\": \"guardian\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"center\": {\n                \"id\": 1,\n                \"values\": {\n                    \"name\": \"ABC Learning of Euless\",\n                    \"code\": \"Euless\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/centers/1\",\n                        \"rel\": \"center\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"children\": [\n                {\n                    \"id\": 829,\n                    \"values\": {\n                        \"name\": \"Dallas Alabama\",\n                        \"status\": 4\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/803/children/829\",\n                            \"rel\": \"child\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 990,\n                    \"values\": {\n                        \"name\": \"Austin Alabama\",\n                        \"status\": 11\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/families/803/children/990\",\n                            \"rel\": \"child\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ]\n        }\n    ],\n    \"custom_values\": [\n        {\n            \"custom_value_group\": {\n                \"id\": 6,\n                \"values\": {\n                    \"value\": \"Allergies\",\n                    \"type\": 1,\n                    \"for_guardian\": true,\n                    \"for_child\": false\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/fields/custom/6\",\n                        \"rel\": \"custom-value-group\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"custom_values\": [\n                {\n                    \"id\": 18,\n                    \"values\": {\n                        \"value\": \"Hayfever\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/fields/custom/6/values/18\",\n                            \"rel\": \"custom-value\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                },\n                {\n                    \"id\": 19,\n                    \"values\": {\n                        \"value\": \"Peanut\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/fields/custom/6/values/19\",\n                            \"rel\": \"custom-value\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"custom_text_value\": null\n        },\n        {\n            \"custom_value_group\": {\n                \"id\": 3,\n                \"values\": {\n                    \"value\": \"Family Persona\",\n                    \"type\": 1,\n                    \"for_guardian\": true,\n                    \"for_child\": false\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/fields/custom/3\",\n                        \"rel\": \"custom-value-group\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            },\n            \"custom_values\": [\n                {\n                    \"id\": 6,\n                    \"values\": {\n                        \"value\": \"Christianity\"\n                    },\n                    \"links\": [\n                        {\n                            \"href\": \"/api/v3/types/fields/custom/3/values/6\",\n                            \"rel\": \"custom-value\",\n                            \"type\": \"GET\"\n                        }\n                    ]\n                }\n            ],\n            \"custom_text_value\": null\n        }\n    ],\n    \"facebook_user_id\": null,\n    \"custom_type_1\": null,\n    \"custom_type_2\": null,\n    \"custom_type_3\": null,\n    \"custom_type_4\": null,\n    \"enrollment_rep\": {\n        \"id\": 21032,\n        \"values\": {\n            \"first_name\": \"David\",\n            \"last_name\": \"Weiss\",\n            \"username\": \"David@crm\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/staff/21032\",\n                \"rel\": \"staff\",\n                \"type\": \"GET\"\n            }\n        ]\n    }\n}"}],"_postman_id":"2bad5c40-f5e0-4711-8946-1c367cede0f2"},{"name":"Update family","id":"9cd98a5e-18f6-4270-aa2a-a9d33fa53e26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"is_active\": true,\r\n    \"inquiry_type\": 140,\r\n    \"source_type\": 24,\r\n    \"marketing_campaign\": null,\r\n    \"do_not_call\": false,\r\n    \"primary_guardian\": {\r\n    \t\"id\": 2,\r\n        \"name\": \"test lead\",\r\n        \"first_name\": \"test\",\r\n        \"last_name\": \"lead\",\r\n        \"status\": 1,\r\n        \"title\": \"\",\r\n        \"gender\": \"\",\r\n        \"date_of_birth\": null,\r\n        \"email\": \"childcarecrmspam@gmail.com\",\r\n        \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n        \"address\": {\r\n            \"address1\": \"\",\r\n            \"address2\": \"\",\r\n            \"address3\": \"\",\r\n            \"address4\": \"\",\r\n            \"locality\": \"\",\r\n            \"region\": \"n\\/a\",\r\n            \"postcode\": \"\",\r\n            \"country_code\": \"\",\r\n            \"longitude\": null,\r\n            \"latitude\": null\r\n        },\r\n        \"primary_phone\": {\r\n            \"type\": \"Cell\",\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"alternate_phone\": {\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"center_id\": 1\r\n    },\r\n    \"guardians\": [\r\n        {\r\n            \"id\": 2,\r\n            \"name\": \"test lead\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"lead\",\r\n            \"title\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": null,\r\n            \"email\": \"childcarecrmspam@gmail.com\",\r\n            \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n            \"address\": {\r\n                \"address1\": \"\",\r\n                \"address2\": \"\",\r\n                \"address3\": \"\",\r\n                \"address4\": \"\",\r\n                \"locality\": \"\",\r\n                \"region\": \"n\\/a\",\r\n                \"postcode\": \"\",\r\n                \"country_code\": \"\",\r\n                \"longitude\": \"\",\r\n                \"latitude\": \"\"\r\n            },\r\n            \"primary_phone\": {\r\n                \"type\": \"Cell\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"alternate_phone\": {\r\n                \"type\": \"\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"center_id\": 1\r\n        }\r\n    ],\r\n    \"good_standing\": false,\r\n    \"children\": [\r\n        {\r\n            \"id\": 6,\r\n            \"name\": \"test child lead\",\r\n            \"first_name\": \"test child\",\r\n            \"last_name\": \"lead\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2011-12-27\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [\r\n                {\r\n                    \"id\": 2,\r\n                    \"links\": [\r\n                        {\r\n                            \"href\": \"\\/api\\/v3\\/families\\/2\\/guardians\\/2\",\r\n                            \"rel\": \"guardian\",\r\n                            \"type\": \"GET\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"address\": [],\r\n            \"enrollments\": []\r\n        },\r\n        {\r\n            \"id\": 7,\r\n            \"name\": \"test child\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"child\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2016-01-16\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [\r\n                {\r\n                    \"id\": 2,\r\n                    \"links\": [\r\n                        {\r\n                            \"href\": \"\\/api\\/v3\\/families\\/2\\/guardians\\/2\",\r\n                            \"rel\": \"guardian\",\r\n                            \"type\": \"GET\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"address\": []\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v3/families/2","urlObject":{"path":["api","v3","families","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cd98a5e-18f6-4270-aa2a-a9d33fa53e26"},{"name":"Update family with UTM data","id":"0ec5723c-f660-4f68-a86f-3de2590ab89c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"is_active\": true,\r\n    \"inquiry_type\": 140,\r\n    \"source_type\": 24,\r\n    \"marketing_campaign\": null,\r\n    \"do_not_call\": false,\r\n    \"primary_guardian\": {\r\n    \t\"id\": 2,\r\n        \"name\": \"test lead\",\r\n        \"first_name\": \"test\",\r\n        \"last_name\": \"lead\",\r\n        \"status\": 1,\r\n        \"title\": \"\",\r\n        \"gender\": \"\",\r\n        \"date_of_birth\": null,\r\n        \"email\": \"childcarecrmspam@gmail.com\",\r\n        \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n        \"address\": {\r\n            \"address1\": \"\",\r\n            \"address2\": \"\",\r\n            \"address3\": \"\",\r\n            \"address4\": \"\",\r\n            \"locality\": \"\",\r\n            \"region\": \"n\\/a\",\r\n            \"postcode\": \"\",\r\n            \"country_code\": \"\",\r\n            \"longitude\": null,\r\n            \"latitude\": null\r\n        },\r\n        \"primary_phone\": {\r\n            \"type\": \"Cell\",\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"alternate_phone\": {\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"center_id\": 1\r\n    },\r\n    \"guardians\": [\r\n        {\r\n            \"id\": 2,\r\n            \"name\": \"test lead\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"lead\",\r\n            \"title\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": null,\r\n            \"email\": \"childcarecrmspam@gmail.com\",\r\n            \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n            \"address\": {\r\n                \"address1\": \"\",\r\n                \"address2\": \"\",\r\n                \"address3\": \"\",\r\n                \"address4\": \"\",\r\n                \"locality\": \"\",\r\n                \"region\": \"n\\/a\",\r\n                \"postcode\": \"\",\r\n                \"country_code\": \"\",\r\n                \"longitude\": \"\",\r\n                \"latitude\": \"\"\r\n            },\r\n            \"primary_phone\": {\r\n                \"type\": \"Cell\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"alternate_phone\": {\r\n                \"type\": \"\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"center_id\": 1\r\n        }\r\n    ],\r\n    \"good_standing\": false,\r\n    \"children\": [\r\n        {\r\n            \"id\": 6,\r\n            \"name\": \"test child lead\",\r\n            \"first_name\": \"test child\",\r\n            \"last_name\": \"lead\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2011-12-27\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [\r\n                {\r\n                    \"id\": 2,\r\n                    \"links\": [\r\n                        {\r\n                            \"href\": \"\\/api\\/v3\\/families\\/2\\/guardians\\/2\",\r\n                            \"rel\": \"guardian\",\r\n                            \"type\": \"GET\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"address\": [],\r\n            \"enrollments\": []\r\n        },\r\n        {\r\n            \"id\": 7,\r\n            \"name\": \"test child\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"child\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2016-01-16\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [\r\n                {\r\n                    \"id\": 2,\r\n                    \"links\": [\r\n                        {\r\n                            \"href\": \"\\/api\\/v3\\/families\\/2\\/guardians\\/2\",\r\n                            \"rel\": \"guardian\",\r\n                            \"type\": \"GET\"\r\n                        }\r\n                    ]\r\n                }\r\n            ],\r\n            \"address\": []\r\n        }\r\n    ],\r\n    \"utm_source\": \"source\",\r\n    \"utm_medium\": \"medium name\",\r\n    \"utm_campaign\": \"campaign name\",\r\n    \"utm_term\": \"terms\",\r\n    \"utm_content\": \"content\",\r\n    \"gclid\": \"Google click id\",\r\n    \"fbclid\": \"Facebook click id\"\r\n}"},"url":"{{url}}/api/v3/families/2","description":"<p>If you would like to change / set the UTM data for an existing family, use the PUT method. Note: this will replace any existing UTM data for that family.</p>\n","urlObject":{"path":["api","v3","families","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ec5723c-f660-4f68-a86f-3de2590ab89c"},{"name":"Update family to have integration ids.","id":"e98ac89a-6f0f-4d6e-91e6-b4b265ea3d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"is_active\": true,\r\n    \"inquiry_type\": 140,\r\n    \"source_type\": 24,\r\n    \"marketing_campaign\": null,\r\n    \"do_not_call\": false,\r\n    \"integrations\": [\r\n    \t{\r\n\t    \t\"id\": 12345,\r\n\t    \t\"integration_partner_id\": 1\r\n    \t}\r\n    ],\r\n    \"primary_guardian\": {\r\n    \t\"id\": 2,\r\n        \"name\": \"test lead\",\r\n        \"first_name\": \"test\",\r\n        \"last_name\": \"lead\",\r\n        \"status\": 1,\r\n        \"title\": \"\",\r\n        \"gender\": \"\",\r\n        \"date_of_birth\": null,\r\n        \"email\": \"childcarecrmspam@gmail.com\",\r\n        \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n        \"address\": {\r\n            \"address1\": \"\",\r\n            \"address2\": \"\",\r\n            \"address3\": \"\",\r\n            \"address4\": \"\",\r\n            \"locality\": \"\",\r\n            \"region\": \"n\\/a\",\r\n            \"postcode\": \"\",\r\n            \"country_code\": \"\",\r\n            \"longitude\": null,\r\n            \"latitude\": null\r\n        },\r\n        \"primary_phone\": {\r\n            \"type\": \"Cell\",\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"alternate_phone\": {\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"center_id\": 1\r\n    },\r\n    \"guardians\": [\r\n        {\r\n            \"id\": 2,\r\n            \"name\": \"test lead\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"lead\",\r\n            \"title\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": null,\r\n            \"email\": \"childcarecrmspam@gmail.com\",\r\n            \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n            \"address\": {\r\n                \"address1\": \"\",\r\n                \"address2\": \"\",\r\n                \"address3\": \"\",\r\n                \"address4\": \"\",\r\n                \"locality\": \"\",\r\n                \"region\": \"n\\/a\",\r\n                \"postcode\": \"\",\r\n                \"country_code\": \"\",\r\n                \"longitude\": \"\",\r\n                \"latitude\": \"\"\r\n            },\r\n            \"primary_phone\": {\r\n                \"type\": \"Cell\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"alternate_phone\": {\r\n                \"type\": \"\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"center_id\": 1\r\n        }\r\n    ],\r\n    \"good_standing\": false,\r\n    \"children\": [\r\n        {\r\n            \"id\": 6,\r\n            \"name\": \"test child lead\",\r\n            \"first_name\": \"test child\",\r\n            \"last_name\": \"lead\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2011-12-27\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [],\r\n            \"address\": [],\r\n            \"enrollments\": []\r\n        },\r\n        {\r\n            \"id\": 7,\r\n            \"name\": \"test child\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"child\",\r\n            \"preferred_name\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": \"2016-01-16\",\r\n            \"image\": null,\r\n            \"primary_language\": \"\",\r\n            \"secondary_language\": \"\",\r\n            \"immunizations_compliant\": false,\r\n            \"allergies\": \"\",\r\n            \"medical_conditions\": \"\",\r\n            \"dietary_requirements\": \"\",\r\n            \"emergency_contacts\": [],\r\n            \"address\": []\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v3/families/2","description":"<p>This PUT allows you to add or replace external ids that identify this family. You can query by these external ids to pull records out by these ids thus:</p>\n<p>GET /api/v3/families?integration_partner_id=1&amp;integration_id=12345</p>\n<p>The \"integration_partner_id\" must be an existing, active integration for the location to which the family belongs. The active integrations are available via:</p>\n<p>GET /api/v3/integrations</p>\n","urlObject":{"path":["api","v3","families","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e98ac89a-6f0f-4d6e-91e6-b4b265ea3d23"},{"name":"Change child status via families","id":"6867ad14-9898-4c76-b81e-ca630ef7b0df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/javascript","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 2,\r\n    \"children\": [\r\n        {\r\n            \"id\": 107,\r\n            \"status\": 1,\r\n            \"first_name\": \"Child\",\r\n            \"last_name\": \"Status Change\",\r\n            \"date_of_birth\": \"2019-01-01\"\r\n        }\r\n    ]\r\n}"},"url":"{{url}}/api/v3/families/2","description":"<p>The status of a child in a family may be changed directly, unless it's a status that occurs after the child is registered. To change a status post-registration, use the \"/api/v3/enrollments\" endpoint instead.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6867ad14-9898-4c76-b81e-ca630ef7b0df"},{"name":"Update a family without children","id":"de40cc7c-668b-470b-b23a-0bb0e8f405e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 1043,\r\n    \"is_active\": true,\r\n    \"status\": 1,\r\n    \"exported\": false,\r\n    \"exported_date\": null,\r\n    \"inquiry_type\": 143,\r\n    \"source_type\": 25,\r\n    \"marketing_campaign\": 9,\r\n    \"primary_guardian\": {\r\n        \"id\": 745,\r\n        \"name\": \"test leads\",\r\n        \"first_name\": \"test\",\r\n        \"last_name\": \"leads\",\r\n        \"title\": \"\",\r\n        \"gender\": \"\",\r\n        \"date_of_birth\": null,\r\n        \"added_date\": \"2019-07-22T16:12:31+00:00\",\r\n        \"email\": \"childcarecrmspam@gmail.com\",\r\n        \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n        \"address\": {\r\n            \"address1\": \"\",\r\n            \"address2\": \"\",\r\n            \"address3\": \"\",\r\n            \"address4\": \"\",\r\n            \"locality\": \"\",\r\n            \"region\": \"n\\/a\",\r\n            \"postcode\": \"\",\r\n            \"country_code\": \"\",\r\n            \"longitude\": \"\",\r\n            \"latitude\": \"\"\r\n        },\r\n        \"primary_phone\": {\r\n            \"type\": \"Cell\",\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"alternate_phone\": {\r\n            \"type\": \"\",\r\n            \"country_code\": \"\",\r\n            \"number\": \"(555) 555-5555\",\r\n            \"extension\": \"\"\r\n        },\r\n        \"center_id\": 1\r\n    },\r\n    \"guardians\": [\r\n        {\r\n            \"id\": 745,\r\n            \"name\": \"test leads\",\r\n            \"first_name\": \"test\",\r\n            \"last_name\": \"leads\",\r\n            \"title\": \"\",\r\n            \"gender\": \"\",\r\n            \"date_of_birth\": null,\r\n            \"added_date\": \"2019-07-22T16:12:31+00:00\",\r\n            \"email\": \"childcarecrmspam@gmail.com\",\r\n            \"alternate_email\": \"childcarecrmspam@gmail.com\",\r\n            \"address\": {\r\n                \"address1\": \"\",\r\n                \"address2\": \"\",\r\n                \"address3\": \"\",\r\n                \"address4\": \"\",\r\n                \"locality\": \"\",\r\n                \"region\": \"n\\/a\",\r\n                \"postcode\": \"\",\r\n                \"country_code\": \"\",\r\n                \"longitude\": \"\",\r\n                \"latitude\": \"\"\r\n            },\r\n            \"primary_phone\": {\r\n                \"type\": \"Cell\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"alternate_phone\": {\r\n                \"type\": \"\",\r\n                \"country_code\": \"\",\r\n                \"number\": \"(555) 555-5555\",\r\n                \"extension\": \"\"\r\n            },\r\n            \"center_id\": 1\r\n        }\r\n    ],\r\n    \"good_standing\": false\r\n}"},"url":"{{url}}/api/v3/families/1043","urlObject":{"path":["api","v3","families","1043"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de40cc7c-668b-470b-b23a-0bb0e8f405e6"},{"name":"Add a family","id":"d9c1f899-4976-468a-98ae-26e71c055802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"is_active\":true,\n    \"source_type\": 25,\n    \"inquiry_type\": 143,\n    \"primary_guardian\":{\n        \"first_name\":\"Emory8\",\n        \"last_name\":\"Yost8\",\n        \"title\":\"\",\n        \"gender\":\"Male\",\n        \"date_of_birth\":null,\n        \"center_id\":1,\n        \"status\":1,\n        \"relation_to_child\": 22,\n        \"address\":{\n            \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n            \"address2\":\"71566 Beatty Ramp\",\n            \"address3\":\"18316 Abigail Cape Suite 236\",\n            \"address4\":\"132 Mertie Locks Apt. 856\",\n            \"locality\":\"New Mertie\",\n            \"region\":\"Wyoming\",\n            \"postcode\":\"36520-5061\",\n            \"country_code\":\"KH\",\n            \"latitude\":9.458088,\n            \"longitude\":-70.748273\n        },\n        \"email\":\"cummerata.kaia@yahoo.com\",\n        \"alternate_email\":\"alba.schowalter@gmail.com\",\n        \"primary_phone\":{\n            \"type\":19,\n            \"number\":\"(115) 831-3657\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"alternate_phone\":{\n            \"type\":20,\n            \"number\":\"(685) 496-7935\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"comments\": \"Add any comments here. 3000 characters limit.\"\n    },\n    \"guardians\": [],\n    \"children\":[\n        {\n            \"name\":\"Harrison Yost\",\n            \"preferred_name\":\"Harrison\",\n            \"first_name\":\"Harrison\",\n            \"last_name\":\"Yost\",\n            \"gender\":\"Male\",\n            \"status\": 1,\n            \"date_of_birth\":\"1955-07-17\",\n            \"is_estimated_date_of_birth\": false,\n            \"image\":\"ChildImage\",\n            \"primary_language\":\"fa\",\n            \"secondary_language\":\"hr\",\n            \"immunizations_compliant\":\"Aliquam vel est et iure.\",\n            \"allergies\":\"Ex quidem illo in.\",\n            \"medical_conditions\":\"Quam qui nam iste et.\",\n            \"dietary_requirements\":\"Non omnis incidunt id.\",\n            \"enrollments\": {},\n            \"emergency_contacts\":[\n                {\n                    \"name\":\"Emory Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(428) 271-9432\"\n                    },\n                    \"email\":\"mgibson@mann.org\",\n                    \"address\":{\n                        \"address1\":\"16379 Rosanna Camp\",\n                        \"address2\":\"505 Kyra Trail\",\n                        \"address3\":\"464 Odell Route Apt. 156\",\n                        \"address4\":\"710 Abernathy Highway\",\n                        \"locality\":\"58842 Josiane Meadows Apt. 552\",\n                        \"region\":\"Lenorefort\",\n                        \"postcode\":\"67291\",\n                        \"country_code\":\"SL\",\n                        \"latitude\":-8.325514,\n                        \"longitude\":11.199939\n                    }\n                },\n                {\n                    \"name\":\"Jazmyne Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(569) 252-9942\"\n                    },\n                    \"email\":\"raegan73@sporer.com\",\n                    \"address\":{\n                        \"address1\":\"19823 Deja Mall\",\n                        \"address2\":\"19113 Wuckert Rue\",\n                        \"address3\":\"61093 Mireille Meadow Suite 679\",\n                        \"address4\":\"46299 Daniel Fork\",\n                        \"locality\":\"1925 Noelia Wells\",\n                        \"region\":\"Gracielaview\",\n                        \"postcode\":\"22246\",\n                        \"country_code\":\"SS\",\n                        \"latitude\":-77.943505,\n                        \"longitude\":100.75784\n                    }\n                }\n            ],\n            \"address\":{\n                \"address1\":\"30544 Parker Mountains Suite 856\",\n                \"address2\":\"6797 Gutkowski Curve\",\n                \"address3\":\"212 McGlynn Terrace\",\n                \"address4\":\"44148 Price Circle\",\n                \"locality\":\"393 Steuber Parkway\",\n                \"region\":\"North Dulceburgh\",\n                \"postcode\":\"57374\",\n                \"country_code\":\"LV\",\n                \"latitude\":40.375859,\n                \"longitude\":36.633218\n            },\n            \"comments\": \"Add child-specific comments here. 3000 characters limit.\"\n        }\n    ],\n    \"good_standing\":false\n}"},"url":"{{url}}/api/v3/families?allow_duplicates=false","description":"<p>When creating a family, note that the phone \"type\" can be retrieved from the GET /api/v3/types/phone endpoint. We also accept string values like \"Cell\" or \"Home\", but these are less reliable because they must match a value in the system, also viewable through the /api/v3/types/phone endpoint.</p>\n<p>If you do not provide a \"status\" for the family, they will go into the system as pending and will need to be accepted / rejected by users.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Allows you to create duplicate families if set to true.</p>\n","type":"text/plain"},"key":"allow_duplicates","value":"false"}],"variable":[]}},"response":[],"_postman_id":"d9c1f899-4976-468a-98ae-26e71c055802"},{"name":"Add a family with UTM data","id":"f0f473cf-c8a7-49b6-8bcb-a59f18f1b0ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"is_active\":true,\n    \"source_type\": 25,\n    \"inquiry_type\": 143,\n    \"primary_guardian\":{\n        \"name\":\"Emory Yost28\",\n        \"first_name\":\"Emory8\",\n        \"last_name\":\"Yost8\",\n        \"title\":\"\",\n        \"gender\":\"Male\",\n        \"date_of_birth\":null,\n        \"center_id\":1,\n        \"status\":1,\n        \"address\":{\n            \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n            \"address2\":\"71566 Beatty Ramp\",\n            \"address3\":\"18316 Abigail Cape Suite 236\",\n            \"address4\":\"132 Mertie Locks Apt. 856\",\n            \"locality\":\"New Mertie\",\n            \"region\":\"Wyoming\",\n            \"postcode\":\"36520-5061\",\n            \"country_code\":\"KH\",\n            \"latitude\":9.458088,\n            \"longitude\":-70.748273\n        },\n        \"email\":\"cummerata.kaia@yahoo.com\",\n        \"alternate_email\":\"alba.schowalter@gmail.com\",\n        \"primary_phone\":{\n            \"type\":19,\n            \"number\":\"(115) 831-3657\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"alternate_phone\":{\n            \"type\":20,\n            \"number\":\"(685) 496-7935\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        }\n    },\n    \"guardians\": [],\n    \"children\":[\n        {\n            \"name\":\"Harrison Yost\",\n            \"preferred_name\":\"Harrison\",\n            \"first_name\":\"Harrison\",\n            \"last_name\":\"Yost\",\n            \"gender\":\"Male\",\n            \"status\": 1,\n            \"date_of_birth\":\"1955-07-17\",\n            \"is_estimated_date_of_birth\": false,\n            \"image\":\"ChildImage\",\n            \"primary_language\":\"fa\",\n            \"secondary_language\":\"hr\",\n            \"immunizations_compliant\":\"Aliquam vel est et iure.\",\n            \"allergies\":\"Ex quidem illo in.\",\n            \"medical_conditions\":\"Quam qui nam iste et.\",\n            \"dietary_requirements\":\"Non omnis incidunt id.\",\n            \"enrollments\": {},\n            \"emergency_contacts\":[\n                {\n                    \"name\":\"Emory Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(428) 271-9432\"\n                    },\n                    \"email\":\"mgibson@mann.org\",\n                    \"address\":{\n                        \"address1\":\"16379 Rosanna Camp\",\n                        \"address2\":\"505 Kyra Trail\",\n                        \"address3\":\"464 Odell Route Apt. 156\",\n                        \"address4\":\"710 Abernathy Highway\",\n                        \"locality\":\"58842 Josiane Meadows Apt. 552\",\n                        \"region\":\"Lenorefort\",\n                        \"postcode\":\"67291\",\n                        \"country_code\":\"SL\",\n                        \"latitude\":-8.325514,\n                        \"longitude\":11.199939\n                    }\n                },\n                {\n                    \"name\":\"Jazmyne Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(569) 252-9942\"\n                    },\n                    \"email\":\"raegan73@sporer.com\",\n                    \"address\":{\n                        \"address1\":\"19823 Deja Mall\",\n                        \"address2\":\"19113 Wuckert Rue\",\n                        \"address3\":\"61093 Mireille Meadow Suite 679\",\n                        \"address4\":\"46299 Daniel Fork\",\n                        \"locality\":\"1925 Noelia Wells\",\n                        \"region\":\"Gracielaview\",\n                        \"postcode\":\"22246\",\n                        \"country_code\":\"SS\",\n                        \"latitude\":-77.943505,\n                        \"longitude\":100.75784\n                    }\n                }\n            ],\n            \"address\":{\n                \"address1\":\"30544 Parker Mountains Suite 856\",\n                \"address2\":\"6797 Gutkowski Curve\",\n                \"address3\":\"212 McGlynn Terrace\",\n                \"address4\":\"44148 Price Circle\",\n                \"locality\":\"393 Steuber Parkway\",\n                \"region\":\"North Dulceburgh\",\n                \"postcode\":\"57374\",\n                \"country_code\":\"LV\",\n                \"latitude\":40.375859,\n                \"longitude\":36.633218\n            }\n        }\n    ],\n    \"good_standing\":false,\n    \"utm_source\": \"source\",\n    \"utm_medium\": \"medium name\",\n    \"utm_campaign\": \"campaign name\",\n    \"utm_term\": \"terms\",\n    \"utm_content\": \"content\",\n    \"gclid\": \"Google click id\",\n    \"fbclid\": \"Facebook click id\"\n}"},"url":"{{url}}/api/v3/families","description":"<p>We make it possible, when creating a family, to set the UTM data. This data will be available in reporting for our CRM+ customers. If a marketing campaign is also provided, the API will connect the submitted UTM data with the marketing campaign.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Allows you to create duplicate families if set to true.</p>\n","type":"text/plain"},"key":"allow_duplicates","value":"false"}],"variable":[]}},"response":[],"_postman_id":"f0f473cf-c8a7-49b6-8bcb-a59f18f1b0ac"},{"name":"Add a family with custom values","id":"77ef229d-f551-40fd-9c34-a6bfc057e869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"is_active\":true,\n    \"source_type\": 25,\n    \"inquiry_type\": 143,\n    \"custom_values\": [\n        {\n            \"custom_value_group\": 1,\n            \"custom_values\": [1]\n        },\n        {\n            \"custom_value_group\": 2,\n            \"custom_text_value\": \"a string can go here\"\n        }\n    ],\n    \"primary_guardian\":{\n        \"name\":\"Emory Yost28\",\n        \"first_name\":\"Emory8\",\n        \"last_name\":\"Yost8\",\n        \"title\":\"\",\n        \"gender\":\"Male\",\n        \"date_of_birth\":null,\n        \"center_id\":1,\n        \"status\":1,\n        \"address\":{\n            \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n            \"address2\":\"71566 Beatty Ramp\",\n            \"address3\":\"18316 Abigail Cape Suite 236\",\n            \"address4\":\"132 Mertie Locks Apt. 856\",\n            \"locality\":\"New Mertie\",\n            \"region\":\"Wyoming\",\n            \"postcode\":\"36520-5061\",\n            \"country_code\":\"KH\",\n            \"latitude\":9.458088,\n            \"longitude\":-70.748273\n        },\n        \"email\":\"cummerata.kaia@yahoo.com\",\n        \"alternate_email\":\"alba.schowalter@gmail.com\",\n        \"primary_phone\":{\n            \"type\":19,\n            \"number\":\"(115) 831-3657\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"alternate_phone\":{\n            \"type\":20,\n            \"number\":\"(685) 496-7935\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        }\n    },\n    \"guardians\": [],\n    \"children\":[\n        {\n            \"name\":\"Harrison Yost\",\n            \"preferred_name\":\"Harrison\",\n            \"first_name\":\"Harrison\",\n            \"last_name\":\"Yost\",\n            \"gender\":\"Male\",\n            \"status\": 1,\n            \"date_of_birth\":\"1955-07-17\",\n            \"is_estimated_date_of_birth\": false,\n            \"image\":\"ChildImage\",\n            \"primary_language\":\"fa\",\n            \"secondary_language\":\"hr\",\n            \"immunizations_compliant\":\"Aliquam vel est et iure.\",\n            \"allergies\":\"Ex quidem illo in.\",\n            \"medical_conditions\":\"Quam qui nam iste et.\",\n            \"dietary_requirements\":\"Non omnis incidunt id.\",\n            \"enrollments\": {},\n            \"emergency_contacts\":[\n                {\n                    \"name\":\"Emory Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(428) 271-9432\"\n                    },\n                    \"email\":\"mgibson@mann.org\",\n                    \"address\":{\n                        \"address1\":\"16379 Rosanna Camp\",\n                        \"address2\":\"505 Kyra Trail\",\n                        \"address3\":\"464 Odell Route Apt. 156\",\n                        \"address4\":\"710 Abernathy Highway\",\n                        \"locality\":\"58842 Josiane Meadows Apt. 552\",\n                        \"region\":\"Lenorefort\",\n                        \"postcode\":\"67291\",\n                        \"country_code\":\"SL\",\n                        \"latitude\":-8.325514,\n                        \"longitude\":11.199939\n                    }\n                },\n                {\n                    \"name\":\"Jazmyne Yost\",\n                    \"phone\":{\n                        \"type\":\"Cell\",\n                        \"number\":\"(569) 252-9942\"\n                    },\n                    \"email\":\"raegan73@sporer.com\",\n                    \"address\":{\n                        \"address1\":\"19823 Deja Mall\",\n                        \"address2\":\"19113 Wuckert Rue\",\n                        \"address3\":\"61093 Mireille Meadow Suite 679\",\n                        \"address4\":\"46299 Daniel Fork\",\n                        \"locality\":\"1925 Noelia Wells\",\n                        \"region\":\"Gracielaview\",\n                        \"postcode\":\"22246\",\n                        \"country_code\":\"SS\",\n                        \"latitude\":-77.943505,\n                        \"longitude\":100.75784\n                    }\n                }\n            ],\n            \"address\":{\n                \"address1\":\"30544 Parker Mountains Suite 856\",\n                \"address2\":\"6797 Gutkowski Curve\",\n                \"address3\":\"212 McGlynn Terrace\",\n                \"address4\":\"44148 Price Circle\",\n                \"locality\":\"393 Steuber Parkway\",\n                \"region\":\"North Dulceburgh\",\n                \"postcode\":\"57374\",\n                \"country_code\":\"LV\",\n                \"latitude\":40.375859,\n                \"longitude\":36.633218\n            }\n        }\n    ],\n    \"good_standing\":false\n}"},"url":"{{url}}/api/v3/families?allow_duplicates=false","description":"<p>If you are a CRM+ customer using the \"Custom Guardian Values\" or the \"Custom Child Values\" feature, you can set those when creating the family. The \"custom_values\" property requires an array of objects, one object per custom value.</p>\n<p>For available values, see: <a href=\"https://apidocs.childcarecrm.com/#e948d2ea-3827-438a-ae6e-f4c0987a1bac\">https://apidocs.childcarecrm.com/#e948d2ea-3827-438a-ae6e-f4c0987a1bac</a></p>\n<p>To update custom values that are text (as opposed to single or multi-select values), use the property \"custom_text_value\" instead of \"custom_values\".</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Allows you to create duplicate families if set to true.</p>\n","type":"text/plain"},"key":"allow_duplicates","value":"false"}],"variable":[]}},"response":[],"_postman_id":"77ef229d-f551-40fd-9c34-a6bfc057e869"},{"name":"Add a family without children","id":"4f0dd495-7736-4e59-a70c-171c2375b55f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"is_active\":true,\n    \"source_type\": 25,\n    \"inquiry_type\": 143,\n    \"marketing_campaign\": 9,\n    \"primary_guardian\":{\n        \"name\":\"Emory Yost25\",\n        \"first_name\":\"Emory5\",\n        \"last_name\":\"Yost5\",\n        \"title\":\"\",\n        \"gender\":\"Male\",\n        \"date_of_birth\":null,\n        \"center_id\":1,\n        \"status\":1,\n        \"added_date\": \"2019-01-03T15:51:37+00:00\",\n        \"address\":{\n            \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n            \"address2\":\"71566 Beatty Ramp\",\n            \"address3\":\"18316 Abigail Cape Suite 236\",\n            \"address4\":\"132 Mertie Locks Apt. 856\",\n            \"locality\":\"New Mertie\",\n            \"region\":\"Wyoming\",\n            \"postcode\":\"36520-5061\",\n            \"country_code\":\"KH\",\n            \"latitude\":9.458088,\n            \"longitude\":-70.748273\n        },\n        \"timezone\":\"America/Chicago\",\n        \"image\":\"TestImage\",\n        \"email\":\"cummerata.kaia@yahoo.com\",\n        \"alternate_email\":\"alba.schowalter@gmail.com\",\n        \"primary_phone\":{\n            \"type\":\"Cell\",\n            \"number\":\"(115) 831-3657\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"alternate_phone\":{\n            \"type\":\"Cell\",\n            \"number\":\"(685) 496-7935\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        }\n    },\n    \"guardians\":[\n        {\n            \"name\":\"Emory Yost\",\n            \"first_name\":\"Emory\",\n            \"last_name\":\"Yost\",\n            \"title\":\"Travel Agent\",\n            \"gender\":\"Male\",\n            \"date_of_birth\":\"1995-02-23\",\n            \"address\":{\n                \"address1\":\"526 Jo Vista\",\n                \"address2\":\"222 Ryder Valley Suite 274\",\n                \"address3\":\"626 Ryder Throughway\",\n                \"address4\":\"656 Klein Via Apt. 282\",\n                \"locality\":\"21203 Shields Camp Suite 708\",\n                \"region\":\"Gislasonfort\",\n                \"postcode\":\"51091\",\n                \"country_code\":\"LT\",\n                \"latitude\":58.995692,\n                \"longitude\":54.176892\n            },\n            \"timezone\":\"Asia/Macau\",\n            \"image\":\"TestImage\",\n            \"email\":\"jsenger@gmail.com\",\n            \"alternate_email\":\"velda27@altenwerth.com\",\n            \"primary_phone\":{\n                \"type\":\"Cell\",\n                \"number\":\"(502) 311-3996\"\n            },\n            \"alternate_phone\":{\n                \"type\":\"Work\",\n                \"number\":\"(437) 119-3418\"\n            }\n        },\n        {\n            \"name\":\"Jazmyne Yost\",\n            \"first_name\":\"Jazmyne\",\n            \"last_name\":\"Yost\",\n            \"title\":\"Stationary Engineer OR Boiler Operator\",\n            \"gender\":\"Female\",\n            \"date_of_birth\":\"1949-12-18\",\n            \"address\":{\n                \"address1\":\"127 Ledner Tunnel Apt. 170\",\n                \"address2\":\"71035 Orie Stravenue\",\n                \"address3\":\"488 Judson Fork Apt. 396\",\n                \"address4\":\"541 Buckridge Lights Suite 102\",\n                \"locality\":\"16352 Tromp Circle\",\n                \"region\":\"Port Jaylan\",\n                \"postcode\":\"66985\",\n                \"country_code\":\"YE\",\n                \"latitude\":-64.402717,\n                \"longitude\":-160.09624\n            },\n            \"timezone\":\"Africa/Bissau\",\n            \"image\":\"TestImage\",\n            \"email\":\"braxton.goodwin@white.com\",\n            \"alternate_email\":\"leland.orn@gusikowski.com\",\n            \"primary_phone\":{\n                \"type\":\"Cell\",\n                \"number\":\"(783) 649-8580\"\n            },\n            \"alternate_phone\":{\n                \"type\":\"Work\",\n                \"number\":\"(731) 509-2880\"\n            }\n        }\n    ],\n    \"good_standing\":false\n}"},"url":"{{url}}/api/v3/families","urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f0dd495-7736-4e59-a70c-171c2375b55f"},{"name":"Add a family with contacts, but no children","id":"cb65b6df-cc2b-4bd5-b721-d364f6fb7fe5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"is_active\":true,\n    \"source_type\": 25,\n    \"inquiry_type\": 143,\n    \"primary_guardian\":{\n        \"name\":\"Emory Yost26\",\n        \"first_name\":\"Emory6\",\n        \"last_name\":\"Yost5\",\n        \"title\":\"\",\n        \"gender\":\"Male\",\n        \"date_of_birth\":null,\n        \"center_id\":1,\n        \"status\":1,\n        \"added_date\": \"2019-01-03T15:51:37+00:00\",\n        \"address\":{\n            \"address1\":\"4443 Zulauf Canyon Apt. 663\",\n            \"address2\":\"71566 Beatty Ramp\",\n            \"address3\":\"18316 Abigail Cape Suite 236\",\n            \"address4\":\"132 Mertie Locks Apt. 856\",\n            \"locality\":\"New Mertie\",\n            \"region\":\"Wyoming\",\n            \"postcode\":\"36520-5061\",\n            \"country_code\":\"KH\",\n            \"latitude\":9.458088,\n            \"longitude\":-70.748273\n        },\n        \"timezone\":\"America/Chicago\",\n        \"image\":\"TestImage\",\n        \"email\":\"cummerata.kaia@yahoo.com\",\n        \"alternate_email\":\"alba.schowalter@gmail.com\",\n        \"primary_phone\":{\n            \"type\":\"Cell\",\n            \"number\":\"(115) 831-3657\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        },\n        \"alternate_phone\":{\n            \"type\":\"Cell\",\n            \"number\":\"(685) 496-7935\",\n            \"country_code\": \"\",\n            \"extension\": \"\"\n        }\n    },\n    \"guardians\":[\n        {\n            \"name\":\"Emory Yost\",\n            \"first_name\":\"Emory\",\n            \"last_name\":\"Yost\",\n            \"title\":\"Travel Agent\",\n            \"gender\":\"Male\",\n            \"date_of_birth\":\"1995-02-23\",\n            \"address\":{\n                \"address1\":\"526 Jo Vista\",\n                \"address2\":\"222 Ryder Valley Suite 274\",\n                \"address3\":\"626 Ryder Throughway\",\n                \"address4\":\"656 Klein Via Apt. 282\",\n                \"locality\":\"21203 Shields Camp Suite 708\",\n                \"region\":\"Gislasonfort\",\n                \"postcode\":\"51091\",\n                \"country_code\":\"LT\",\n                \"latitude\":58.995692,\n                \"longitude\":54.176892\n            },\n            \"timezone\":\"Asia/Macau\",\n            \"image\":\"TestImage\",\n            \"email\":\"jsenger@gmail.com\",\n            \"alternate_email\":\"velda27@altenwerth.com\",\n            \"primary_phone\":{\n                \"type\":\"Cell\",\n                \"number\":\"(502) 311-3996\"\n            },\n            \"alternate_phone\":{\n                \"type\":\"Work\",\n                \"number\":\"(437) 119-3418\"\n            }\n        },\n        {\n            \"name\":\"Jazmyne Yost\",\n            \"first_name\":\"Jazmyne\",\n            \"last_name\":\"Yost\",\n            \"title\":\"Stationary Engineer OR Boiler Operator\",\n            \"gender\":\"Female\",\n            \"date_of_birth\":\"1949-12-18\",\n            \"address\":{\n                \"address1\":\"127 Ledner Tunnel Apt. 170\",\n                \"address2\":\"71035 Orie Stravenue\",\n                \"address3\":\"488 Judson Fork Apt. 396\",\n                \"address4\":\"541 Buckridge Lights Suite 102\",\n                \"locality\":\"16352 Tromp Circle\",\n                \"region\":\"Port Jaylan\",\n                \"postcode\":\"66985\",\n                \"country_code\":\"YE\",\n                \"latitude\":-64.402717,\n                \"longitude\":-160.09624\n            },\n            \"timezone\":\"Africa/Bissau\",\n            \"image\":\"TestImage\",\n            \"email\":\"braxton.goodwin@white.com\",\n            \"alternate_email\":\"leland.orn@gusikowski.com\",\n            \"primary_phone\":{\n                \"type\":\"Cell\",\n                \"number\":\"(783) 649-8580\"\n            },\n            \"alternate_phone\":{\n                \"type\":\"Work\",\n                \"number\":\"(731) 509-2880\"\n            }\n        }\n    ],\n    \"good_standing\":false\n}"},"url":"{{url}}/api/v3/families","urlObject":{"path":["api","v3","families"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb65b6df-cc2b-4bd5-b721-d364f6fb7fe5"},{"name":"Delete a family","id":"afc20432-aefb-457c-aed2-4fc6644b8692","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{url}}/api/v3/families/1098","urlObject":{"path":["api","v3","families","1098"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"afc20432-aefb-457c-aed2-4fc6644b8692"}],"id":"d5a0ca62-4a65-4816-9906-7745846d6a01","description":"<p>In our CRM a Family has just one required element: a Primary Guardian (a.k.a. “Lead”).  Additionally, a Family may also have any of the following:  one or more Children, additional Guardians, and/or non-Guardian Contacts.</p>\n<p>Technically, in our CRM, “Lead” and “Primary Guardian” are synonymous; “Lead” is how the information appears in the CRM database, whereas “Primary Guardian” is the term commonly used within the childcare industry.</p>\n","event":[{"listen":"prerequest","script":{"id":"2b69343c-6781-4986-b82b-61ab0b6ac06d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c55e3f1b-44b1-4f67-8360-513947861978","type":"text/javascript","exec":[""]}}],"_postman_id":"d5a0ca62-4a65-4816-9906-7745846d6a01","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Centers","item":[{"name":"Classrooms","item":[{"name":"All classrooms for center","id":"20abe5e0-c158-4986-93bc-03722e06175a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/centers/1/classrooms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","classrooms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c5254985-c6c3-4a02-b27c-0fdc29149845","name":"All classrooms for center","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/centers/1/classrooms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 18 Aug 2021 23:29:54 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=cinjt3j7doafrc71102ohke91u; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Tue, 18-Aug-2020 23:29:54 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"6"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"ec62f7"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/ec62f7"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Wed, 18 Aug 2021 23:29:55 GMT"},{"key":"Content-Length","value":"3775"},{"key":"Keep-Alive","value":"timeout=5, max=99"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Brokerage Clerk\",\n        \"code\": \"fix-cl-1\",\n        \"capacity\": 2,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 0,\n        \"end_age\": 0,\n        \"comments\": \"\",\n        \"external_system_id\": \"77f01f14-4bc7-3395-9a9c-e6209e0f5705\",\n        \"mon_am_free\": 5,\n        \"mon_pm_free\": 1,\n        \"tue_am_free\": 1,\n        \"tue_pm_free\": 1,\n        \"wed_am_free\": 3,\n        \"wed_pm_free\": 1,\n        \"thur_am_free\": 5,\n        \"thur_pm_free\": 2,\n        \"fri_am_free\": 1,\n        \"fri_pm_free\": 2,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [\n            {\n                \"id\": 792,\n                \"values\": {\n                    \"value\": \"g1\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/classrooms/792\",\n                        \"rel\": \"classroom_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            }\n        ],\n        \"classroom_rates\": [],\n        \"rates\": null\n    },\n    {\n        \"id\": 3,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Board Of Directors\",\n        \"code\": \"fix-cl-2\",\n        \"capacity\": 22,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 0,\n        \"end_age\": 0,\n        \"comments\": \"\",\n        \"external_system_id\": \"procare-12\",\n        \"mon_am_free\": 1,\n        \"mon_pm_free\": 2,\n        \"tue_am_free\": 2,\n        \"tue_pm_free\": 2,\n        \"wed_am_free\": 0,\n        \"wed_pm_free\": 5,\n        \"thur_am_free\": 2,\n        \"thur_pm_free\": 5,\n        \"fri_am_free\": 3,\n        \"fri_pm_free\": 4,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [\n            {\n                \"id\": 793,\n                \"values\": {\n                    \"value\": \"g2\"\n                },\n                \"links\": [\n                    {\n                        \"href\": \"/api/v3/types/classrooms/793\",\n                        \"rel\": \"classroom_type\",\n                        \"type\": \"GET\"\n                    }\n                ]\n            }\n        ],\n        \"classroom_rates\": [],\n        \"rates\": null\n    },\n    {\n        \"id\": 34,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Quis et.\",\n        \"code\": \"\",\n        \"capacity\": 5,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 0,\n        \"end_age\": 1,\n        \"comments\": \"\",\n        \"external_system_id\": \"asdsad123\",\n        \"mon_am_free\": 0,\n        \"mon_pm_free\": 0,\n        \"tue_am_free\": 0,\n        \"tue_pm_free\": 0,\n        \"wed_am_free\": 0,\n        \"wed_pm_free\": 0,\n        \"thur_am_free\": 0,\n        \"thur_pm_free\": 0,\n        \"fri_am_free\": 0,\n        \"fri_pm_free\": 0,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [],\n        \"classroom_rates\": [],\n        \"rates\": null\n    },\n    {\n        \"id\": 35,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Quas.\",\n        \"code\": \"\",\n        \"capacity\": 30,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 2,\n        \"end_age\": 3,\n        \"comments\": \"\",\n        \"external_system_id\": \"asdsad123\",\n        \"mon_am_free\": 0,\n        \"mon_pm_free\": 0,\n        \"tue_am_free\": 0,\n        \"tue_pm_free\": 0,\n        \"wed_am_free\": 0,\n        \"wed_pm_free\": 0,\n        \"thur_am_free\": 0,\n        \"thur_pm_free\": 0,\n        \"fri_am_free\": 0,\n        \"fri_pm_free\": 0,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [],\n        \"classroom_rates\": [],\n        \"rates\": null\n    },\n    {\n        \"id\": 36,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Quis et.\",\n        \"code\": \"\",\n        \"capacity\": 5,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 0,\n        \"end_age\": 1,\n        \"comments\": \"\",\n        \"external_system_id\": \"asdsad123\",\n        \"mon_am_free\": 0,\n        \"mon_pm_free\": 0,\n        \"tue_am_free\": 0,\n        \"tue_pm_free\": 0,\n        \"wed_am_free\": 0,\n        \"wed_pm_free\": 0,\n        \"thur_am_free\": 0,\n        \"thur_pm_free\": 0,\n        \"fri_am_free\": 0,\n        \"fri_pm_free\": 0,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [],\n        \"classroom_rates\": [],\n        \"rates\": null\n    },\n    {\n        \"id\": 37,\n        \"center\": {\n            \"id\": 1,\n            \"values\": {\n                \"name\": \"Prof. Adolf Christiansen\"\n            },\n            \"links\": [\n                {\n                    \"href\": \"/api/v3/centers/1\",\n                    \"rel\": \"center\",\n                    \"type\": \"GET\"\n                }\n            ]\n        },\n        \"name\": \"Quas.\",\n        \"code\": \"\",\n        \"capacity\": 30,\n        \"current_free\": 0,\n        \"next_free_date\": null,\n        \"begin_age\": 2,\n        \"end_age\": 3,\n        \"comments\": \"\",\n        \"external_system_id\": \"asdsad123\",\n        \"mon_am_free\": 0,\n        \"mon_pm_free\": 0,\n        \"tue_am_free\": 0,\n        \"tue_pm_free\": 0,\n        \"wed_am_free\": 0,\n        \"wed_pm_free\": 0,\n        \"thur_am_free\": 0,\n        \"thur_pm_free\": 0,\n        \"fri_am_free\": 0,\n        \"fri_pm_free\": 0,\n        \"sat_am_free\": 0,\n        \"sat_pm_free\": 0,\n        \"sun_am_free\": 0,\n        \"sun_pm_free\": 0,\n        \"classroom_types\": [],\n        \"classroom_rates\": [],\n        \"rates\": null\n    }\n]"}],"_postman_id":"20abe5e0-c158-4986-93bc-03722e06175a"},{"name":"Classroom by id","id":"1a2a99b7-a14e-45c1-9662-e465be9f0232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/centers/2/classrooms/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","2","classrooms","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a2a99b7-a14e-45c1-9662-e465be9f0232"},{"name":"Create a classroom","id":"fbf56b8a-b9e3-471e-adaa-ac53e24d6150","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\r\n    {\r\n        \"name\": \"Zenith\",\r\n        \"code\": \"ZL1\",\r\n        \"capacity\": 1,\r\n        \"current_free\": 1,\r\n        \"next_free_date\": null,\r\n        \"begin_age\": 0,\r\n        \"end_age\": 0,\r\n        \"comments\": \"\",\r\n        \"external_system_id\": null,\r\n        \"availability\": {\r\n                    \"monday\": {\r\n                        \"am\": 0,\r\n                        \"pm\": 0\r\n                    },\r\n                    \"tuesday\": {\r\n                        \"am\": 0,\r\n                        \"pm\": 0\r\n                    },\r\n                    \"wednesday\": {\r\n                        \"am\": 0,\r\n                        \"pm\": 0\r\n                    },\r\n                    \"thursday\": {\r\n                        \"am\": 0,\r\n                        \"pm\": 0\r\n                    },\r\n                    \"friday\": {\r\n                        \"am\": 0,\r\n                        \"pm\": 0\r\n                    }\r\n                },\r\n        \"classroom_types\": [],\r\n\t\t\"rates\": {\r\n\t\t\t\"Full Time\": 185.00\r\n\t\t}\r\n    }\r\n]"},"url":"{{url}}/api/v3/centers/1/classrooms","description":"<p>Add one or more classrooms</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","classrooms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fbf56b8a-b9e3-471e-adaa-ac53e24d6150"},{"name":"Update a classroom","id":"1c4f06ce-0182-494c-9a93-d87c2ac1a9f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"    {\r\n        \"name\": \"Zenith\",\r\n        \"code\": \"ZL1\",\r\n        \"capacity\": 1,\r\n        \"current_free\": 1,\r\n        \"next_free_date\": null,\r\n        \"begin_age\": 0,\r\n        \"end_age\": 0,\r\n        \"comments\": \"\",\r\n        \"external_system_id\": null,\r\n        \"mon_am_free\": 2,\r\n        \"mon_pm_free\": 0,\r\n        \"tue_am_free\": 2,\r\n        \"tue_pm_free\": 0,\r\n        \"wed_am_free\": 2,\r\n        \"wed_pm_free\": 0,\r\n        \"thur_am_free\": 2,\r\n        \"thur_pm_free\": 0,\r\n        \"fri_am_free\": 2,\r\n        \"fri_pm_free\": 0,\r\n        \"classroom_types\": []\r\n    }"},"url":"{{url}}/api/v3/centers/1/classrooms/19","description":"<p>Update one classroom.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","classrooms","19"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c4f06ce-0182-494c-9a93-d87c2ac1a9f7"}],"id":"9ddc3946-621f-4068-8af6-f0d1bc350cf8","description":"<p>Each center has classrooms, which a child may be in. To update a child's classrooms, use the \"Enrollments\" object.</p>\n","event":[{"listen":"prerequest","script":{"id":"d0a3e39b-bc88-4d8a-9e65-f46ad1c8672f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"401ad3ef-99e6-4b39-9fb6-36cb500c7bf4","type":"text/javascript","exec":[""]}}],"_postman_id":"9ddc3946-621f-4068-8af6-f0d1bc350cf8","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Parent-Scheduled Tours","item":[{"name":"Update PST settings","id":"74cb89b0-67e5-4d0d-b7ab-4125bd000e25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"is_enabled\": true,\n    \"start_time\": \"10:30\",\n    \"end_time\": \"12:30\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/5/pst-settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","5","pst-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"74cb89b0-67e5-4d0d-b7ab-4125bd000e25"},{"name":"Get tour availability","id":"c52a70e2-4430-4bd0-b58e-f7e59c838dd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/5/tour-availability?start_datetime=2021-01-28 00:00:00&end_datetime=2021-01-29 23:59:59","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","5","tour-availability"],"host":["{{url}}"],"query":[{"key":"start_datetime","value":"2021-01-28 00:00:00"},{"key":"end_datetime","value":"2021-01-29 23:59:59"}],"variable":[]}},"response":[{"id":"33169a9a-9b2f-470a-8dff-de26328ddbc5","name":"Get tour availability","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/api/v3/centers/5/tour-availability?start_datetime=2021-02-28 00:00:00&end_datetime=2021-03-01 23:59:59","host":["{{url}}"],"path":["api","v3","centers","5","tour-availability"],"query":[{"key":"start_datetime","value":"2021-02-28 00:00:00"},{"key":"end_datetime","value":"2021-03-01 23:59:59"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 25 Feb 2021 21:02:29 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=acde90709781054b3ebbda8492dd34c2; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Wed, 26-Feb-2020 21:02:30 GMT; Max-Age=0; path=/; httponly"},{"key":"X-Total-Count","value":"6"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"f1937a"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/f1937a"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Thu, 25 Feb 2021 21:02:31 GMT"},{"key":"Content-Length","value":"733"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"start_datetime\": \"2021-03-01T09:30:00+11:00\",\n        \"end_datetime\": \"2021-03-01T10:00:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    },\n    {\n        \"start_datetime\": \"2021-03-01T10:00:00+11:00\",\n        \"end_datetime\": \"2021-03-01T10:30:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    },\n    {\n        \"start_datetime\": \"2021-03-01T10:30:00+11:00\",\n        \"end_datetime\": \"2021-03-01T11:00:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    },\n    {\n        \"start_datetime\": \"2021-03-01T14:30:00+11:00\",\n        \"end_datetime\": \"2021-03-01T15:00:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    },\n    {\n        \"start_datetime\": \"2021-03-01T15:00:00+11:00\",\n        \"end_datetime\": \"2021-03-01T15:30:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    },\n    {\n        \"start_datetime\": \"2021-03-01T15:30:00+11:00\",\n        \"end_datetime\": \"2021-03-01T16:00:00+11:00\",\n        \"is_available\": true,\n        \"length\": 30\n    }\n]"}],"_postman_id":"c52a70e2-4430-4bd0-b58e-f7e59c838dd4"},{"name":"Get PST settings","id":"e0b75c74-a9c2-485b-9b69-0b5cf081cc60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/5/pst-settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","5","pst-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0b75c74-a9c2-485b-9b69-0b5cf081cc60"}],"id":"6ed7a729-aedf-4d50-96ff-21c9702346fd","description":"<p>These endpoints provide some limited functionality around parent-scheduled tours (known as \"Self-Scheduled Tours\" in the UI). You can get current tour availability and set some basic configuration parameters for each center's availability.</p>\n","event":[{"listen":"prerequest","script":{"id":"b05d7746-d64b-47a3-b653-c826a2000317","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f3506f04-2bd2-4918-b969-d1f6777521fc","type":"text/javascript","exec":[""]}}],"_postman_id":"6ed7a729-aedf-4d50-96ff-21c9702346fd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"All centers","id":"7311c6a4-91a2-4c8f-82d2-2e3b30cc279a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/centers?include_inactive=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Set this flag to \"true\" to include inactive centers in the results.</p>\n","type":"text/plain"},"key":"include_inactive","value":"true"}],"variable":[]}},"response":[],"_postman_id":"7311c6a4-91a2-4c8f-82d2-2e3b30cc279a"},{"name":"Center by id","event":[{"listen":"test","script":{"id":"d06e1611-6b2e-4d78-8b77-7939943712b1","exec":["\r",""],"type":"text/javascript"}}],"id":"e57b4626-7892-492d-9b4d-e3eed6524720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/centers/19","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","19"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e57b4626-7892-492d-9b4d-e3eed6524720"},{"name":"Add a center","id":"c91eea5d-5903-4af2-9b6c-fe11f2bbb21f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Bill Trades\",\n\t\"parent_organization_id\":1,\n\t\"contact\": {\n\t\t\"phone\": {\n\t\t\t\"number\":\"(144) 861-2868\",\n\t        \"country_code\":9,\n            \"extension\":7680\n\t\t}\n\t},\n\t\"email\":\"adurbhaka@childcarecrm.com\",\n\t\"address\": {\n        \"address1\":\"8407\",\n        \"address2\":\"Corner\",\n        \"address3\":\"651 Eliane Fall Suite 840\",\n        \"address4\":\"5726 Hoppe Radial\",\"locality\":\"North Cheyanne\",\n        \"region\":\"Iowa\",\"postcode\":\"79869\",\"country_code\":\"USA\"\n    },\n    \"tax_id\":5420,\n    \"timezone\":\"America/Chicago\",\"url\":\"http://stroman.com/soluta-aut-sed-unde-quos-corrupti-ea-quis-dolorem\",\n    \"open_saturday\":true,\n    \"open_sunday\":false\n\t\n}"},"url":"{{url}}/api/v3/centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c91eea5d-5903-4af2-9b6c-fe11f2bbb21f"},{"name":"Update a center","id":"18cba9bc-9a8d-455b-841e-8730d03657d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\":\"Bill Trades\",\n\t\"parent_organization_id\":1,\n\t\"contact\": {\n\t\t\"phone\": {\n\t\t\t\"number\":\"(144) 861-2868\",\n\t        \"country_code\":9,\n            \"extension\":7680\n\t\t}\n\t},\n\t\"email\":\"adurbhaka@childcarecrm.com\",\n\t\"address\": {\n        \"address1\":\"8407\",\n        \"address2\":\"Corner\",\n        \"address3\":\"651 Eliane Fall Suite 840\",\n        \"address4\":\"5726 Hoppe Radial\",\"locality\":\"North Cheyanne\",\n        \"region\":\"Iowa\",\"postcode\":\"79869\",\"country_code\":\"USA\"\n    },\n    \"tax_id\":5420,\n    \"timezone\":\"America/Chicago\",\"url\":\"http://stroman.com/soluta-aut-sed-unde-quos-corrupti-ea-quis-dolorem\",\n    \"open_saturday\":true,\n    \"open_sunday\":false,\n\t\"social_media\": {\n        \"facebook\": \"facebook\",\n        \"instagram\": \"instagram\",\n        \"linkedin\": \"linkedin\",\n        \"pinterest\": \"pinterest\",\n        \"twitter\": \"twitter\",\n        \"yelp\": \"yelp\",\n        \"youtube\": \"youtube\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"18cba9bc-9a8d-455b-841e-8730d03657d6"}],"id":"1662627a-3d0d-409b-b587-74104b7b224c","description":"<p>A specific location where a company conducts business.  Some companies have multiple Centers, some have only one.  Synonymous with “Location”.</p>\n","event":[{"listen":"prerequest","script":{"id":"93931cd0-743b-443e-aeac-dc648ae99a29","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c1852740-be52-457d-ae41-5ca112a74aa5","type":"text/javascript","exec":[""]}}],"_postman_id":"1662627a-3d0d-409b-b587-74104b7b224c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Types","item":[{"name":"Custom Values","item":[{"name":"Custom fields","id":"22a88d97-bdad-40c1-878b-f3e88482e679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/fields/custom","description":"<p>Retrieve a list of all available custom fields. Only available in CRM+.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","fields","custom"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"22a88d97-bdad-40c1-878b-f3e88482e679"},{"name":"Custom values","id":"71647a06-4db8-42d4-a803-2e97643c62bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/fields/custom/6/values","description":"<p>Retrieve a list of possible values for a custom field.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","fields","custom","6","values"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"df68761d-bcae-4c27-a60a-530bacb08f72","name":"Custom values","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/fields/custom/6/values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 01 Dec 2021 22:51:40 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=h46nkmchqd6rch81q448hsh3fn; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Tue, 01-Dec-2020 22:51:42 GMT; Max-Age=0; path=/; httponly"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"79fbfe"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/79fbfe"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"X-Previous-Debug-Token","value":"de6145"},{"key":"Expires","value":"Wed, 01 Dec 2021 22:51:43 GMT"},{"key":"Content-Length","value":"350"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 19,\n        \"value\": \"Peanut\",\n        \"order\": 0,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"custom_value_group_id\": 6,\n        \"is_used\": true\n    },\n    {\n        \"id\": 18,\n        \"value\": \"Hayfever\",\n        \"order\": 1,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"custom_value_group_id\": 6,\n        \"is_used\": true\n    },\n    {\n        \"id\": 17,\n        \"value\": \"Bees\",\n        \"order\": 2,\n        \"is_default\": false,\n        \"is_editable\": true,\n        \"custom_value_group_id\": 6,\n        \"is_used\": false\n    }\n]"}],"_postman_id":"71647a06-4db8-42d4-a803-2e97643c62bc"}],"id":"e948d2ea-3827-438a-ae6e-f4c0987a1bac","description":"<p>Custom values are a CRM+ feature that allow you to store an unlimited number of fields and values on every family and child in your system. Use these to customize the data you store.</p>\n","event":[{"listen":"prerequest","script":{"id":"28e88312-301e-4e5a-add5-13b2b6f376f0","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"38d447c6-18cf-4502-9ddc-fe59321f96c6","type":"text/javascript","exec":[""]}}],"_postman_id":"e948d2ea-3827-438a-ae6e-f4c0987a1bac","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Task types","id":"0328a238-0420-4577-a31b-ce91d871cd27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/tasks","urlObject":{"path":["api","v3","types","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0328a238-0420-4577-a31b-ce91d871cd27"},{"name":"Task groups","id":"0691860b-ffd1-492a-b395-885a9aa72526","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/tasks/groups","description":"<p>Tasks are all categorized into groups. The groups available are \"Phone\", \"Email\", \"Text\", \"Tour\", \"Meeting\", and \"Other\".</p>\n","urlObject":{"path":["api","v3","types","tasks","groups"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0691860b-ffd1-492a-b395-885a9aa72526"},{"name":"Family inquiry types","id":"6a82149f-87fe-439d-9bdd-32c4a0fc122e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/types/family/inquiry","description":"<p>A customizable list of ways that families may have contacted a center.</p>\n","urlObject":{"path":["api","v3","types","family","inquiry"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a82149f-87fe-439d-9bdd-32c4a0fc122e"},{"name":"Family origins","id":"0df130f2-9603-4a0d-bb27-72a36ce4e93f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/family/origins","description":"<p>A non-customizable list of origins for a family. May be things like \"API\", \"Web\", \"User\", etc. These values are set by the ChildCareCRM system when a new family is added.</p>\n","urlObject":{"path":["api","v3","types","family","origins"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0df130f2-9603-4a0d-bb27-72a36ce4e93f"},{"name":"Family sources","id":"0c2b8170-a612-455a-a89c-0a880f5fd65b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/family/source","urlObject":{"path":["api","v3","types","family","source"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c2b8170-a612-455a-a89c-0a880f5fd65b"},{"name":"Classroom types","id":"68a0d59b-a606-4f62-a529-671219d9d4f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/classrooms","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","classrooms"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68a0d59b-a606-4f62-a529-671219d9d4f9"},{"name":"Phone types","id":"3062da93-d0cb-4f66-8770-a2b616d1a1cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/phone","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","phone"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3062da93-d0cb-4f66-8770-a2b616d1a1cc"},{"name":"Task Results / Events","id":"7d3237bf-b013-4348-bbc6-902464d51795","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/tasks/results","description":"<p>Task results and event types are the same thing. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","tasks","results"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7d3237bf-b013-4348-bbc6-902464d51795"},{"name":"Reasons child enrolled","id":"f3c362b2-ec1f-4bab-a140-d72b1925453a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/reasons/enrolled","description":"<p>When a child is marked as enrolled, a reason for the enrollment is required.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","reasons","enrolled"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3c362b2-ec1f-4bab-a140-d72b1925453a"},{"name":"Reasons child withdrew","id":"0e60befe-8e3a-4838-a97d-9cb405af1c1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/reasons/withdrawn","description":"<p>When a child is marked as withdrawn, a reason for the withdrawal is required.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","reasons","withdrawn"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e60befe-8e3a-4838-a97d-9cb405af1c1b"},{"name":"Reason enrolled by id","id":"39fc6e8e-1dbe-48fb-a1cc-43286996e849","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/reasons/enrolled/328","urlObject":{"path":["api","v3","types","reasons","enrolled","328"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"39fc6e8e-1dbe-48fb-a1cc-43286996e849"},{"name":"Reason withdrawn by id","id":"7cd5cce8-9fac-43eb-8a1d-f13a23ed0541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/types/reasons/withdrawn/328","urlObject":{"path":["api","v3","types","reasons","withdrawn","328"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7cd5cce8-9fac-43eb-8a1d-f13a23ed0541"},{"name":"Marketing campaign types","id":"bef8e124-060c-4917-90a6-ab12c96ec517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/marketing-campaigns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","marketing-campaigns"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bef8e124-060c-4917-90a6-ab12c96ec517"},{"name":"Marketing campaign type by id","id":"c16bdf0d-ba37-4f71-ab2d-c40f37811ff9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v3/types/marketing-campaigns/17","urlObject":{"path":["api","v3","types","marketing-campaigns","17"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c16bdf0d-ba37-4f71-ab2d-c40f37811ff9"},{"name":"Family custom types","id":"04908478-8351-4dad-9cd7-cbfcc096082c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/types/family/custom-1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","family","custom-1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04908478-8351-4dad-9cd7-cbfcc096082c"},{"name":"Child custom types","id":"913d528a-77bd-4819-a766-049d41294a2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/types/child/custom-1","urlObject":{"path":["api","v3","types","child","custom-1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"913d528a-77bd-4819-a766-049d41294a2a"},{"name":"Updates filter types","id":"b367d918-d1bc-43e0-87b2-999040087fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/updates/filters","description":"<p>A list of the filters available for the /updates endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","updates","filters"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"52503e1a-28b1-40d1-a7b9-79ccab7a542f","name":"Updates filter types","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/updates/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 Jul 2020 13:18:08 GMT"},{"key":"Server","value":"Apache/2.4.29 (Ubuntu)"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"Expires","value":"Mon, 13 Jul 2020 13:18:09 GMT"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Sun, 14-Jul-2019 13:18:08 GMT; Max-Age=0; path=/; httponly"},{"key":"Content-Length","value":"145"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"is_default\": false,\n        \"value\": \"Primary Guardian\"\n    },\n    {\n        \"id\": 2,\n        \"is_default\": false,\n        \"value\": \"Child\"\n    },\n    {\n        \"id\": 3,\n        \"is_default\": false,\n        \"value\": \"Status\"\n    }\n]"}],"_postman_id":"b367d918-d1bc-43e0-87b2-999040087fa8"},{"name":"Relationships to child","id":"37b3479a-c870-48ef-9f62-499e769cef28","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/families/relationships","description":"<p>Find the ids for the different relationships a guardian or contact can have to a child.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","families","relationships"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"37b3479a-c870-48ef-9f62-499e769cef28"}],"id":"63ff490d-5384-4a59-97c5-e0d1961a5eb0","description":"<p>ChildCareCRM is highly customizable. As a result, there are many entities in the API that have different values that may vary, but have unique identifiers. <strong>Types</strong> allows you to determine what those ids are for queries on other endpoints.</p>\n","event":[{"listen":"prerequest","script":{"id":"3737b45a-96f7-4cb8-8862-2b85984e72fb","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a0ba179b-9c1b-4646-8185-f8709f730b37","type":"text/javascript","exec":[""]}}],"_postman_id":"63ff490d-5384-4a59-97c5-e0d1961a5eb0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Tasks","item":[{"name":"Get all tasks","id":"328217c9-ff87-4a96-9623-8070d34b5afd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/tasks?group=3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>A boolean that allows you to filter tasks to only those assigned to members of the enrollment team (if enabled)</p>\n","type":"text/plain"},"key":"only_enrollment_team","value":"false"},{"disabled":true,"description":{"content":"<p>Include only tasks due before this date. Expects an ISO-8601 date.</p>\n","type":"text/plain"},"key":"due_before","value":"2020-01-31T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Include only tasks due after this date. Expect an ISO-8601 date.</p>\n","type":"text/plain"},"key":"due_after","value":"2020-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Include only tasks add after the given date.</p>\n","type":"text/plain"},"key":"created_after","value":"2020-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Include only tasks assigned to staff member with id 1.</p>\n","type":"text/plain"},"key":"assigned_to","value":"1"},{"disabled":true,"description":{"content":"<p>Include only tasks associated with center id 1.</p>\n","type":"text/plain"},"key":"center_ids[]","value":"1"},{"disabled":true,"description":{"content":"<p>Include completed tasks. Default: false</p>\n","type":"text/plain"},"key":"include_completed","value":"true"},{"description":{"content":"<p>Include only tasks in a specific group. For example: Phone tasks.</p>\n","type":"text/plain"},"key":"group","value":"3"}],"variable":[]}},"response":[],"_postman_id":"328217c9-ff87-4a96-9623-8070d34b5afd"},{"name":"Tasks by type","id":"999f69b0-19db-4adc-8b51-6c9eecae58ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/tasks?type=83","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks"],"host":["{{url}}"],"query":[{"key":"type","value":"83"}],"variable":[]}},"response":[],"_postman_id":"999f69b0-19db-4adc-8b51-6c9eecae58ff"},{"name":"Tasks by result","id":"a324c8a7-010b-4439-9160-c4114e6c4148","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/tasks?result=90","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks"],"host":["{{url}}"],"query":[{"key":"result","value":"90"}],"variable":[]}},"response":[],"_postman_id":"a324c8a7-010b-4439-9160-c4114e6c4148"},{"name":"Task by id","id":"0ad2c90e-3175-46b6-b40e-ff390b7b2589","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/tasks/4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks","4"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ad2c90e-3175-46b6-b40e-ff390b7b2589"},{"name":"Update a task","id":"04031cb1-a995-4cf5-b3c0-be1a339aeb0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"type\": 87,\r\n    \"added_time\": 1548344164,\r\n    \"lead_id\": 1,\r\n    \"assigned_to_user_id\": 1,\r\n    \"assigned_by_user_id\": 1,\r\n    \"description\": \"API Task testss\",\r\n    \"due_time\": 1548354963,\r\n    \"original_due_time\": 0,\r\n    \"is_completed\": false,\r\n    \"completed_by_user_id\": 0,\r\n    \"completed_time\": 0,\r\n    \"result\": null,\r\n    \"result_description\": \"\",\r\n    \"is_cancelled\": false,\r\n    \"reminder_time\": 1548344163\r\n}"},"url":"{{url}}/api/v3/tasks/87","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks","87"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"04031cb1-a995-4cf5-b3c0-be1a339aeb0e"},{"name":"Complete a task","id":"840334a1-f2af-4ae3-bb7e-2ecb6ffdd202","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"id\": 7,\r\n\t\"type\": 87,\r\n    \"added_time\": 1548344164,\r\n    \"family\": 1,\r\n    \"assigned_to_user_id\": 1,\r\n    \"assigned_by_user_id\": 1,\r\n    \"description\": \"API Task testss\",\r\n    \"due_time\": 1548354963,\r\n    \"original_due_time\": 0,\r\n    \"is_completed\": true,\r\n    \"completed_by_user_id\": 0,\r\n    \"completed_time\": 0,\r\n    \"result\": null,\r\n    \"result_type\": 90,\r\n    \"result_description\": \"API complete test 2\",\r\n    \"is_cancelled\": false,\r\n    \"reminder_time\": 1548344163\r\n}"},"url":"{{url}}/api/v3/tasks/7/complete","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks","7","complete"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"840334a1-f2af-4ae3-bb7e-2ecb6ffdd202"},{"name":"Cancel a task","id":"b227eba8-6db0-48ef-9c15-7098b33d4310","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\t\"type\": 87,\r\n    \"added_time\": 1548344164,\r\n    \"lead_id\": 1,\r\n    \"assigned_to_user_id\": 1,\r\n    \"assigned_by_user_id\": 1,\r\n    \"description\": \"API Task testss\",\r\n    \"due_time\": 1548354963,\r\n    \"original_due_time\": 0,\r\n    \"is_completed\": true,\r\n    \"completed_by_user_id\": 0,\r\n    \"completed_time\": 0,\r\n    \"result\": null,\r\n    \"result_type\": 90,\r\n    \"result_description\": \"API complete test\",\r\n    \"is_cancelled\": false,\r\n    \"reminder_time\": 1548344163\r\n}"},"url":"{{url}}/api/v3/tasks/320/cancel","urlObject":{"path":["api","v3","tasks","320","cancel"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b227eba8-6db0-48ef-9c15-7098b33d4310"},{"name":"Create a task","id":"f120d3e4-0103-44c5-9c99-31a7926290a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"family\": 37,\n\t\"type\": 83,\n    \"assigned_to_staff\": 27544,\n    \"primary_guardian_email_reminder_amount\": 1,\n    \"primary_guardian_email_reminder_unit\": \"day\",\n    \"primary_guardian_text_reminder_amount\": 2,\n    \"primary_guardian_text_reminder_unit\": \"hour\",\n    \"staff_email_reminder_amount\": 2,\n    \"staff_email_reminder_unit\": \"hour\",\n    \"staff_text_reminder_amount\": 30,\n    \"staff_text_reminder_unit\": \"minute\",\n    \"show_on_calendar\": true,\n    \"assigned_to_enrollment_team_group\": null,\n    \"due_date_time\": \"2019-08-01T13:30:00Z\",\n    \"description\": \"API Task test creation 5\",\n    \"result_description\": \"\",\n    \"duration\": 60\n}"},"url":"{{url}}/api/v3/tasks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","tasks"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f120d3e4-0103-44c5-9c99-31a7926290a6"}],"id":"16b2ef9f-2991-4629-8491-44913b853478","description":"<p>Actions for a specific Lead, primarily prior to Enrollment, scheduled to be done by specifically assigned Staff.  Examples: “Phone Call”, “Text”, “Confirm and Schedule Tour”.  Tasks are work to be done in the future. </p>\n","event":[{"listen":"prerequest","script":{"id":"1d99849c-dd78-442f-9b56-d4167fc4e77e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"406df607-7951-4e28-bc7d-4ce9f46f8a77","type":"text/javascript","exec":[""]}}],"_postman_id":"16b2ef9f-2991-4629-8491-44913b853478","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Enrollments","item":[{"name":"Get one enrollment","id":"2310aa9c-f0af-47e4-81bc-35875104dae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/enrollments/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2310aa9c-f0af-47e4-81bc-35875104dae3"},{"name":"Get enrollments","id":"db032b73-a722-48da-a24a-e75eb2985e17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/enrollments?status_ids[]=1&status_ids[]=2&status_ids[]=11&status_ids[]=3&status_ids[]=4&status_ids[]=5&limit=5&offset=0&start_before_date=2021-09-16T04:59:59Z&start_after_date=2021-09-14T04:00:00Z&children_ids[]=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[{"key":"status_ids[]","value":"1"},{"key":"status_ids[]","value":"2"},{"key":"status_ids[]","value":"11"},{"key":"status_ids[]","value":"3"},{"key":"status_ids[]","value":"4"},{"key":"status_ids[]","value":"5"},{"disabled":true,"key":"center_ids[]","value":"1"},{"disabled":true,"key":"center_ids[]","value":"2"},{"key":"limit","value":"5"},{"key":"offset","value":"0"},{"key":"start_before_date","value":"2021-09-16T04:59:59Z"},{"key":"start_after_date","value":"2021-09-14T04:00:00Z"},{"description":{"content":"<p>Limit to only specified children</p>\n","type":"text/plain"},"key":"children_ids[]","value":"1"}],"variable":[]}},"response":[],"_postman_id":"db032b73-a722-48da-a24a-e75eb2985e17"},{"name":"Get enrollments by center","id":"f6439a66-0fd2-498f-81e3-13710a4b3d10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/enrollments?center_ids[]=1&center_ids[]=2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Find enrollments in only the given centers</p>\n","type":"text/plain"},"key":"center_ids[]","value":"1"},{"key":"center_ids[]","value":"2"}],"variable":[]}},"response":[],"_postman_id":"f6439a66-0fd2-498f-81e3-13710a4b3d10"},{"name":"Get children starting during time range","id":"be630c1b-adaf-41fd-a26b-2a541786a902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/enrollments?start_before_date=2019-10-21T23%3A59%3A59%2B00%3A00&start_after_date=2019-03-21T00%3A00%3A00%2B00%3A00","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[{"key":"start_before_date","value":"2019-10-21T23%3A59%3A59%2B00%3A00"},{"key":"start_after_date","value":"2019-03-21T00%3A00%3A00%2B00%3A00"}],"variable":[]}},"response":[],"_postman_id":"be630c1b-adaf-41fd-a26b-2a541786a902"},{"name":"Get children withdrawing today","id":"9a3b5b4a-d936-43c3-a181-415f0eaf63c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/enrollments?withdrawn_before_date=2019-03-21T23%3A59%3A59%2B00%3A00&withdrawn_after_date=2019-03-21T00%3A00%3A00%2B00%3A00","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[{"key":"withdrawn_before_date","value":"2019-03-21T23%3A59%3A59%2B00%3A00"},{"key":"withdrawn_after_date","value":"2019-03-21T00%3A00%3A00%2B00%3A00"}],"variable":[]}},"response":[],"_postman_id":"9a3b5b4a-d936-43c3-a181-415f0eaf63c5"},{"name":"Create enrollment","id":"bf26ef0c-ee73-4482-96d9-13cb64cb9232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"center_id\": 1,\r\n    \"child_id\": 593,\r\n    \"classroom_id\": 19,\r\n    \"expected_start_date\": \"\",\r\n    \"schedule\":\r\n    {\r\n        \"friday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"monday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"saturday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"sunday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"thursday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"tuesday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        },\r\n        \"wednesday\":\r\n        {\r\n            \"am\": false,\r\n            \"pm\": false\r\n        }\r\n    }\r\n}"},"url":"{{url}}/api/v3/enrollments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf26ef0c-ee73-4482-96d9-13cb64cb9232"},{"name":"Update enrollment","id":"3e06b311-306d-4593-bce8-b4b9d3a4809b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"","value":"","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"child_id\": 724,\n  \"center_id\": 15,\n\t\"wait_list\": {\n        \"priority\": 41,\n        \"fee\": 999,\n        \"is_fee_paid\": true,\n        \"fee_paid_datetime\": \"2021-04-30T05:00:00+00:00\",\n        \"type\": 674,\n        \"reason\": 670,\n        \"comments\": \"Latest waitlist comments by Aruna\"\n    },\n      \"schedule\": {\n        \"monday\": {\n            \"am\": false,\n            \"pm\": false\n        },\n        \"tuesday\": {\n            \"am\": false,\n            \"pm\": false\n        },\n        \"wednesday\": {\n            \"am\": false,\n            \"pm\": false\n        },\n        \"thursday\": {\n            \"am\": false,\n            \"pm\": false\n        },\n        \"friday\": {\n            \"am\": false,\n            \"pm\": false\n        },\n        \"saturday\": {\n            \"am\": true,\n            \"pm\": false\n        },\n        \"sunday\": {\n            \"am\": false,\n            \"pm\": false\n        }\n    }\n}"},"url":"{{url}}/api/v3/enrollments/550","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments","550"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e06b311-306d-4593-bce8-b4b9d3a4809b"},{"name":"Move child to enrolled","id":"698b7628-f993-4680-91c2-70c34571f6be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"child_id\": 363,\n  \"center_id\": 8,\n  \"enrolled\": {\n    \"reason\": 46,\n    \"date\": \"2020-01-01T00:00:00+00:00\"\n  }, \n  \"schedule\": {\n    \"monday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"tuesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"wednesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"thursday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"friday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"full_days\": 0,\n    \"half_days\": 0\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/enrollments/186","description":"<p>An example of how to move a child to enrolled. Note: child must be in \"registered\" status before being moved to enrolled.</p>\n<p>The \"reason\" id is available from /api/v3/types/reasons/enrolled.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments","186"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"698b7628-f993-4680-91c2-70c34571f6be"},{"name":"Move child to withdrawn","id":"684d2242-5cfc-4874-94af-addcc506d004","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"child_id\": 363,\n  \"center_id\": 8,\n  \"withdrawn\": {\n    \"reason\": 48,\n    \"date\": \"2020-01-01T00:00:00+00:00\"\n  }, \n  \"schedule\": {\n    \"monday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"tuesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"wednesday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"thursday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"friday\": {\n      \"am\": 0,\n      \"pm\": 0\n    },\n    \"full_days\": 0,\n    \"half_days\": 0\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/enrollments/186","description":"<p>An example of how to move a child to withdrawn. Note: child must be in \"enrolled\" or \"temporary leave\" status before being moved to withdrawn.</p>\n<p>The \"reason\" id is available from /api/v3/types/reasons/withdrawn. </p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","enrollments","186"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"684d2242-5cfc-4874-94af-addcc506d004"}],"id":"424e4d31-e25c-4377-a08d-c3b3fac11cd3","description":"<p>Enrollments are used to track a child's enrollment status: enrolled, temporary leave, or withdrawn. They will automatically change the child's current status to match. Enrollments also show a child's weekly schedule.</p>\n<p>Enrollments are also used to change a child's classroom or schedule. Properties like \"expected_start_date\", \"wait_list_date\", \"register_date\" are optional and should not be included unless you also want to change the child's status based on those dates. </p>\n","event":[{"listen":"prerequest","script":{"id":"de99466c-6354-44f5-a4d7-3a7715bc2a0e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b6fa81e7-8ef3-4c36-9215-6bee23e6d850","type":"text/javascript","exec":[""]}}],"_postman_id":"424e4d31-e25c-4377-a08d-c3b3fac11cd3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Enrollment Teams / Call Centers","item":[{"name":"Settings","item":[{"name":"Advisories","item":[{"name":"Get Advisories","id":"f1783598-16f8-460c-9532-ae86da58419c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/advisories","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","advisories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f1783598-16f8-460c-9532-ae86da58419c"},{"name":"Get Advisory","id":"6ea12222-7c6f-4d38-8787-bb2c326925f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/advisories/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","advisories","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ea12222-7c6f-4d38-8787-bb2c326925f0"},{"name":"Create Advisory","id":"ac4cbcb2-634d-4ff7-8030-927a7403b0fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"center\": 1,\n    \"description\": \"Advisory description\",\n    \"title\": \"Advisory title\"\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/advisories","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","advisories"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac4cbcb2-634d-4ff7-8030-927a7403b0fd"},{"name":"Update Advisory","id":"cc6c8545-967f-4064-a926-a919e10c874e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"center\": 1,\n    \"description\": \"Advisory description edited\",\n    \"title\": \"Advisory title edited\"\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/advisories/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","advisories","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cc6c8545-967f-4064-a926-a919e10c874e"},{"name":"Delete Advisory","id":"13e382f5-8a24-4ed5-b9b4-dcb475924106","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/advisories/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","advisories","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13e382f5-8a24-4ed5-b9b4-dcb475924106"}],"id":"b2cc4327-fedd-459e-8034-b3a10f26ddad","_postman_id":"b2cc4327-fedd-459e-8034-b3a10f26ddad","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Offerings","item":[{"name":"Get Offerings","id":"57c6a995-da21-4e4b-b4d2-2c94de9ffc64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/offerings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57c6a995-da21-4e4b-b4d2-2c94de9ffc64"},{"name":"Get Offering","id":"a23d205b-de4a-42ba-a696-26886e08021a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/offerings/55","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings","55"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a23d205b-de4a-42ba-a696-26886e08021a"},{"name":"Create Offering","id":"dd626c7a-1c10-4d6b-9af3-2f4591f4ca70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test offering\",\n    \"order\": 1,\n    \"options\": [\n        {\n            \"label\": \"Test offering option 1\",\n            \"order\": 0\n        },\n        {\n            \"label\": \"Test offering option 2\",\n            \"order\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/offerings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd626c7a-1c10-4d6b-9af3-2f4591f4ca70"},{"name":"Update Offering","id":"d88b9a2f-e4c0-4974-949a-a3108d895a50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test offering edited\",\n    \"order\": 2,\n    \"options\": [\n        {\n            \"id\": 1021,\n            \"label\": \"Test offering option 1 edited\",\n            \"order\": 0\n        }\n    ]\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/offerings/56","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings","56"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d88b9a2f-e4c0-4974-949a-a3108d895a50"},{"name":"Delete Offering","id":"c80c712f-38a2-4374-800f-6884b5f734c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/offerings/56","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings","56"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c80c712f-38a2-4374-800f-6884b5f734c6"},{"name":"Get Offering Option","id":"120b79e6-3001-4a7e-abe5-f8d84e517de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/client/settings/call-centers/offerings/options/741","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","offerings","options","741"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"120b79e6-3001-4a7e-abe5-f8d84e517de0"},{"name":"GET Locations Offerings","id":"d4b78ca4-2881-4bf1-9982-c45d5b56f673","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/1/call-center-settings/offerings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","offerings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4b78ca4-2881-4bf1-9982-c45d5b56f673"},{"name":"PUT Location Offering Option","id":"2a3cf9d9-e936-4b6a-b780-56293a54437b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"is_offered\": true,\n  \"is_included_in_price\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings/offerings/742","description":"<p>/api/v3/centers/1/call-center-settings/offerings/{offering-option-id}</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","offerings","742"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a3cf9d9-e936-4b6a-b780-56293a54437b"}],"id":"546834a8-e920-4256-9cac-fb69a9d3c678","_postman_id":"546834a8-e920-4256-9cac-fb69a9d3c678","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Details","item":[{"name":"Get Details","id":"9bcd0d42-007d-4477-8491-f5bc4c39d20c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/details","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","details"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9bcd0d42-007d-4477-8491-f5bc4c39d20c"},{"name":"Get Detail","id":"a3e144de-f3cf-4279-86c6-52871be01437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/details/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","details","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a3e144de-f3cf-4279-86c6-52871be01437"},{"name":"Create Detail","id":"91c80017-3ae0-49a1-9b58-a46910d329ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Detail description\",\n    \"header\": \"Detail header\",\n    \"order\": 5\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/details","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","details"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91c80017-3ae0-49a1-9b58-a46910d329ee"},{"name":"Update Detail","id":"2f54a4ef-27cf-4df6-9f6e-6f71bf9e2206","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"description\": \"Detail description edited\",\n    \"header\": \"Detail header edited\",\n    \"order\": 8\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/details/10","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","details","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f54a4ef-27cf-4df6-9f6e-6f71bf9e2206"},{"name":"Delete Detail","id":"8f2f010e-01e8-468c-98cd-d58c22c07f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/details/10","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","details","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f2f010e-01e8-468c-98cd-d58c22c07f49"},{"name":"GET Location Details","id":"c1a85048-66f7-4831-a5be-e71a4fe075fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/1/call-center-settings/details","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","details"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c1a85048-66f7-4831-a5be-e71a4fe075fc"},{"name":"PUT Location Detail","id":"bfe12a1d-a02f-4f31-bb07-2603fd4a75c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"value\": \"XYZ\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings/details/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","details","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfe12a1d-a02f-4f31-bb07-2603fd4a75c7"},{"name":"GET Location Detail","id":"708f6bf6-55a8-480e-825a-38fc7d0a4452","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/centers/1/call-center-settings/details/2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","details","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"708f6bf6-55a8-480e-825a-38fc7d0a4452"}],"id":"99321aaf-2ce2-4bab-8512-922e9ec0d3fa","_postman_id":"99321aaf-2ce2-4bab-8512-922e9ec0d3fa","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Rates","item":[{"name":"GET Location Rates","id":"496b6058-66a2-4fae-837a-a78a4976a257","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/1/call-center-settings/rates","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","rates"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"496b6058-66a2-4fae-837a-a78a4976a257"},{"name":"PUT Location Rates","id":"adb10f0b-96b2-4af7-bd5e-aa2b56558344","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"classrooms\": [\n        {\n            \"classroom\": 11225,\n            \"value\": \"123.45\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings/rates/1","description":"<p>Update many location classroom rates. Use the rate option id. Body is an array.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","rates","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"adb10f0b-96b2-4af7-bd5e-aa2b56558344"},{"name":"GET Rate Option","id":"584f9e6b-f850-4705-8d81-bc038ea0bafd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/client/settings/call-centers/rate-options/1","urlObject":{"path":["api","v3","client","settings","call-centers","rate-options","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"584f9e6b-f850-4705-8d81-bc038ea0bafd"},{"name":"GET Rate Options","id":"9b25bfce-c7e9-473d-8526-c517eadc3a86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/client/settings/call-centers/rate-options","urlObject":{"path":["api","v3","client","settings","call-centers","rate-options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b25bfce-c7e9-473d-8526-c517eadc3a86"},{"name":"POST Rate Option","id":"872feb08-eab5-40c7-9a4d-c2dececaf201","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test rate option label 7\",\n    \"order\": 0\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/rate-options","urlObject":{"path":["api","v3","client","settings","call-centers","rate-options"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"872feb08-eab5-40c7-9a4d-c2dececaf201"},{"name":"PUT Rate Option","id":"ca1e2ea3-c41d-47e6-bd59-8f2152df4fe1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test rate option label 6\",\n    \"order\": 0\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/rate-options/6","urlObject":{"path":["api","v3","client","settings","call-centers","rate-options","6"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca1e2ea3-c41d-47e6-bd59-8f2152df4fe1"},{"name":"DELETE Rate Option","id":"288a91ee-2620-4496-9725-3860f56c62a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/client/settings/call-centers/rate-options/17","urlObject":{"path":["api","v3","client","settings","call-centers","rate-options","17"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"288a91ee-2620-4496-9725-3860f56c62a9"}],"id":"179cb3cb-7347-4145-9f01-8128ed398fde","_postman_id":"179cb3cb-7347-4145-9f01-8128ed398fde","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Ratings","item":[{"name":"Get Ratings","id":"28ec2288-8acf-4eef-9db3-b57c5dbe1ad0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/ratings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28ec2288-8acf-4eef-9db3-b57c5dbe1ad0"},{"name":"Get Rating","id":"caa894d4-e3e5-45d6-89c5-9894122378fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/ratings/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"caa894d4-e3e5-45d6-89c5-9894122378fd"},{"name":"Create Rating","id":"8ecd8ebe-ef3d-449d-b5b7-a7cc04f9ec5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test rating\",\n    \"order\": 2,\n    \"options\": [\n        {\n            \"label\": \"Test rating option 1\",\n            \"order\": 0\n        },\n        {\n            \"label\": \"Test rating option 2\",\n            \"order\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/ratings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ecd8ebe-ef3d-449d-b5b7-a7cc04f9ec5a"},{"name":"Update Rating","id":"0ad78635-6d94-453d-922d-d1772cbbba22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"label\": \"Test rating edited\",\n    \"order\": 2,\n    \"options\": [\n        {\n            \"id\": 7,\n            \"label\": \"Test rating option 1 edited\",\n            \"order\": 0\n        },\n        {\n            \"id\": null,\n            \"label\": \"Test rating option 2 edited\",\n            \"order\": 1\n        }\n    ]\n}"},"url":"{{url}}/api/v3/client/settings/call-centers/ratings/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings","3"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ad78635-6d94-453d-922d-d1772cbbba22"},{"name":"Delete Rating","id":"8584e989-b22a-4054-8454-d286084afba4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{url}}/api/v3/client/settings/call-centers/ratings/3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings","3"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8584e989-b22a-4054-8454-d286084afba4"},{"name":"GET Rating Option","id":"bfd03c48-ebf8-4852-8271-eb73da0a82b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/client/settings/call-centers/ratings/options/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers","ratings","options","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfd03c48-ebf8-4852-8271-eb73da0a82b4"},{"name":"GET Location Ratings","id":"72af2cf3-b44f-4cb1-929c-bb769c66afbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/centers/1/call-center-settings/ratings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","ratings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72af2cf3-b44f-4cb1-929c-bb769c66afbf"},{"name":"PUT Location Rating","id":"bd23c0f1-0662-4133-8e79-75016bbbf7a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"value\": 1\n}"},"url":"{{url}}/api/v3/centers/1/call-center-settings/ratings/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","ratings","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd23c0f1-0662-4133-8e79-75016bbbf7a7"},{"name":"GET Location Rating","id":"8887aff9-50df-44e4-9bd7-f3066e10d4ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/centers/1/call-center-settings/ratings/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","ratings","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8887aff9-50df-44e4-9bd7-f3066e10d4ab"}],"id":"fcddee83-a247-4f83-843f-16547e0fb7b4","_postman_id":"fcddee83-a247-4f83-843f-16547e0fb7b4","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Enrollment Team Settings","id":"cf598f63-21e2-45c1-91b4-791de5ccff88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/client/settings/call-centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cf598f63-21e2-45c1-91b4-791de5ccff88"},{"name":"Update Enrollment Team Settings","id":"da0dad65-6895-4482-b0d7-4907df8bcce4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Enrol Team!\",\n    \"flow\": 9102,\n    \"url\": \"https://foo.bar\",\n    \"email_address\": \"blah\",\n    \"phone_number\": \"+15125551515\",\n    \"task_types\": [83, 89, 85],\n    \"enable_offerings\": true,\n    \"enable_details\": false,\n    \"enable_pricing\": true,\n    \"enable_availability\": false,\n    \"enable_ratings\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/client/settings/call-centers","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","client","settings","call-centers"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da0dad65-6895-4482-b0d7-4907df8bcce4"}],"id":"460dfb88-8511-4fe1-8765-ddd531a1167f","_postman_id":"460dfb88-8511-4fe1-8765-ddd531a1167f","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Get Location Settings","id":"bbf62323-7e66-4f49-9b45-59939e4b35cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/1/call-center-settings","description":"<p>Retrieve the Enrollment Team / Call Center settings for a location / center.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbf62323-7e66-4f49-9b45-59939e4b35cd"},{"name":"Update Location Settings Primitives","id":"0a1570fa-98bb-41e8-9a54-5ffb9c14dad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"call_center_phone\": \"\",\n    \"enrollment_rep\": \"107403\",\n    \"price_exceptions\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings","description":"<p>Update the Enrollment Team / Call Center primitive settings for a location / center.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a1570fa-98bb-41e8-9a54-5ffb9c14dad5"},{"name":"Get Rate File","id":"8e4c09bc-d010-48b0-9dff-7661949f37fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/centers/5/call-center-settings/rates-file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","5","call-center-settings","rates-file"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e4c09bc-d010-48b0-9dff-7661949f37fc"},{"name":"Update rate file","id":"43e15d9e-366c-40e8-912e-e116656ef2a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"file\": \"JVBERi0xLjYNJeLjz9MNCjM3IDAgb2JqIDw8L0xpbmVhcml6ZWQgMS9MIDIwNTk3L08gNDAvRSAxNDExNS9OIDEvVCAxOTc5NS9IIFsgMTAwNSAyMTVdPj4NZW5kb2JqDSAgICAgICAgICAgICAgICAgDQp4cmVmDQozNyAzNA0KMDAwMDAwMDAxNiAwMDAwMCBuDQowMDAwMDAxMzg2IDAwMDAwIG4NCjAwMDAwMDE1MjIgMDAwMDAgbg0KMDAwMDAwMTc4NyAwMDAwMCBuDQowMDAwMDAyMjUwIDAwMDAwIG4NCjAwMDAwMDIyNzQgMDAwMDAgbg0KMDAwMDAwMjQyMyAwMDAwMCBuDQowMDAwMDAyODQ0IDAwMDAwIG4NCjAwMDAwMDI4ODggMDAwMDAgbg0KMDAwMDAwMjkzMiAwMDAwMCBuDQowMDAwMDA0MTEzIDAwMDAwIG4NCjAwMDAwMDQxNDcgMDAwMDAgbg0KMDAwMDAwNDIxMSAwMDAwMCBuDQowMDAwMDA2ODgwIDAwMDAwIG4NCjAwMDAwMDcwMjMgMDAwMDAgbg0KMDAwMDAwNzE3MiAwMDAwMCBuDQowMDAwMDA3MzEyIDAwMDAwIG4NCjAwMDAwMDc0NTUgMDAwMDAgbg0KMDAwMDAwODE3NiAwMDAwMCBuDQowMDAwMDA4NTY2IDAwMDAwIG4NCjAwMDAwMDkwNjYgMDAwMDAgbg0KMDAwMDAxMjUxOCAwMDAwMCBuDQowMDAwMDEyNjY3IDAwMDAwIG4NCjAwMDAwMTI4MDMgMDAwMDAgbg0KMDAwMDAxMjkzOSAwMDAwMCBuDQowMDAwMDEzMDcyIDAwMDAwIG4NCjAwMDAwMTMyMDggMDAwMDAgbg0KMDAwMDAxMzM0NCAwMDAwMCBuDQowMDAwMDEzNDgwIDAwMDAwIG4NCjAwMDAwMTM2MzIgMDAwMDAgbg0KMDAwMDAxMzgxOCAwMDAwMCBuDQowMDAwMDE0MDM5IDAwMDAwIG4NCjAwMDAwMDEyMjAgMDAwMDAgbg0KMDAwMDAwMTAwNSAwMDAwMCBuDQp0cmFpbGVyDQo8PC9TaXplIDcxL1ByZXYgMTk3ODQvWFJlZlN0bSAxMjIwL1Jvb3QgMzkgMCBSL0VuY3J5cHQgMzggMCBSL0luZm8gNiAwIFIvSURbPEMyMUYyMUVBNDRDMUUyRUQyNTgxNDM1RkE1QTJEQ0NFPjwxNTM0OTEwNkQ5ODVEQTQ0OTkxMDk5RjlDMENCRjAwND5dPj4NCnN0YXJ0eHJlZg0KMA0KJSVFT0YNCiAgICAgICAgICAgICAgIA0KNzAgMCBvYmo8PC9MZW5ndGggMTIzL0MgMTI4L0ZpbHRlci9GbGF0ZURlY29kZS9JIDE1MS9MIDExMi9TIDQwPj5zdHJlYW0NCjA+v2UNc4Zmn6u4IiQguoMZnwg0NH0ymtRAWZUZqNfHLCiMQS0kyMfdiuvi04hlG2GJLNJzPFccsqvk0nZ7AHI4uCBvKj3L7sGXnAk1tHgOFgzOJjqRioIZMmIdwW51On/CmLK6+gsvbo3ivOa3aWeWo5GxxRL0DzNdRQ0KZW5kc3RyZWFtDWVuZG9iag02OSAwIG9iajw8L0xlbmd0aCAyMC9GaWx0ZXIvRmxhdGVEZWNvZGUvV1sxIDEgMV0vSW5kZXhbNyAzMF0vRGVjb2RlUGFybXM8PC9Db2x1bW5zIDMvUHJlZGljdG9yIDEyPj4vU2l6ZSAzNy9UeXBlL1hSZWY+PnN0cmVhbQ0KeNpiYmJkYGJgYKQ3BggwABbZAF0NCmVuZHN0cmVhbQ1lbmRvYmoNMzggMCBvYmo8PC9MZW5ndGggMTI4L0ZpbHRlci9TdGFuZGFyZC9PKJ6imv11rrw5sF4j3R+ObJ1lZ2RcbuwZDDZAs8jdl58OFSkvUCAtMTM0MC9SIDMvVSjj41C/LnKptSQ/7nBNpOwWAAAAAAAAAAAAAAAAAAAAACkvViAyPj4NZW5kb2JqDTM5IDAgb2JqPDwvTWFya0luZm88PC9MZXR0ZXJzcGFjZUZsYWdzIDAvTWFya2VkIHRydWU+Pi9NZXRhZGF0YSA1IDAgUi9QaWVjZUluZm88PC9NYXJrZWRQREY8PC9MYXN0TW9kaWZpZWQoCM1RrvFnz1Fb5exxrGnDVyk+Pj4+L1BhZ2VzIDQgMCBSL1BhZ2VMYXlvdXQvT25lQ29sdW1uL1N0cnVjdFRyZWVSb290IDcgMCBSL1R5cGUvQ2F0YWxvZy9MYW5nKAm5TsuSKS9MYXN0TW9kaWZpZWQoCM1RrvFnz1Fb5exxrGnDVykvUGFnZUxhYmVscyAyIDAgUj4+DWVuZG9iag00MCAwIG9iajw8L0Nyb3BCb3hbMCAwIDYxMiA3OTJdL0Fubm90cyA0MSAwIFIvUGFyZW50IDQgMCBSL1N0cnVjdFBhcmVudHMgMC9Db250ZW50cyA0NiAwIFIvUm90YXRlIDAvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1Jlc291cmNlczw8L1hPYmplY3Q8PC9JbTEwIDUwIDAgUi9JbTExIDUxIDAgUi9JbTEyIDUyIDAgUi9JbTEzIDUzIDAgUi9JbTE0IDU1IDAgUi9JbTAgNTcgMCBSL0ltMSA1OCAwIFIvSW0yIDU5IDAgUi9JbTMgNjAgMCBSL0ltNCA2MSAwIFIvSW01IDYyIDAgUi9JbTYgNjMgMCBSL0ltNyA2NCAwIFIvSW04IDY1IDAgUi9JbTkgNjYgMCBSPj4vQ29sb3JTcGFjZTw8L0NTMCA0NCAwIFIvQ1MxIDQ3IDAgUi9DUzIgNDUgMCBSPj4vRm9udDw8L1RUMCA0MyAwIFI+Pi9Qcm9jU2V0Wy9QREYvVGV4dC9JbWFnZUMvSW1hZ2VJXS9FeHRHU3RhdGU8PC9HUzAgNjggMCBSPj4+Pi9UeXBlL1BhZ2U+Pg1lbmRvYmoNNDEgMCBvYmpbNDIgMCBSXQ1lbmRvYmoNNDIgMCBvYmo8PC9SZWN0WzIyMC42OCA0NjcuODggMzg5LjQ2MSA0ODMuODUyXS9TdWJ0eXBlL0xpbmsvQlM8PC9TL1MvVyAwL1R5cGUvQm9yZGVyPj4vQSA0OCAwIFIvSC9JL1N0cnVjdFBhcmVudCAxL0JvcmRlclswIDAgMF0vVHlwZS9Bbm5vdD4+DWVuZG9iag00MyAwIG9iajw8L1N1YnR5cGUvVHJ1ZVR5cGUvRm9udERlc2NyaXB0b3IgNjcgMCBSL0xhc3RDaGFyIDEyMS9XaWR0aHNbMjc4IDI3OCAwIDAgMCAwIDAgMCAzMzMgMzMzIDAgMCAyNzggMCAyNzggMjc4IDU1NiA1NTYgNTU2IDU1NiAwIDAgNTU2IDU1NiAwIDAgMjc4IDAgMCAwIDAgMCAwIDY2NyA2NjcgNzIyIDcyMiA2NjcgNjExIDAgMCAwIDAgMCAwIDAgMCAwIDY2NyAwIDAgMCA2MTEgMCAwIDk0NCAwIDY2NyAwIDAgMCAwIDAgMCAwIDU1NiA1NTYgNTAwIDU1NiA1NTYgMjc4IDU1NiA1NTYgMjIyIDAgNTAwIDIyMiA4MzMgNTU2IDU1NiA1NTYgNTU2IDMzMyA1MDAgMjc4IDU1NiA1MDAgNzIyIDUwMCA1MDBdL0Jhc2VGb250L0FyaWFsTVQvRmlyc3RDaGFyIDMyL0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9UeXBlL0ZvbnQ+Pg1lbmRvYmoNNDQgMCBvYmpbL0luZGV4ZWQgNDcgMCBSIDI1NSA1NiAwIFJdDWVuZG9iag00NSAwIG9ialsvSW5kZXhlZCA0NyAwIFIgMjU1IDU0IDAgUl0NZW5kb2JqDTQ2IDAgb2JqPDwvTGVuZ3RoIDExMTEvRmlsdGVyL0ZsYXRlRGVjb2RlPj5zdHJlYW0NChufMnlICdQfjYcndDyzqHmjgA3tKskYMKxrN8qdFclEw4kX6BzSv31HcGeS2XIFURVV5WTYeB8J4GddvYKvnJV74/gIHB/ubGPR48bNi3br4p8Gh2nfi782qymqRPjYEA8bld2qCtmkMMY6N+zxMzcA4j4CyThx3SrLRMj/IYuodNmI3rOSm46OKh3yyuh3fha1DItTnfXgX7NCHENqExWtvoARUCBvwVi1veKODrxC0Voe6fVGOEb7Keju8PoVgNwDmyPZ2Sy985tqOMbnnOQj1hwa0l8LcRrbmxPtwI7pKDoDXh5/F0S8MVRII0yVd/YIZE+duVrxJJiqIbWwNi2k5zvzQ6WLZt03xaqe04rhOyTZw8rY1pb8yrs9aWy0FM+sqaPN2npOV5ACTNNuPstnX2DKTAaOTH8jyRUmp9WsD4djBlPQ47ouWGMHe0TRVpQyI0rXYTo+P6b+KpEcpRQQx/NjN3gJI4jBM0k8+RpehR1jJndwOeH238NX29+2mjp/iBPSmW3TA7OzCpyZjZGqDwz8u2wYQFsBd5vwKD4WK79+1drdKzynnCF0/FqybZHsMRP45m5Sfa01fLb8RnCMJCIqUnu73QfSUaJjbUNsf+ZjPIl7fnX73U7+wPX9OOPBiIae+S4QRfB+BaHvaSiK4ZBgbsrCOIS3rrnLlz13vBqn88wKXFU50NbAKpeY3W+cTs6AyUbbng7IQS+swapS0HSecpB8R/1eois/GvQTgA5VH/8f21x1Fc7LXwxFTeaP2eSFqQrv+ofWbk8JYKKvd6RW4k17q3x3c551ljbQ/qhHxA3tCjDPzfbY9CQVihynZ8kwLdeEKQmkfBZLMHqRNIB0XY85H9J9jo9ILBNrm3KC6iIIqWjxkzZDeVk0hKmI9ubMpDb2bWXGua8PfPSX0SVGxMuO/+iCLdvuhjC4IUqqnERGkXh/7oqBxNiGVVxfW9uzAem2iQ+EeKXHQxvSmziPDo/6yyRS+05Sp6ceNRuiVog6OBFCMLFt4TsT7TXiifkyF9ycKZCHpeP6PoMtK/fdQQJqBIcKGikS5a5ZfcAAyt6M1An9TQnwZkVXN8qxf5ajd5ryS2ukqMv0RgXAG1OcbzAnRFt3i14MM2MfgPs5scooVO6QCJld6OUHTFS3HrLFXrQAIfleyHW7UXzO0d58MOhy2KhZFU+Ma9WJ/7HCAIceDyhoOyQzsP0xalUESKzLnM9EsOIAKCEGa/lREkkVE4Eg29blsrEiGpwvzT+hAxHrBYp5RLPaoNrE/FxD0trkHqja9vqzL/XNNfpy/LBRN8tXtd+qhOO7vbgVFbmU1BOKaU0BUg+Iqu6e/KZuyC5/BUX8I05KICN2gYEKyhBTxL1r43Kt4WqZehGgF+ZohfAB9Fb3MFDl7I5yXyO4UYSomO2lN4uQn3/nATMA+qEVZrLAczF9rMVQdKwZohzVqn1QaTjEjKve54Q1y5VV9ryohHYNCmVuZHN0cmVhbQ1lbmRvYmoNNDcgMCBvYmpbL0lDQ0Jhc2VkIDQ5IDAgUl0NZW5kb2JqDTQ4IDAgb2JqPDwvVVJJKFQsqLFqdcW4w3p+XHIiL0SAv/ECYgcLy+Eq265/YidqKS9TL1VSST4+DWVuZG9iag00OSAwIG9iajw8L0xlbmd0aCAyNTc1L0ZpbHRlci9GbGF0ZURlY29kZS9OIDMvQWx0ZXJuYXRlL0RldmljZVJHQj4+c3RyZWFtDQqh6ClJa8WT3poZ3FZU3dl7atbnzHGZPJ7QSlBq2WbLKHo0F59U3TDeumUIecJBc0/aF9dEateAc5WaW4oUA36LYcp4VU6EkojuLKFTZnLt5kV/DoGxxt0k4fFaUazJxtC4snbf0ldVYNGCCoz/g8AhlOrMAsPEbU14qhi+me23f/DlYspMo87JFJrj+akbpN9/mCJtY2B7htv4IB4Fq9OlAZuxkOuNKQTfzrh97yw1j8VIgILBBt8QKmOD5eRXe38dH1pCTZkvSI9Ww7anUH6bOvtFyRlB/fCOiwAH/ls9wtUw9RazW30d+WOdGUuR2AqTrjTQn2hC24B4Rzq9k1rRzNfTsidtQKpu9F7j4Yreq3UpRYDk36LDW9MCRd+A7IWNxMaKHzIw2AjEeTeQjjvksKQv/Wz41PtMTXh3IPDPz1Nth/7H9zQg2O9T9fYVddlKtj/S0SoVIVlV7iGYrrHCnTOrrAiGrVgjcurrWsTiFm898Kw4pOEyNu2q7PALSR7J2NkLd6Tl2IGDegyateS4xEQgQ/k0XUzWrFELnES7N+lj5O8y6Nb1fEHpChXe1dDUPzFup2dvkhBzvLmiJGIf21wJina5lZ63alXcu9b0jTd3nRh4gFtKWD9TU5IsByJYxm4t1c4uQcOEKavRdeMkJBtu7s7t3XanR/Hb1rHTpzymUPeQzFn1vwNXF9BerueurGJb5oq08wYRVL79SQWMOJyzPqpViEimRIPRxI/CxTS1T9FiroY7Z3knlbr6ydXO2h0/Z6sEHd2o8YxgvxOgN6+Bqof+lwLbVKkxJfRoiJnG599Op9XFtP+ZFbVbctlhgeESMQP04xelo+DUXkMpOr9pLZ7hH1lEUprXAjEUZ7rxVlAve7/M8GtL/6EqPP23ogErLAOHQOPsSXyYnAeEL6yzUp6NgAKS1urM3ICh685HrRmJEruYejxdIy+wDtG3KL9TRrS8iQui9owA1fNaHdYzY0zcEqSM2QpCbVhK9SffNvXqB6xqvhlbupiMCwDf+dA+oRobswcc/WQcwP/HN9lSTKAqXWkb/lyL42MTOOac552VCoxdQGXNRi3mzUWqrnfxM2C2ZNm5edTwc1L8VyfBEVU0HSHN4VwYcWuWa+VunKnQqjsgSPYN0KhERpMBwtWUHH9d5xGm5iiycst+37Jmhwt7sdHObSp8BgQLBoftEh0IYEbCj4yeVUoFOBTak94wpBFjRAOalOmhfL+zKd1xa6isUYtDdj3iMijX4BqPZ7k/hN3fxwsUckk7NvaH7kIU4ZYp714GTGjs2eyv2da3ajwlPFRiyOfVesPv/Rvo20BTRwWLEZr7w1EI3jfTrv0QR+PNdOgoNteNMPNy1Km4im7+U0zkWJvmnETR6sxtFR8oZpoFgW5yQM5kD69pKXPI3NeH2CUAoGVFXydVFGAqO4FjGrnZWZZqAkYNtCJc+lww2j41cGn8V6rTimJNrsFGdcSybB6OLGAUYCd/5KAOVS7fAluuL/MNuOq1JC1rS+aiF+EsjqTGsrquRtmXFkiZp+k0aR2JDCyE/cczYkquGapOLOW01/zEEXq1a61rGb+mzGCuJVLv8Jh5gbHW2RIFZzjyp+V8OOMPijWY20hwPsUkE0MaBm6InSVCWO6F8yeGT053jlgurO19taBGi9yL3/fNDBWDV4FvU2e6Q2rpyf6hDigffr0Ld1Up2TXHpMZwZVFV0iI4uPFUOoF8aCD2Azr+2bQLJf9ObToXIJVljnm0sb+btALTa2/ARDCJMdPgz12PJEBeFtzypP9KSnqR9ltrlwTeVgbfqmRR4V79WCd8RH0QHkX8qdmE8JNl+7Cm+/KiISSQ12pkEn2wVE9arbf10VR8zmuPcvXjjC/NRYIUY9540dXMhEuuX9/tPvk5LseHIsO2pnc2SOSIV+FY07QOwMETGHh/fRyZh2bpPNsb4bKfwBv05dl7oajp4bMoz3VHi3urjpth3kxtgHi6JY4oSCRFOyr6kCZlfz1MUIotPIUg/aU/7H570/Q9ESTVbMe3+bsL7R9zikBqVkmY9YrtT88UpxTWKkiECrhoTQg53cOTs5iZs+2hITV4fNFtIW1fcR7XhmtvLF3hQBuEoK04VGymQPOE+ZUEpiRCfPDLzUkgZWqpLbHgx/tMQ8LhmbTSBl+xSrMzCEGoPx6cVP5I8k8tyR2FIeFLA8wk7Rz6PwarLef4+f3Xp/0M8q/RUErCrOkUtm0mqDzO1/6dImwaoJP156DH4b3ys0wb6vBbXL7UXhoKxsesdsSKsTdmsTrWdd/7S+UMPQnJZrR9XjHFqBNoBfLWfJ94uqP5UsO03Kd8aFRUvaUSXCz0pMK55rZoB/dO3WsaVBZKuo45TiYtqIi9YGoOdj0+oEar9NpwAGErLcD5JiEon60crhc+TH2f4I8rsULU/Jil9DxrEj6Cz8TQnNwkV6vuOkwtcM6Jawsp3gpWU5WfQrha4C9mA9o0UQm68wN8ghQX/VCF6X0k/rrLtwM947CUotYJtW8PIPU34FfuRouJnK6lbCwvx7gFmq1cuIq+12QkPIqmBG/8vout961K75QH3E5rn1WtwvIkPwDdBbhFv7P2am+Tcnj5hMsrhZRd/hX+ATDSEBclAWHsqZ/aPcBIw4J5h5KOO9xBTrZdTg4cLW6hRCN5UWG/iOsiLiBc4wLiLhB4sCVxwdD6TqsqQtjHO7urv1W0mBTNeS01bs0Jv8mZ3bVPBBsRDsVnHqT/fkYNqUPZXvCJl2LkPI2hKtkR8LB4fCMjh28cm4MUOMvSpM79AcZmS3kM713rRBy3KwX44DlpOu33MVKofg0Vw1nwVm3I7752igruW3M/7w4++WS2CXhINCDZeacb4G9TxEVJSopuc28yTnYSpJSwswQBxuZFBdjEMVLKgn48xz8LJG2rZ5Zrn2tyjfVGd8EFC8DGRQD8KSVuBuJ1s9U3nIuSzPYGTfz0RoHI2Q/8piWewBiFaGU9Ik5nhRDtVmbXVq1Dh/0hY/tndFzsRWuMIOndJrUUlrf6Y5HLJUCu/TLaBF7dQBLNCnaFgmrNpedHAdikPtIgzhM/hz9h6UZBmz/i+IyVUe05zFy4WFmg8KiC5M7Kpu+33QCwJ21794HEObJHQEs2p7d6Ro45Bq2XtPrLNPguQUPNx2Rwu+XKFt21ru6a4xloQDYK9H/d8pwPhbDrK0y7Ju5+MysnsuVsFf3vRbWqJss7ow25860Zy4u4hw5HLumFvj4cUYEBDT6HlHRD1lxQsMEkymMf0gVNhBNld0OwmjsG2/LRdpv6Hs+M8dCx9KbGGB9gHzV18SHSdL6Vt8RjdWDYKeKS4HVFOnRq1rpYfwIts6Idy5DojlssUKAy0Brve+3JdjAPo8N1/Su4150lxwz8nQJHNGTobxOhlki+4VhnHGsDO/Ye2vtzDQplbmRzdHJlYW0NZW5kb2JqDTUwIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMTMvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDQvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrSjq6/frWLrN3EjNQENCmVuZHN0cmVhbQ1lbmRvYmoNNTEgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAxOS9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggNi9IZWlnaHQgMS9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0KE7z9f9Mv+51XrtKlWYX7wC58Ig0KZW5kc3RyZWFtDWVuZG9iag01MiAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDEwL0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAzL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQp2Gx2o7cOPDq+TDQplbmRzdHJlYW0NZW5kb2JqDTUzIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMTMvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDQvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrUe7QGqJyOrckbj2+MNCmVuZHN0cmVhbQ1lbmRvYmoNNTQgMCBvYmo8PC9MZW5ndGggNjUyL0ZpbHRlci9GbGF0ZURlY29kZT4+c3RyZWFtDQqiYPH7K2rZAVo69mMR7XiNga6676AxVxNmyz1OT/Ilt3oOZrMNlP6ciiuxXd/BCF27Z1fuIOoL0YX+lKIUI8hg2sRsKP+Otw4cl9ayzcNm7ikulOjooEl6Od4qEbWNfzrwrrTT9g9epPGo6KuGqqCR09P7yPTKhAUQRwQn51T/GbowhxquGQHiaFFh83OB7l60Nit8frXjF2npOcB3/tK6dB1HRttvOyhvafd+vcPWXB/mJTKhpUj6+7miErnJTSQyPR6ILRhFMYIEX0zjWue0mfTtnZOVO4xbipVppZJTJOo0wm0+nWCWH6hFVnQxTD0rt6b9GebvT2zbfuDJJiksh+OJ43jFpnb1UJBIad+jfL3Xxrjb7fURB7R3i31asHURm51vmCbraWrH56ZQoLzOJ3B7IrS4Hd/wEEDy3SVh6PKr8sllaY0CGVdqeE9Ka0EDl83ewk3WmOPUuYg4RpNxy2o2fiUSYqz6GTuqy3c8XLA4VrTS32Rp/u5BwLa7ENa2rJ4cr9Js3UOgyRPT1VT19EOo+xvAIBCGUYJuXh3NqWmWezp2z4R88Ni63ET47cSCLqjLo1uvw+3i8hBxlY335LQNqMREJH+d8Fhph1ZxFUYgsomwkeJUEqTwiBQZESYZ+UNet2tjftapGUvb6VrdasXfL19fG5bYpvCh5ydj+5P4dTv30cJEcj+A7FvNGEnBPko0D/E6TGPN5tUxC1cnV6qKGi0/BZm+tI3DEc8DDV9W+0/zt3wlCZrCNuqQfAFLP76hIZOxhJAos/8CfLZhNUVt41g3JZSf/3ZzDoiey1v7uF/edGtwrwXvB+H5jJYb9vlZ2QrCz4nb7uAABszeVZFKIajTmVEaJLQuDQplbmRzdHJlYW0NZW5kb2JqDTU1IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMjU3L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ1IDAgUi9XaWR0aCAxNi9IZWlnaHQgMTYvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NChpohTZjv/uuB4D2AhX5+ZArRMXY5OoCLFsUh8jiAkx2+vyyuCPOLD/2e7bdZDmgkbJbyYwETS/6jbFXyLZazsgyPZUIUlZWMUsxSN6VIUfVeOU65/yE6VlBhFhrtfrkST+0TT5n5q9noh7T8U5T+tp9oJ/LW32dXpv+v6e5p10KhVIiuqqZ3C1GTNQQZFBvU8nUzVwImUBxbkNuAjeDpy+C/Dk06AjH4aOmoduXBa8ofIzN4h8xF3Nkv4BCn8hcTExuGavpShP3rUsoF37ZHWif68zr2vexCjD1OdKmGvBhGfTrpObTQ//+vnRiuXZ+zTr09AWhefMQckNSWI/AD18EDQplbmRzdHJlYW0NZW5kb2JqDTU2IDAgb2JqPDwvTGVuZ3RoIDQzMS9GaWx0ZXIvRmxhdGVEZWNvZGU+PnN0cmVhbQ0KUqjq877zW70VgnNr19Tdxcqj8kRnSdIEhonF+uk4r2iMKIUhJs8uEsdb65g8K1f1/NYtB7mfq4Zr0dCK70oJB0ldLmNG0KbmDhFPXSUogRoSvYspWSnKWPwe5+F3YsZ/ppPI9zhlafeyOnoNEQuIimE3oQjNLY2H9mWYlFCxxMbw09hgKBvF1dRCKqQvkpmB/MLZxr5W8oElBfura6PQ+8C63pOe2utKD/wsNWdrYuwbStjROXGGRH0QcXHLLf8HltS+SRhUqVgSplG9KgJb2WamH4ufk+4CUAvRa6ytKXjsx5jRsT8HU0akgEXvpTKeXC6suNN/TF90i8sKq+9hdYd5SS/HbdscW5Z7pIH6eJlWpP34Po8OzxlukC2mzWsF5Dc72ZJiCE9kkCJFb3V7wl1bQOnctkslAjqHfSYFyCZUbTXzV+hCzAYjuw06k9UEcgoVf+XfTpHeQWHHXYFfk5NQuOmSoRv7EfQfkiaVvxGCvPe1BgNV+3dczRGXvHExC/J2asE82HQLfSP4avt7JGxQl+ZVmPHwNhlEk840igKuOu99APu8KFPGToYP200NCmVuZHN0cmVhbQ1lbmRvYmoNNTcgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAzMjk3L0ZpbHRlci9GbGF0ZURlY29kZS9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NCAwIFIvV2lkdGggMTY3L0hlaWdodCAxMDAvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCjFtWBVjTQbEXFa4C645dIZuypTg+SKb6BuSfKSzH2F2D89iUO6EHRFF/SK7MxOgVbivNYjOHWGizk9RFCVRSTVLwn8sM3AcYdPsJc0IgguUqXig9HyXsTRT+hADSeK3kLRVqE5zEnDkEPlvIvizbBmX/goT6eu7Kg1Gu2iFXn33vNwi79DbUKiCnWSAVA4bzNo4QSxCoW5r7EGvDx/oyb8T0h2fYayiFNxRQEZa2BvFnuq8Pa8Xb59ylj9EFu9LaytBwqEEqaKTALjyNCQU+G6TRCsojRtVNGS9V7uAJ5nzgxYjP72dRTs+q+YULMufi0ACWvegIXvX7QNtB0+g3tOSbDzbkXdY5AdzPdv6XfKSFtSdKhZI9YK+SR+e7h4BmgzgPB13DLoDvgf1WTHf/nN7LxfVc65HnXLbppiY2xB3ES5ZuCbVDGvtcQcPSqGIjzdPcHl0jsd4MAcrd1eacznLUxvq5gpJxbmP/mRSeDvm6Vc4/cvUNXFRY9Rg3wyl6binY73hPz0Xni68sHESftbakPYGefo+yEyvOh9ChYYw3tnDOsrArtu64oirHQb22AtS3PSESYzk9l6YWngog0WWuTbGVZvPzR7mh2o9Zbc6PCEcDvw/AF3gvlhHuoyzS8LuWbnJgOrk1NgY+C5VwJqPQmnk9pfRFSc7k10QFTUEzVoCrpljST0JXybuloAwp39RMzvbqHbvy0s2x9SBqtbxvINuC/j1I4FMFb/0avCcQFqj3O5BdrxFcQbNmpOAk36YF/XbyY8skEL3cEFfx5BL6+4qcxNJwCw1BY1zjSHq2jYlG9P0rBR6HyDBzc8Pfh94jUZDNEWtlU9IpXbnias3gldJ6riDHlhLR2/QPBk5sEqNVOB4Ci2KMbCFhrbyAAgy2TuYy0ESvRv5/7j9xfzIcQn7EyaiUDDoqoRdn+YJX/1vFvJykI8ws4+BLrvdpWil87lQ6JwrVCBeoaBzgbhHi1SLnbyXHFebl0LLs/6+i/dzeBxqt773XWgDNe9lgUBcyq1sB99X6Zmnhga41OxoB6meH6tH67BEDQ7TiaQ+lVx9mZv/gEA8q79JsDsnIp9+eJH4Ig7v6SExWP0TFLqvNQxWMMjGqUC2XrC0PB3YxTMfLDKstaCJr5uJ7Z+UDaUkd7jqHTHGGnwb+sFVxpHrNeSZ++Z/ANPhZQXGBYo34ojQaDD4v3FB0Bcz/Lp2dAHDPUeui5rGpdAb6bQ2vZ6tLAUMmFawOCjqT450xHWig/mSKQWNDsj/+8ssqkJndaSPyuLFOn1qXPT+GFgY+LriUt7+Sp6pmRwIeWL1dtrhgEeVewkWnvHvFpZdzfa65hzZUpz0xRDFlQQ+TtEC4UvpZExnIlgEf8rL2gz2JQovL9dusZzepEPuvsoNXS5hIbRUJJcxZIwX7WdGKfKzrT2WfVIc4PkUGj4KiG5IXGoODy7p1WrqHj6X/49HNO1TOxDosBaHiovgqpyKEvySgjfQo7k0xO+AC/lq2FrhR4HXKVr95oeYOAN74neYJ7g0kKHEOQMs89Xa1g7jAMJ9rVg6J+QK9M4tkOwJlVJLiT6Zxedw4/4p9zP2Ft2GsTsQIhuEuqiXNT5qkt2bTUL1KdJyUMb6xHnlEUzfBeQb4Qg6F9vXSV0tjpL4lHwKIQFqud382kFQTbZV/djUVWNU/v8gy713ROAMsnW5CSJiAhzxbj0l2CEOegVhPXH4CcI/KUuV4INlaNCAETVVg1LpVKvMPblZGD25saKgUY21l49aTQplwi/iA8DdIY+qabyw7Ywy0K/Au8jcU/dGh28/JxMkxOPkixos9sAt85S8l1uDm0Mdfp6DrKEN5FmE1gXxqPsF79rySZCKKHjujBvwvm2FO8GUsaBaZ83cgRfc/I9zb1bpw989wwzhahZiFzmUYaKii4q9RubAIJUXETL9rJkDrFk+UA9VXrzqFgSqNuRHnMeCvrv9v03gO1avZne70KrP1TzRR+qmpd8qWuhzXfjWbVp3CMdEWP4peE6Loe45qY/LH78PkgLjMnX1qLyGw0RPZ3EQl4YwiIr5E87nmLQ+lxtOAjdMTZwCSTTGlwqj+DdI/JLfDBBRXcLvCr625+7haPwhdMcBfe5ttaEYXc9k4n+iAru1WVZ/RXDgFHUgzPDa+UhArK5cITpzvtHlcoyPif67X3/AlN0Q0ikSXqfimREqWFyo0IQ3ON8n8z0aeRlp55GqlpWLbkrjDBiIVWkBbRn475csOu8yAy4UENnPsxVXmETSqpQscFO2XpwVNzoQh4EkKADpe2yNMakNoftdv7Eo51oxWm3US9uSpJt65ny2HCHv/JoM9N0VSN8oAlc05p4aAuQe+gcBC5oXDi28NNGtUXX3Lvi59Phr47jdncjJIF5sR6DoKidQ3lVdBJvZBDjSJ4wYmItkS1oW3jNt9gNcMkS1KQjdJ2Vn+gYNB7ElnQSRizZUoBVfUI/gBSoI6UFZKOFjH8xQwLxWKtfbv8/szf+tuh3ceYsxAll3aQp08xOxx5dvTXqGa5joB8ZqQIOOqmPOJZ0n32UY3u4geJSDSxHDaElsuiJaavwaJZOrqYhhOWLgQTok3yVWG3GecPe7oQGNqDfe+gnwqD6e5h1jM+fS+ZKb4PoS42/amL90BZT2Gd/0yaULtsYl9Hw40RVY8SJhCk4DZWTdSmP/qsg391dGqSV3k/xWm6nkaBzeGvn9VnWIlXT5miPzrlOu9uKYYsMMz1ERb+2LnGftVWNKVi5xo0jH6wg8FdBtyalpU/Py/A1lPCAh5hVHEhRms4mG/o7K9zb3/fbxo3anTkgnhmANMlYKcAIOPSPTK5EpTw/qfUKXYs+zFjUBN/XIGf/nmsJxISy79WXxh1x7oBqUtjqD1BZWlCdJTO35+kTCdMUdph2ubaHdCBILYYgEHpt7ESgERf7Rb7iwszYBhWoov8mjBlCB/COjJBCc5gZr8Xj7gXPIV+i5czSbs2BTizBJJo/RP8vpmh6lrk//Ds+KhnTrjvNuO/q4WyHKncoc5tMeG3+bz4XtWeboWAHEpCTcQ9PXYtubjFCb4Nw4bcX/YUTZBp3sLY2XSNbfTdGQ/m0w3uJfoflpidUWYiOQjibT9i2ar0Uhh13y9XBAkQMWYFMeRGBKjclX/JqBHAzaVVwIOL+n+8GtGxf/c83ymnOhh8EsE7RCxo3CIHQpwCjJSrfuwgKQ9l3FdawOc726dnCZd+tDItVpO6Wle+BQlN4tU4wlfHNqIvH5YBpa/VPhBKO6Gm+9JeWxHKjxl+4J+fT9id7ei6HGPlEFAHMJZB/8Yzv5ucwB1IGHinC+ugMYWRCer55QPKMG1zk++BK30cAhWAWBn4rQCr336YVbEDRHB5TXA4Wt75YtMSYEb+nUsOjNh4tZWvWIE5FkeaGs6dn5Bac4m23CgQdfaf8bh4iH10IM8hC9A7qQU/HunhdVJmPs9vwPZwbfPVBmkMy4MitnyLUlXh42cCZvrFnagd1p/mDugZ+sekcIoRUJdbBoiGa63Vj2xC7n1PSbA/5yEA1FoSq40rROdKy303AhZTwkTl7M4i6/4lN7jaOfh2y1F3/feDAmktm16EcKoi9o2B+IV5GK0RJc7pl3KgL0+7RHiJy+28Br1OCZjRuZshFm6pxhz65B4vOhBQXBT5kL1TiCZ3fzsI6Ln0swYUEsosR6L1jEh2VEzY+7lSGFMD3Ly9oA7y5nS9+rKLGK81VOwD/1UMSZ6/bE/2LpJuN61eKIJTJwNTQFHobZz2+m72BeDWTJSBodD+DlCnK762NV2yuhUbKJtVdOICF/I3RwdMjCrmgX5LUv7foxxy/Bc7s/oxPOgkji5ifRCLd1XF8AmJJKg09jFmzImttYCx4roXNkg3740dxdT+i7zocpnevwZahsfjTjSK4rp3KiVD+HfCcVKQQiEdOBSOoQSvdoKBZSYYqTbnLvf3WXomNzwfJkt3TKBaLeclXqz6/sQeFemTPCMIfV1RtX/+9dsOs6/sYDuWuhJzPBVnounjQGIkDZJHn5t3e15VB6AvT6SieXFlt3su0iuatqZNOIJWTEBVqka2ydu5CS9KMzjwZCWEroIR8tQwFu7UfsYp3upGvBSmJD8cSoVNX+/xk8Y2/k+lMRQZ+It/xwa6YnaYkW7EhDcQSaOPqvOXyXQx0y/REW78v1wPeTZbvjKIDsUXD+TSnDSZIDvk7i7tj/SxThMNEx0ag05JjdattC2S9xXELmc68xgCM65WAF96IuXq9DSZcjQUHadOyG6PJWQPBa4qn8NiQLcmOTz2gnuR99xa9KqlAUAbz39FxrWYOiZTVZijxt+AW76rWv/Ix1XT/ZyDpZYsNcQl5/Ml8RQuHYzS/auqCI/3PLA9Jy0zvvtg0KZW5kc3RyZWFtDWVuZG9iag01OCAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDE5L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAyL0hlaWdodCAzL1R5cGUvWE9iamVjdD4+c3RyZWFtDQo3R633u5PILuNh2uqR/GEFIj0vDQplbmRzdHJlYW0NZW5kb2JqDTU5IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggNy9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggMS9IZWlnaHQgMi9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0K14/pGKyXxA0KZW5kc3RyZWFtDWVuZG9iag02MCAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDcvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDIvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrN3Ds5BHkkNCmVuZHN0cmVhbQ1lbmRvYmoNNjEgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCA0L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAxL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQrx8DB4DQplbmRzdHJlYW0NZW5kb2JqDTYyIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggNy9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggMi9IZWlnaHQgMS9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0K9/8xai1TaA0KZW5kc3RyZWFtDWVuZG9iag02MyAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDcvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDIvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCiN83Skmd7gNCmVuZHN0cmVhbQ1lbmRvYmoNNjQgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCA3L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAyL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQpDpbHuCaveDQplbmRzdHJlYW0NZW5kb2JqDTY1IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMjIvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDcvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCpWdrC9mCwFGKGCEbsqwKNeqVxg8KHkNCmVuZHN0cmVhbQ1lbmRvYmoNNjYgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAzNi9GaWx0ZXIvRmxhdGVEZWNvZGUvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDEyL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQocFK2eTep6QT3VCJxIOHFA+gnI+1+BcI2BUUGW2RcDv546RggNCmVuZHN0cmVhbQ1lbmRvYmoNNjcgMCBvYmo8PC9TdGVtViA4OC9Gb250TmFtZS9BcmlhbE1UL0ZvbnRTdHJldGNoL05vcm1hbC9Gb250V2VpZ2h0IDQwMC9GbGFncyAzMi9EZXNjZW50IC0yMTEvRm9udEJCb3hbLTY2NSAtMzI1IDIwMDAgMTAwNl0vQXNjZW50IDkwNS9Gb250RmFtaWx5KF+vZcvwKS9DYXBIZWlnaHQgNzE4L1hIZWlnaHQgNTE1L1R5cGUvRm9udERlc2NyaXB0b3IvSXRhbGljQW5nbGUgMD4+DWVuZG9iag02OCAwIG9iajw8L09QTSAxL09QIGZhbHNlL29wIGZhbHNlL1R5cGUvRXh0R1N0YXRlL1NBIGZhbHNlL1NNIDAuMDI+Pg1lbmRvYmoNMSAwIG9iajw8L0ZpcnN0IDIyMy9MZW5ndGggNzU1L0ZpbHRlci9GbGF0ZURlY29kZS9OIDMwL1R5cGUvT2JqU3RtPj5zdHJlYW0NCuHeOJVWuXuaQHbFnrGKXT03oU6smBFhfS93b7sBCLbXySjhfkCnbLzeyt0DpTdfVlO+q6IbUXSkI6uVismF1y4RMUfoySMeggpzANKCh4NwYogF2w2mQmQnVexWWSL7jjWxPT2MSyGYg5sERMyA1ZgbvKZEFph2XqZ2qwm868dkLFSy6UNyHE2586X2PbmUfKjS39ucCv0jrgI/Vi9MpNUe/cUJxEQh62R6+lvd3toOMBTKkrhc1u1R2JE/Xxwmda0LkamoAS4U1c3ShIXGmenxecfNhcrbVq4LjhtOGCsQL51h5NjHIr728ZoStoeVqFBy8JKPNdA9VbJ3MTqbkJXqPy22MfoZWkQmSpUwepVaYWj2zcxJruiOFFLDZ+stFf7i9Ktuqxpqhv6efDSitRfS4hkoP9zjKfu5GJ4q/MoDSskttQxcVLsUCnN9ZeKqlpdaQmycXW8PJ6+5ZL0AIS18SEvt1t87P4dvruzHlIvEumN9t5DPfiY+ZLcWotjJX7sH/OxoxdnABdRTXCB2yEyWUDihngAVK3gEfY0WESccDlO7eiNC7GXjGE4UJEqmJ6nFYh2i8A65kD/PTaodQD6A0TT8oi3rEXN8deu6ufXSP8yvgZRFskrFfn6I+VY9n/gscEfeuDdNwmlgk9QjSl3OZ5dzwA1TB1O9L4M7ROoD/UKXpeP7JpfRUfGceud/ERuNFquZgVEZOkXRUrSNrXOd95+jkmbnXH6RL0bZw42uVj+xA+87CaW1/3c4olVLxgXO10ZqR+NijgHGz1YF68CTwZlY4RVzznExSTfcaPnuN6phXo6USQucm+q/kuG20RHQgPjuYw1Cp3Jl+DOLxEmtYF0CXI/png+Kz8sLu3MLtVoxzne2k+uWRo9cIEe8DwV/z21ffoIqmb4WsL7BMXhnN55KQ4g0CxoGY+ZriAYhqmKJNq9GnN6ETfizZ5IwcaSJV8QtgCfYgqFB9T+IiaDzFrgT03vgLt8XwDnYngVxiZ3xDQplbmRzdHJlYW0NZW5kb2JqDTIgMCBvYmo8PC9OdW1zWzAgMyAwIFJdPj4NZW5kb2JqDTMgMCBvYmo8PC9TL0Q+Pg1lbmRvYmoNNCAwIG9iajw8L0NvdW50IDEvVHlwZS9QYWdlcy9LaWRzWzQwIDAgUl0+Pg1lbmRvYmoNNSAwIG9iajw8L1N1YnR5cGUvWE1ML0xlbmd0aCA0MzM2L1R5cGUvTWV0YWRhdGE+PnN0cmVhbQ0KMQgenNdwYPGcKbgb7y7D/AU9xKz98Xy1oqY8W/ajCftQClYJSlGhO7iAuVi0e468LupW6QvJ8W76EGlmqDmOLY8NUTKV1tUFQbvyPeuPnCtYHvNYyG60LUqpmYzci00rxupS4CNdhiS2gaodEXEcQpkkVkUif/EQdxZR5G4YhP//rqKEmyLHfkZBlBqMZ3b2xxZ5gMF3SJOcm+gWxRjMQzkUklGqrBVMcB1q3d8CdMtUVYXi56yzgJrYL/meC8qYvK/zNY+FlekN0jz2VFuP+P3IJX0sJmFeq9dZ3Ec0wJUoIgnv6aTi7GqZVpoOoF4z/3yUPAwFk6upj4VJTpSaTbROiqGKTqQvl6jAOaIOKhP0TJmomH0p9lthiQe2+L0TbsDo4fXd0dUYtXTCMn9dQU8JHraRpvaO/TCM2ag4YXuvKNYe4zQlt0nW9e3g1B4VoqS4akR1pg8OdM01LSCtuv3sE6W+JInz+LWA/Z6tCDN463AHj10zuA+8y7E8CVmAA0Zjfs8Cuk3qvuL7FEPPp+GLKQ4+HULwF4rWLl/HeVWF6/rb5GC8VDvooh0BR7guYUOB1w66R8nKfkyiPiCxgaMNrWhSeusVSxmvk1RBJYJNuZU52WC8oPyIKMYd+iHNO8Lvp2Z7VgOY6gP0iWN8jsYQfOTncI1QUk7lqL25FTfDkzV5SVI6QVNXDwGoTCv+j2Nkny5d2VxMgRpj3lP6oZ9RdZJn5KF8hR0y3UYpVRvTE0vHVr4aQHDDzsg3bk4+rT8e6xT9W2gXgxu6a7o9CLF0EWCyamktnVDQEtF1wqrROVC8fi4H//hVr9HR+jbJoz+u8xYlPzEzMHDbQoSaIif+P8SNeMPQSt2DqK0YZ19/GcczP6EbHMRAOcPQuaz6EMHWijN10BHQRkoxAuVydp6Y9+gYoDiY1NHUnFugl8ooHf5W3nkacWU+Vr0JQyoKzCcLyw9LjwOEIBhpIwQ/i0odI3Nks1kccHoMePi3mFWfMKuEU8LVN9lA5Lsn4LXYtmNOinB88GWSD33QJ73XvZ6SJTnnh3w9/u7pT4a0P/vRvK9wp2Zbic5SCyit2RzmZqAKSoq3DrRPfCNNH+tjw0k/lVb8a5/dVkIXOkRESWlfCWNd1EWLU2ZinXkQyIYGiTn5Yy/icUuXTedX/IK3uuqSTky7feVz/1S/G59BuFBw22smS9IciTK639TihhWTbrKvG0cXt1aOvQCi/l3xlKj9BjxGA925jE2mE2axLNnEkxItb36iUUTEjrH+TYCb3ZBWTkNSSZrE1Z6jn5D31rcqO7BuyDTHagm4WLjuVcKkQ9PUyNaip4mPaH1fHtQH6yPeUIZdEsISoEfuWzRWo9uDibPY1owkwzfwYihTfkqEJbr3+GgYOuQ6nagQYGd0GIYs1EaoK4cT4Gs15VrTDcoITYeUS9/uXPJrHuLGj/Q++pdPm9xug6fPtmbhlqTYFiyaVrpoGZEfB5Q5NY0NMn3r4rwlsW/wFRcmCE686kZMNoA8LXAdYBTJ6KdSNTDgLuJwE9BORkTubvkCXlt5zBLn16i3tnCWIMKllIDB7q3H6us4LJ+1lSeGgwmPOl5PaI6qKX6k6gmA+qoRcApIA+HwkVSqUmtx4SVs/0z3jZoDeEVqZ6LTEjkbSxuWmYb4py6HYZsI2vqW0hQ+UsipCP5hcQvuLAEMq1A6AR0Nkjny/5zh5bd0ExHmXPpNJi/bIudHnnZWVL3TbdodqWPMedCubJQoiMp9MnwwI/YDnyvaKhDDHi3wnEhakkRuDBUcmX4HtkYmiZpSon0qNitWGZLKiK9+GVj3JfcY/UWdWF0yqOFMRDBUtG5uOginI8mBtq7lyPb3/Qgtp6sxJ9AXrXJ1ouzD23xpySXw/8DjF+V71gE6PT2NBPCrNIGj++3MKAIKVRQvtUPtLyZtoqw55kfNTlw4wPaX6UPLUtZbuOBdbYGudGVS3BzmoLPajjh52xf4UUMh3owVM03g27Qfx2iD9V7mOtkIFGIX61kf09a1B3QUt33u91eboaMHvA/hgENUlaawMha6uron6AoJ0MdsHY+bmMbStE30s8maeDif8CvJ/1LD6oEvSDvCRt2YcwOuMRAqV4HR2z9LF7vClSVdI+fmbBYYr6OIDD7Vu1u4KvC0ui0pkFsLX04lDatLlKnz+0oBIx9qdPbzf5LM0cE4Q2pwVrakphNwhXoMysSNULfmaoSv84QjC7NdipnZyJ1BaHjc3UG9GMSr1KTMWw4IEa3U5XG+z6qWFRsi9xe6mHPMmhsvK3kDvvAmhkCkccjsqSpCm6MZHsTV/ln4Nkgh7nKIUno7eS3LBhHxrxbP1E9bou6iFS22xwFj/vzkvIqvtldbNnBE0OBaocgr8AknfZ+L+M5qjEMzE04Y4Aw0OERf2WC1y1pBeW/8B8QZLhhwFgvt2Q49adEu+kHYAS5GBJ5FShXDqS9Tm9t0gygGjoSENDJkTSe0Wsba2rZfKGvOYC9rwLltoo0qdUQMW+0N9hcj3QYOZFXQkhopJ/zzZ60H4yRwbE5yVd408e+NDwOWdbBAN9dwmlPuL9eE5/lbOunlGiyL987x44n1P7bs0vtVFe5BQ11DCUBR8izyhRq2EaG0FJbe79QnQNtvbJpJQSvR4wowY1XZQPtx02w0YfSlisWsWnFI2DE+XzXFuUeueJ3MBwCm/q8pwpU8UGPKqXCgerDh1rBiDUAqCUHBlLfiVtb831TSndCrvUDKTjZ3mAV1A6RtYQAbVy+kCZwxxsfyRM5Z1iby/csFRxGsS6pDLyTCchZ/vFILhOmOwE+SbVsc6+P/2RYdss7DbN9RB4QEIoMWVWPlz6wtUuVf971erasIbp841q3rXWmgUmJxaBYxyi9gYmqGjRS2rb/6kwZKJctX10TLz1WEehPQCd7/rQHgnx0DBNYrhpE50DNvae865UtCVwgQmea9JRKN1EtuN73yMNf9EoeLVlm7FharbEGZKt67p2feh4t+VszR0VjBA75R7r0yT4KgdRqb1xZzV9uoiSt11A7SiV0jK45ZusED2JfipPsK6K0J9B6HI0TuObutumjHDnGvpiZw/brpG3t+oxbFUXOcP2YlykW+A1PO6CWoGscHyDZIYFTDALAeNoWZXYJdcCXj/2azle4g3CVJoge7rTJqHoC2XSD92aEktCopA7dE5bTCeEo9mkk+WRKwFqM98S8Qo8V5x+pv/9qXSAZ2HIktYDxer/K+RT//yTOEIuMsNrkw89/eg3rKSvQtKYpAjiOu/wcgmhxjkj2JQiDaLFoqxRj2vYC6ja/FJDMhD5w/SYOv05vE/7BYYDDjaLL7TnRPwkSfR9nMHJZlhbaF74FDP5tJF+4mlN+XxgEftIn3hwmgp0iRId907AUfeHQR28f9lDjE0zfOfNALje7HCf0S7DtEcJAmoyHI3E5+AztNo3lMLEWkSS+GLJUuLFNisxZKGi3G1iGHWeISTw89Xboe3XhoJPsaS9myOPaOKT/tmjnkqoNVuHHACcCpwp42BaNkdQf/zRZSEF6Yw3KCUr9w6xYbePYkgkKHuZubql7ovYmWbBjHh1Zkn/nprWo1IKpOgfWwE7XQPEKMo2QQDJYhBI3cUS4tl9UyShfWfiXKn+sM+AkX/HlxVMi5bHVKOomG5flJBBM8Lh0Oeu+vidT4CTntlKEBNnZTIuHfMwU7E/D+rwxOy5tpJdkbZQXjWOx2gtylFZnwYPdf/0YEj7ZI+LsS5+lVk/wlnu1F54ChAPg7Xr2oxAv3msVDfzLH3CJlZ0vtQltXwOvc+U7rRlS+bxu+xobQV/RUu2G40kDt7Z77QXLJJ1KdxXIKBpyjFX45R1v6fE0zfD0pnxp6Y6jF+pw/vjKgh8ow9K0ziFwdQ9JOaGWrzg7RA32q+EnB/SHMFePibv6Mc3QKAKRVJ6xG87GiFTX/0oZ1SzFSKMfDpvj/LnKv9lOMOy9g2eS0+IB03bRyk4W2tsxUPD/BAR5tcUUhWjmnnFglWyyCsrricoLPNMCZInswPHffq2NuoLnyBlp8T1G9a3UzV3eeyTZHhfTOCocOPr2EF3BAv/pyvpIemUSuHnWEkxEP34cZbUyjqyUu9uLQc5xpfpdwyIaX0bpI948u9OvFtjkp0pWew5fwUczulThvgKocrzsuZqHCvvbVwxALgxmNA/6VgACw5bVKwInOI0jvzrfMQL5UffqnCS1gDVXULDAlONOa4JXUjHTZZHqWcCqqU3D/vDgh2fMyvSFhLryvqe/O/wmzcxKbXsVFZH7/c20xWEEISvdeeBpFOOEtdYYvWh2JjkGKfUvpsRw1ivbyItcbpE86OZ+zV1KKf4UZpEtiCbaov0zEf0WMTrRRcX6l+xXcbK8KXBejwefHBV9b0FNLPNMji8wL59Jo/uPif5N3bMJ43RSfWRp7GgeqiN0zZajqn3DHA64KwfL2WeMIjSJNIsQn04uqIXno6JAl39mD4PLjGgue0SnKdVA15/oI2Doj84hmNBahiFBJLYRJD5Zs8OdR43cKVF8O3UNb3UMVYa6pKP/oLUDv+H2uHV0ieRSemuowX6D07kJHUe2VSFvAnqKkSmHgAWMFJZ877TKFptFLorfXnNDzyr/SZmbycHtUks+bvmTdijB1qRVCDX4lh4+vJeCuaf3X7Z72M8hD/C4E2V6nrK9Z20Nye4m00UFUhJhAd0esTMEhOqkqeLJP1bKxRnE3t1/si0WJdH6BcuS++HTeKgVsga5UTBjksZTXsKoVM1yEqc4jiLlEb1uYmx6BpEm+oyic4f6TbiODaaldO7SOK+8fQlhGS52n1PZrJz6TL5ANvhhdFeoejxm6Xich5F+3e0Rcjn1UlDDweY6vJ25wIVc4ExtxPcI4gyph79+ucgI0m1FfvYPTWmTRWN/aidZZW4x30xUvxREHf5ekcZKud8pT9mI01iHmhMbn9V7pTdJjMOjOMRj6m8xNIyrg7OGm32XnwzwvD5vRE2Tj+IekstVuIzeT0CGcyn3xTa/QmFUQwxojLZVhJYRp6zKHkWPMGXJtuPBo+CZ8gMP7EYPW8gmgFS6BYlxHVby3D/YkyZPA8d60U9adLSwAom8alUSN4Qlo4jB/FtE5JJQ5hrbyLGVR1YC96YSu2eiqw4G6je5Jsxq6wCeek3Qqji5oi6wrHK4+odDP24hp35c/LzcTEhdDI0JtXa0jxiyfjlgmmAMoQ5KmqQpnKxAXZ8FyOREIA+YzeS5rsUSAY/fOJsN3+hGhs+lXrc7MSMc9GeHIOE3DTL+dSEyP2YBsgYOkWrL66eeC0bSLg5PE7k8zO3z+GjP/+EiRgDQvuiA8vNdr3gvEdu3axbuZbdZ5lIZ8vaBIlcbKdOOs+J0wz/jOXAiW1IxRAfS6TeCrpOUwRhdTwQ3cE5pcthqzMFBNUbs8pJ4Ootm3yiAwyM5eEEsg+OoVwEmJ88ZN9G7ce3WIsf6icMy0cZFtYkVFsAr1QVeR+uIie7qRQBMLvwoSaus9GRRJWxEcWypYOHaqqBXK4awdlfmpjuJgXKzvCaLOk8l7oQkU7lTsJ9t81H3nTwPRTwlUqk5JSLRKeaJ2Q0EsLj4FSIGYzXWV1u2ZBmDEPxQJHzUoyaYIFEy1xX8+7GRc4hdH7scEryKZgMy9FDsZ767dkaGKo9th22XrYD/lyFkPJHKreDUaZz7o5truPZrS5WtkTZiN6FXLyNnjjNejtIK6yddeMjgefMi+l/cewm23LHqNwu/63Dv5X97JOt1QVH9pIg0KZW5kc3RyZWFtDWVuZG9iag02IDAgb2JqPDwvQ3JlYXRpb25EYXRlKNDuzzx6LTreeHXR9+2NQs4ZgHsT9rPpKS9BdXRob3IozaGWYyQ1To04IJK2tNwcihTfKhSD57urmcjZBM8pL0NyZWF0b3Io1bePY1wodH7IGAWmj7jSF4wUh2IE6LTurpfOkDzOiAgpL1Byb2R1Y2VyKNW3j2NcKHR+yAxcKJO2sNUem0aQexr2rfvo0OvZBcWVG3fzKS9Nb2REYXRlKNDuzzx6LTreeHXR9+2OQcgZgHsT9rPpKS9Db21wYW55KNO7i2k4e2eNJjXArb+ZK4tf3yIpL1NvdXJjZU1vZGlmaWVkKNDuzzx6LTreeHXS8O2LR8gpL1RpdGxlKLSEuUpqQW+bPGGwo77cKT4+DWVuZG9iag14cmVmDQowIDM3DQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMTQxMTUgMDAwMDAgbg0KMDAwMDAxNDk2NSAwMDAwMCBuDQowMDAwMDE0OTk4IDAwMDAwIG4NCjAwMDAwMTUwMjEgMDAwMDAgbg0KMDAwMDAxNTA3MiAwMDAwMCBuDQowMDAwMDE5NDg0IDAwMDAwIG4NCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCnRyYWlsZXINCjw8L1NpemUgMzcvRW5jcnlwdCAzOCAwIFI+Pg0Kc3RhcnR4cmVmDQoxMTYNCiUlRU9GDQo=\",\n    \"filename\": \"pdf-test.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings/rates-file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","rates-file"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43e15d9e-366c-40e8-912e-e116656ef2a0"},{"name":"Delete rate file","id":"4b8c5bcd-3633-435d-8c7b-b00fabc80174","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"file\": \"JVBERi0xLjYNJeLjz9MNCjM3IDAgb2JqIDw8L0xpbmVhcml6ZWQgMS9MIDIwNTk3L08gNDAvRSAxNDExNS9OIDEvVCAxOTc5NS9IIFsgMTAwNSAyMTVdPj4NZW5kb2JqDSAgICAgICAgICAgICAgICAgDQp4cmVmDQozNyAzNA0KMDAwMDAwMDAxNiAwMDAwMCBuDQowMDAwMDAxMzg2IDAwMDAwIG4NCjAwMDAwMDE1MjIgMDAwMDAgbg0KMDAwMDAwMTc4NyAwMDAwMCBuDQowMDAwMDAyMjUwIDAwMDAwIG4NCjAwMDAwMDIyNzQgMDAwMDAgbg0KMDAwMDAwMjQyMyAwMDAwMCBuDQowMDAwMDAyODQ0IDAwMDAwIG4NCjAwMDAwMDI4ODggMDAwMDAgbg0KMDAwMDAwMjkzMiAwMDAwMCBuDQowMDAwMDA0MTEzIDAwMDAwIG4NCjAwMDAwMDQxNDcgMDAwMDAgbg0KMDAwMDAwNDIxMSAwMDAwMCBuDQowMDAwMDA2ODgwIDAwMDAwIG4NCjAwMDAwMDcwMjMgMDAwMDAgbg0KMDAwMDAwNzE3MiAwMDAwMCBuDQowMDAwMDA3MzEyIDAwMDAwIG4NCjAwMDAwMDc0NTUgMDAwMDAgbg0KMDAwMDAwODE3NiAwMDAwMCBuDQowMDAwMDA4NTY2IDAwMDAwIG4NCjAwMDAwMDkwNjYgMDAwMDAgbg0KMDAwMDAxMjUxOCAwMDAwMCBuDQowMDAwMDEyNjY3IDAwMDAwIG4NCjAwMDAwMTI4MDMgMDAwMDAgbg0KMDAwMDAxMjkzOSAwMDAwMCBuDQowMDAwMDEzMDcyIDAwMDAwIG4NCjAwMDAwMTMyMDggMDAwMDAgbg0KMDAwMDAxMzM0NCAwMDAwMCBuDQowMDAwMDEzNDgwIDAwMDAwIG4NCjAwMDAwMTM2MzIgMDAwMDAgbg0KMDAwMDAxMzgxOCAwMDAwMCBuDQowMDAwMDE0MDM5IDAwMDAwIG4NCjAwMDAwMDEyMjAgMDAwMDAgbg0KMDAwMDAwMTAwNSAwMDAwMCBuDQp0cmFpbGVyDQo8PC9TaXplIDcxL1ByZXYgMTk3ODQvWFJlZlN0bSAxMjIwL1Jvb3QgMzkgMCBSL0VuY3J5cHQgMzggMCBSL0luZm8gNiAwIFIvSURbPEMyMUYyMUVBNDRDMUUyRUQyNTgxNDM1RkE1QTJEQ0NFPjwxNTM0OTEwNkQ5ODVEQTQ0OTkxMDk5RjlDMENCRjAwND5dPj4NCnN0YXJ0eHJlZg0KMA0KJSVFT0YNCiAgICAgICAgICAgICAgIA0KNzAgMCBvYmo8PC9MZW5ndGggMTIzL0MgMTI4L0ZpbHRlci9GbGF0ZURlY29kZS9JIDE1MS9MIDExMi9TIDQwPj5zdHJlYW0NCjA+v2UNc4Zmn6u4IiQguoMZnwg0NH0ymtRAWZUZqNfHLCiMQS0kyMfdiuvi04hlG2GJLNJzPFccsqvk0nZ7AHI4uCBvKj3L7sGXnAk1tHgOFgzOJjqRioIZMmIdwW51On/CmLK6+gsvbo3ivOa3aWeWo5GxxRL0DzNdRQ0KZW5kc3RyZWFtDWVuZG9iag02OSAwIG9iajw8L0xlbmd0aCAyMC9GaWx0ZXIvRmxhdGVEZWNvZGUvV1sxIDEgMV0vSW5kZXhbNyAzMF0vRGVjb2RlUGFybXM8PC9Db2x1bW5zIDMvUHJlZGljdG9yIDEyPj4vU2l6ZSAzNy9UeXBlL1hSZWY+PnN0cmVhbQ0KeNpiYmJkYGJgYKQ3BggwABbZAF0NCmVuZHN0cmVhbQ1lbmRvYmoNMzggMCBvYmo8PC9MZW5ndGggMTI4L0ZpbHRlci9TdGFuZGFyZC9PKJ6imv11rrw5sF4j3R+ObJ1lZ2RcbuwZDDZAs8jdl58OFSkvUCAtMTM0MC9SIDMvVSjj41C/LnKptSQ/7nBNpOwWAAAAAAAAAAAAAAAAAAAAACkvViAyPj4NZW5kb2JqDTM5IDAgb2JqPDwvTWFya0luZm88PC9MZXR0ZXJzcGFjZUZsYWdzIDAvTWFya2VkIHRydWU+Pi9NZXRhZGF0YSA1IDAgUi9QaWVjZUluZm88PC9NYXJrZWRQREY8PC9MYXN0TW9kaWZpZWQoCM1RrvFnz1Fb5exxrGnDVyk+Pj4+L1BhZ2VzIDQgMCBSL1BhZ2VMYXlvdXQvT25lQ29sdW1uL1N0cnVjdFRyZWVSb290IDcgMCBSL1R5cGUvQ2F0YWxvZy9MYW5nKAm5TsuSKS9MYXN0TW9kaWZpZWQoCM1RrvFnz1Fb5exxrGnDVykvUGFnZUxhYmVscyAyIDAgUj4+DWVuZG9iag00MCAwIG9iajw8L0Nyb3BCb3hbMCAwIDYxMiA3OTJdL0Fubm90cyA0MSAwIFIvUGFyZW50IDQgMCBSL1N0cnVjdFBhcmVudHMgMC9Db250ZW50cyA0NiAwIFIvUm90YXRlIDAvTWVkaWFCb3hbMCAwIDYxMiA3OTJdL1Jlc291cmNlczw8L1hPYmplY3Q8PC9JbTEwIDUwIDAgUi9JbTExIDUxIDAgUi9JbTEyIDUyIDAgUi9JbTEzIDUzIDAgUi9JbTE0IDU1IDAgUi9JbTAgNTcgMCBSL0ltMSA1OCAwIFIvSW0yIDU5IDAgUi9JbTMgNjAgMCBSL0ltNCA2MSAwIFIvSW01IDYyIDAgUi9JbTYgNjMgMCBSL0ltNyA2NCAwIFIvSW04IDY1IDAgUi9JbTkgNjYgMCBSPj4vQ29sb3JTcGFjZTw8L0NTMCA0NCAwIFIvQ1MxIDQ3IDAgUi9DUzIgNDUgMCBSPj4vRm9udDw8L1RUMCA0MyAwIFI+Pi9Qcm9jU2V0Wy9QREYvVGV4dC9JbWFnZUMvSW1hZ2VJXS9FeHRHU3RhdGU8PC9HUzAgNjggMCBSPj4+Pi9UeXBlL1BhZ2U+Pg1lbmRvYmoNNDEgMCBvYmpbNDIgMCBSXQ1lbmRvYmoNNDIgMCBvYmo8PC9SZWN0WzIyMC42OCA0NjcuODggMzg5LjQ2MSA0ODMuODUyXS9TdWJ0eXBlL0xpbmsvQlM8PC9TL1MvVyAwL1R5cGUvQm9yZGVyPj4vQSA0OCAwIFIvSC9JL1N0cnVjdFBhcmVudCAxL0JvcmRlclswIDAgMF0vVHlwZS9Bbm5vdD4+DWVuZG9iag00MyAwIG9iajw8L1N1YnR5cGUvVHJ1ZVR5cGUvRm9udERlc2NyaXB0b3IgNjcgMCBSL0xhc3RDaGFyIDEyMS9XaWR0aHNbMjc4IDI3OCAwIDAgMCAwIDAgMCAzMzMgMzMzIDAgMCAyNzggMCAyNzggMjc4IDU1NiA1NTYgNTU2IDU1NiAwIDAgNTU2IDU1NiAwIDAgMjc4IDAgMCAwIDAgMCAwIDY2NyA2NjcgNzIyIDcyMiA2NjcgNjExIDAgMCAwIDAgMCAwIDAgMCAwIDY2NyAwIDAgMCA2MTEgMCAwIDk0NCAwIDY2NyAwIDAgMCAwIDAgMCAwIDU1NiA1NTYgNTAwIDU1NiA1NTYgMjc4IDU1NiA1NTYgMjIyIDAgNTAwIDIyMiA4MzMgNTU2IDU1NiA1NTYgNTU2IDMzMyA1MDAgMjc4IDU1NiA1MDAgNzIyIDUwMCA1MDBdL0Jhc2VGb250L0FyaWFsTVQvRmlyc3RDaGFyIDMyL0VuY29kaW5nL1dpbkFuc2lFbmNvZGluZy9UeXBlL0ZvbnQ+Pg1lbmRvYmoNNDQgMCBvYmpbL0luZGV4ZWQgNDcgMCBSIDI1NSA1NiAwIFJdDWVuZG9iag00NSAwIG9ialsvSW5kZXhlZCA0NyAwIFIgMjU1IDU0IDAgUl0NZW5kb2JqDTQ2IDAgb2JqPDwvTGVuZ3RoIDExMTEvRmlsdGVyL0ZsYXRlRGVjb2RlPj5zdHJlYW0NChufMnlICdQfjYcndDyzqHmjgA3tKskYMKxrN8qdFclEw4kX6BzSv31HcGeS2XIFURVV5WTYeB8J4GddvYKvnJV74/gIHB/ubGPR48bNi3br4p8Gh2nfi782qymqRPjYEA8bld2qCtmkMMY6N+zxMzcA4j4CyThx3SrLRMj/IYuodNmI3rOSm46OKh3yyuh3fha1DItTnfXgX7NCHENqExWtvoARUCBvwVi1veKODrxC0Voe6fVGOEb7Keju8PoVgNwDmyPZ2Sy985tqOMbnnOQj1hwa0l8LcRrbmxPtwI7pKDoDXh5/F0S8MVRII0yVd/YIZE+duVrxJJiqIbWwNi2k5zvzQ6WLZt03xaqe04rhOyTZw8rY1pb8yrs9aWy0FM+sqaPN2npOV5ACTNNuPstnX2DKTAaOTH8jyRUmp9WsD4djBlPQ47ouWGMHe0TRVpQyI0rXYTo+P6b+KpEcpRQQx/NjN3gJI4jBM0k8+RpehR1jJndwOeH238NX29+2mjp/iBPSmW3TA7OzCpyZjZGqDwz8u2wYQFsBd5vwKD4WK79+1drdKzynnCF0/FqybZHsMRP45m5Sfa01fLb8RnCMJCIqUnu73QfSUaJjbUNsf+ZjPIl7fnX73U7+wPX9OOPBiIae+S4QRfB+BaHvaSiK4ZBgbsrCOIS3rrnLlz13vBqn88wKXFU50NbAKpeY3W+cTs6AyUbbng7IQS+swapS0HSecpB8R/1eois/GvQTgA5VH/8f21x1Fc7LXwxFTeaP2eSFqQrv+ofWbk8JYKKvd6RW4k17q3x3c551ljbQ/qhHxA3tCjDPzfbY9CQVihynZ8kwLdeEKQmkfBZLMHqRNIB0XY85H9J9jo9ILBNrm3KC6iIIqWjxkzZDeVk0hKmI9ubMpDb2bWXGua8PfPSX0SVGxMuO/+iCLdvuhjC4IUqqnERGkXh/7oqBxNiGVVxfW9uzAem2iQ+EeKXHQxvSmziPDo/6yyRS+05Sp6ceNRuiVog6OBFCMLFt4TsT7TXiifkyF9ycKZCHpeP6PoMtK/fdQQJqBIcKGikS5a5ZfcAAyt6M1An9TQnwZkVXN8qxf5ajd5ryS2ukqMv0RgXAG1OcbzAnRFt3i14MM2MfgPs5scooVO6QCJld6OUHTFS3HrLFXrQAIfleyHW7UXzO0d58MOhy2KhZFU+Ma9WJ/7HCAIceDyhoOyQzsP0xalUESKzLnM9EsOIAKCEGa/lREkkVE4Eg29blsrEiGpwvzT+hAxHrBYp5RLPaoNrE/FxD0trkHqja9vqzL/XNNfpy/LBRN8tXtd+qhOO7vbgVFbmU1BOKaU0BUg+Iqu6e/KZuyC5/BUX8I05KICN2gYEKyhBTxL1r43Kt4WqZehGgF+ZohfAB9Fb3MFDl7I5yXyO4UYSomO2lN4uQn3/nATMA+qEVZrLAczF9rMVQdKwZohzVqn1QaTjEjKve54Q1y5VV9ryohHYNCmVuZHN0cmVhbQ1lbmRvYmoNNDcgMCBvYmpbL0lDQ0Jhc2VkIDQ5IDAgUl0NZW5kb2JqDTQ4IDAgb2JqPDwvVVJJKFQsqLFqdcW4w3p+XHIiL0SAv/ECYgcLy+Eq265/YidqKS9TL1VSST4+DWVuZG9iag00OSAwIG9iajw8L0xlbmd0aCAyNTc1L0ZpbHRlci9GbGF0ZURlY29kZS9OIDMvQWx0ZXJuYXRlL0RldmljZVJHQj4+c3RyZWFtDQqh6ClJa8WT3poZ3FZU3dl7atbnzHGZPJ7QSlBq2WbLKHo0F59U3TDeumUIecJBc0/aF9dEateAc5WaW4oUA36LYcp4VU6EkojuLKFTZnLt5kV/DoGxxt0k4fFaUazJxtC4snbf0ldVYNGCCoz/g8AhlOrMAsPEbU14qhi+me23f/DlYspMo87JFJrj+akbpN9/mCJtY2B7htv4IB4Fq9OlAZuxkOuNKQTfzrh97yw1j8VIgILBBt8QKmOD5eRXe38dH1pCTZkvSI9Ww7anUH6bOvtFyRlB/fCOiwAH/ls9wtUw9RazW30d+WOdGUuR2AqTrjTQn2hC24B4Rzq9k1rRzNfTsidtQKpu9F7j4Yreq3UpRYDk36LDW9MCRd+A7IWNxMaKHzIw2AjEeTeQjjvksKQv/Wz41PtMTXh3IPDPz1Nth/7H9zQg2O9T9fYVddlKtj/S0SoVIVlV7iGYrrHCnTOrrAiGrVgjcurrWsTiFm898Kw4pOEyNu2q7PALSR7J2NkLd6Tl2IGDegyateS4xEQgQ/k0XUzWrFELnES7N+lj5O8y6Nb1fEHpChXe1dDUPzFup2dvkhBzvLmiJGIf21wJina5lZ63alXcu9b0jTd3nRh4gFtKWD9TU5IsByJYxm4t1c4uQcOEKavRdeMkJBtu7s7t3XanR/Hb1rHTpzymUPeQzFn1vwNXF9BerueurGJb5oq08wYRVL79SQWMOJyzPqpViEimRIPRxI/CxTS1T9FiroY7Z3knlbr6ydXO2h0/Z6sEHd2o8YxgvxOgN6+Bqof+lwLbVKkxJfRoiJnG599Op9XFtP+ZFbVbctlhgeESMQP04xelo+DUXkMpOr9pLZ7hH1lEUprXAjEUZ7rxVlAve7/M8GtL/6EqPP23ogErLAOHQOPsSXyYnAeEL6yzUp6NgAKS1urM3ICh685HrRmJEruYejxdIy+wDtG3KL9TRrS8iQui9owA1fNaHdYzY0zcEqSM2QpCbVhK9SffNvXqB6xqvhlbupiMCwDf+dA+oRobswcc/WQcwP/HN9lSTKAqXWkb/lyL42MTOOac552VCoxdQGXNRi3mzUWqrnfxM2C2ZNm5edTwc1L8VyfBEVU0HSHN4VwYcWuWa+VunKnQqjsgSPYN0KhERpMBwtWUHH9d5xGm5iiycst+37Jmhwt7sdHObSp8BgQLBoftEh0IYEbCj4yeVUoFOBTak94wpBFjRAOalOmhfL+zKd1xa6isUYtDdj3iMijX4BqPZ7k/hN3fxwsUckk7NvaH7kIU4ZYp714GTGjs2eyv2da3ajwlPFRiyOfVesPv/Rvo20BTRwWLEZr7w1EI3jfTrv0QR+PNdOgoNteNMPNy1Km4im7+U0zkWJvmnETR6sxtFR8oZpoFgW5yQM5kD69pKXPI3NeH2CUAoGVFXydVFGAqO4FjGrnZWZZqAkYNtCJc+lww2j41cGn8V6rTimJNrsFGdcSybB6OLGAUYCd/5KAOVS7fAluuL/MNuOq1JC1rS+aiF+EsjqTGsrquRtmXFkiZp+k0aR2JDCyE/cczYkquGapOLOW01/zEEXq1a61rGb+mzGCuJVLv8Jh5gbHW2RIFZzjyp+V8OOMPijWY20hwPsUkE0MaBm6InSVCWO6F8yeGT053jlgurO19taBGi9yL3/fNDBWDV4FvU2e6Q2rpyf6hDigffr0Ld1Up2TXHpMZwZVFV0iI4uPFUOoF8aCD2Azr+2bQLJf9ObToXIJVljnm0sb+btALTa2/ARDCJMdPgz12PJEBeFtzypP9KSnqR9ltrlwTeVgbfqmRR4V79WCd8RH0QHkX8qdmE8JNl+7Cm+/KiISSQ12pkEn2wVE9arbf10VR8zmuPcvXjjC/NRYIUY9540dXMhEuuX9/tPvk5LseHIsO2pnc2SOSIV+FY07QOwMETGHh/fRyZh2bpPNsb4bKfwBv05dl7oajp4bMoz3VHi3urjpth3kxtgHi6JY4oSCRFOyr6kCZlfz1MUIotPIUg/aU/7H570/Q9ESTVbMe3+bsL7R9zikBqVkmY9YrtT88UpxTWKkiECrhoTQg53cOTs5iZs+2hITV4fNFtIW1fcR7XhmtvLF3hQBuEoK04VGymQPOE+ZUEpiRCfPDLzUkgZWqpLbHgx/tMQ8LhmbTSBl+xSrMzCEGoPx6cVP5I8k8tyR2FIeFLA8wk7Rz6PwarLef4+f3Xp/0M8q/RUErCrOkUtm0mqDzO1/6dImwaoJP156DH4b3ys0wb6vBbXL7UXhoKxsesdsSKsTdmsTrWdd/7S+UMPQnJZrR9XjHFqBNoBfLWfJ94uqP5UsO03Kd8aFRUvaUSXCz0pMK55rZoB/dO3WsaVBZKuo45TiYtqIi9YGoOdj0+oEar9NpwAGErLcD5JiEon60crhc+TH2f4I8rsULU/Jil9DxrEj6Cz8TQnNwkV6vuOkwtcM6Jawsp3gpWU5WfQrha4C9mA9o0UQm68wN8ghQX/VCF6X0k/rrLtwM947CUotYJtW8PIPU34FfuRouJnK6lbCwvx7gFmq1cuIq+12QkPIqmBG/8vout961K75QH3E5rn1WtwvIkPwDdBbhFv7P2am+Tcnj5hMsrhZRd/hX+ATDSEBclAWHsqZ/aPcBIw4J5h5KOO9xBTrZdTg4cLW6hRCN5UWG/iOsiLiBc4wLiLhB4sCVxwdD6TqsqQtjHO7urv1W0mBTNeS01bs0Jv8mZ3bVPBBsRDsVnHqT/fkYNqUPZXvCJl2LkPI2hKtkR8LB4fCMjh28cm4MUOMvSpM79AcZmS3kM713rRBy3KwX44DlpOu33MVKofg0Vw1nwVm3I7752igruW3M/7w4++WS2CXhINCDZeacb4G9TxEVJSopuc28yTnYSpJSwswQBxuZFBdjEMVLKgn48xz8LJG2rZ5Zrn2tyjfVGd8EFC8DGRQD8KSVuBuJ1s9U3nIuSzPYGTfz0RoHI2Q/8piWewBiFaGU9Ik5nhRDtVmbXVq1Dh/0hY/tndFzsRWuMIOndJrUUlrf6Y5HLJUCu/TLaBF7dQBLNCnaFgmrNpedHAdikPtIgzhM/hz9h6UZBmz/i+IyVUe05zFy4WFmg8KiC5M7Kpu+33QCwJ21794HEObJHQEs2p7d6Ro45Bq2XtPrLNPguQUPNx2Rwu+XKFt21ru6a4xloQDYK9H/d8pwPhbDrK0y7Ju5+MysnsuVsFf3vRbWqJss7ow25860Zy4u4hw5HLumFvj4cUYEBDT6HlHRD1lxQsMEkymMf0gVNhBNld0OwmjsG2/LRdpv6Hs+M8dCx9KbGGB9gHzV18SHSdL6Vt8RjdWDYKeKS4HVFOnRq1rpYfwIts6Idy5DojlssUKAy0Brve+3JdjAPo8N1/Su4150lxwz8nQJHNGTobxOhlki+4VhnHGsDO/Ye2vtzDQplbmRzdHJlYW0NZW5kb2JqDTUwIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMTMvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDQvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrSjq6/frWLrN3EjNQENCmVuZHN0cmVhbQ1lbmRvYmoNNTEgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAxOS9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggNi9IZWlnaHQgMS9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0KE7z9f9Mv+51XrtKlWYX7wC58Ig0KZW5kc3RyZWFtDWVuZG9iag01MiAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDEwL0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAzL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQp2Gx2o7cOPDq+TDQplbmRzdHJlYW0NZW5kb2JqDTUzIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMTMvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDQvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrUe7QGqJyOrckbj2+MNCmVuZHN0cmVhbQ1lbmRvYmoNNTQgMCBvYmo8PC9MZW5ndGggNjUyL0ZpbHRlci9GbGF0ZURlY29kZT4+c3RyZWFtDQqiYPH7K2rZAVo69mMR7XiNga6676AxVxNmyz1OT/Ilt3oOZrMNlP6ciiuxXd/BCF27Z1fuIOoL0YX+lKIUI8hg2sRsKP+Otw4cl9ayzcNm7ikulOjooEl6Od4qEbWNfzrwrrTT9g9epPGo6KuGqqCR09P7yPTKhAUQRwQn51T/GbowhxquGQHiaFFh83OB7l60Nit8frXjF2npOcB3/tK6dB1HRttvOyhvafd+vcPWXB/mJTKhpUj6+7miErnJTSQyPR6ILRhFMYIEX0zjWue0mfTtnZOVO4xbipVppZJTJOo0wm0+nWCWH6hFVnQxTD0rt6b9GebvT2zbfuDJJiksh+OJ43jFpnb1UJBIad+jfL3Xxrjb7fURB7R3i31asHURm51vmCbraWrH56ZQoLzOJ3B7IrS4Hd/wEEDy3SVh6PKr8sllaY0CGVdqeE9Ka0EDl83ewk3WmOPUuYg4RpNxy2o2fiUSYqz6GTuqy3c8XLA4VrTS32Rp/u5BwLa7ENa2rJ4cr9Js3UOgyRPT1VT19EOo+xvAIBCGUYJuXh3NqWmWezp2z4R88Ni63ET47cSCLqjLo1uvw+3i8hBxlY335LQNqMREJH+d8Fhph1ZxFUYgsomwkeJUEqTwiBQZESYZ+UNet2tjftapGUvb6VrdasXfL19fG5bYpvCh5ydj+5P4dTv30cJEcj+A7FvNGEnBPko0D/E6TGPN5tUxC1cnV6qKGi0/BZm+tI3DEc8DDV9W+0/zt3wlCZrCNuqQfAFLP76hIZOxhJAos/8CfLZhNUVt41g3JZSf/3ZzDoiey1v7uF/edGtwrwXvB+H5jJYb9vlZ2QrCz4nb7uAABszeVZFKIajTmVEaJLQuDQplbmRzdHJlYW0NZW5kb2JqDTU1IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMjU3L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ1IDAgUi9XaWR0aCAxNi9IZWlnaHQgMTYvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NChpohTZjv/uuB4D2AhX5+ZArRMXY5OoCLFsUh8jiAkx2+vyyuCPOLD/2e7bdZDmgkbJbyYwETS/6jbFXyLZazsgyPZUIUlZWMUsxSN6VIUfVeOU65/yE6VlBhFhrtfrkST+0TT5n5q9noh7T8U5T+tp9oJ/LW32dXpv+v6e5p10KhVIiuqqZ3C1GTNQQZFBvU8nUzVwImUBxbkNuAjeDpy+C/Dk06AjH4aOmoduXBa8ofIzN4h8xF3Nkv4BCn8hcTExuGavpShP3rUsoF37ZHWif68zr2vexCjD1OdKmGvBhGfTrpObTQ//+vnRiuXZ+zTr09AWhefMQckNSWI/AD18EDQplbmRzdHJlYW0NZW5kb2JqDTU2IDAgb2JqPDwvTGVuZ3RoIDQzMS9GaWx0ZXIvRmxhdGVEZWNvZGU+PnN0cmVhbQ0KUqjq877zW70VgnNr19Tdxcqj8kRnSdIEhonF+uk4r2iMKIUhJs8uEsdb65g8K1f1/NYtB7mfq4Zr0dCK70oJB0ldLmNG0KbmDhFPXSUogRoSvYspWSnKWPwe5+F3YsZ/ppPI9zhlafeyOnoNEQuIimE3oQjNLY2H9mWYlFCxxMbw09hgKBvF1dRCKqQvkpmB/MLZxr5W8oElBfura6PQ+8C63pOe2utKD/wsNWdrYuwbStjROXGGRH0QcXHLLf8HltS+SRhUqVgSplG9KgJb2WamH4ufk+4CUAvRa6ytKXjsx5jRsT8HU0akgEXvpTKeXC6suNN/TF90i8sKq+9hdYd5SS/HbdscW5Z7pIH6eJlWpP34Po8OzxlukC2mzWsF5Dc72ZJiCE9kkCJFb3V7wl1bQOnctkslAjqHfSYFyCZUbTXzV+hCzAYjuw06k9UEcgoVf+XfTpHeQWHHXYFfk5NQuOmSoRv7EfQfkiaVvxGCvPe1BgNV+3dczRGXvHExC/J2asE82HQLfSP4avt7JGxQl+ZVmPHwNhlEk840igKuOu99APu8KFPGToYP200NCmVuZHN0cmVhbQ1lbmRvYmoNNTcgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAzMjk3L0ZpbHRlci9GbGF0ZURlY29kZS9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NCAwIFIvV2lkdGggMTY3L0hlaWdodCAxMDAvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCjFtWBVjTQbEXFa4C645dIZuypTg+SKb6BuSfKSzH2F2D89iUO6EHRFF/SK7MxOgVbivNYjOHWGizk9RFCVRSTVLwn8sM3AcYdPsJc0IgguUqXig9HyXsTRT+hADSeK3kLRVqE5zEnDkEPlvIvizbBmX/goT6eu7Kg1Gu2iFXn33vNwi79DbUKiCnWSAVA4bzNo4QSxCoW5r7EGvDx/oyb8T0h2fYayiFNxRQEZa2BvFnuq8Pa8Xb59ylj9EFu9LaytBwqEEqaKTALjyNCQU+G6TRCsojRtVNGS9V7uAJ5nzgxYjP72dRTs+q+YULMufi0ACWvegIXvX7QNtB0+g3tOSbDzbkXdY5AdzPdv6XfKSFtSdKhZI9YK+SR+e7h4BmgzgPB13DLoDvgf1WTHf/nN7LxfVc65HnXLbppiY2xB3ES5ZuCbVDGvtcQcPSqGIjzdPcHl0jsd4MAcrd1eacznLUxvq5gpJxbmP/mRSeDvm6Vc4/cvUNXFRY9Rg3wyl6binY73hPz0Xni68sHESftbakPYGefo+yEyvOh9ChYYw3tnDOsrArtu64oirHQb22AtS3PSESYzk9l6YWngog0WWuTbGVZvPzR7mh2o9Zbc6PCEcDvw/AF3gvlhHuoyzS8LuWbnJgOrk1NgY+C5VwJqPQmnk9pfRFSc7k10QFTUEzVoCrpljST0JXybuloAwp39RMzvbqHbvy0s2x9SBqtbxvINuC/j1I4FMFb/0avCcQFqj3O5BdrxFcQbNmpOAk36YF/XbyY8skEL3cEFfx5BL6+4qcxNJwCw1BY1zjSHq2jYlG9P0rBR6HyDBzc8Pfh94jUZDNEWtlU9IpXbnias3gldJ6riDHlhLR2/QPBk5sEqNVOB4Ci2KMbCFhrbyAAgy2TuYy0ESvRv5/7j9xfzIcQn7EyaiUDDoqoRdn+YJX/1vFvJykI8ws4+BLrvdpWil87lQ6JwrVCBeoaBzgbhHi1SLnbyXHFebl0LLs/6+i/dzeBxqt773XWgDNe9lgUBcyq1sB99X6Zmnhga41OxoB6meH6tH67BEDQ7TiaQ+lVx9mZv/gEA8q79JsDsnIp9+eJH4Ig7v6SExWP0TFLqvNQxWMMjGqUC2XrC0PB3YxTMfLDKstaCJr5uJ7Z+UDaUkd7jqHTHGGnwb+sFVxpHrNeSZ++Z/ANPhZQXGBYo34ojQaDD4v3FB0Bcz/Lp2dAHDPUeui5rGpdAb6bQ2vZ6tLAUMmFawOCjqT450xHWig/mSKQWNDsj/+8ssqkJndaSPyuLFOn1qXPT+GFgY+LriUt7+Sp6pmRwIeWL1dtrhgEeVewkWnvHvFpZdzfa65hzZUpz0xRDFlQQ+TtEC4UvpZExnIlgEf8rL2gz2JQovL9dusZzepEPuvsoNXS5hIbRUJJcxZIwX7WdGKfKzrT2WfVIc4PkUGj4KiG5IXGoODy7p1WrqHj6X/49HNO1TOxDosBaHiovgqpyKEvySgjfQo7k0xO+AC/lq2FrhR4HXKVr95oeYOAN74neYJ7g0kKHEOQMs89Xa1g7jAMJ9rVg6J+QK9M4tkOwJlVJLiT6Zxedw4/4p9zP2Ft2GsTsQIhuEuqiXNT5qkt2bTUL1KdJyUMb6xHnlEUzfBeQb4Qg6F9vXSV0tjpL4lHwKIQFqud382kFQTbZV/djUVWNU/v8gy713ROAMsnW5CSJiAhzxbj0l2CEOegVhPXH4CcI/KUuV4INlaNCAETVVg1LpVKvMPblZGD25saKgUY21l49aTQplwi/iA8DdIY+qabyw7Ywy0K/Au8jcU/dGh28/JxMkxOPkixos9sAt85S8l1uDm0Mdfp6DrKEN5FmE1gXxqPsF79rySZCKKHjujBvwvm2FO8GUsaBaZ83cgRfc/I9zb1bpw989wwzhahZiFzmUYaKii4q9RubAIJUXETL9rJkDrFk+UA9VXrzqFgSqNuRHnMeCvrv9v03gO1avZne70KrP1TzRR+qmpd8qWuhzXfjWbVp3CMdEWP4peE6Loe45qY/LH78PkgLjMnX1qLyGw0RPZ3EQl4YwiIr5E87nmLQ+lxtOAjdMTZwCSTTGlwqj+DdI/JLfDBBRXcLvCr625+7haPwhdMcBfe5ttaEYXc9k4n+iAru1WVZ/RXDgFHUgzPDa+UhArK5cITpzvtHlcoyPif67X3/AlN0Q0ikSXqfimREqWFyo0IQ3ON8n8z0aeRlp55GqlpWLbkrjDBiIVWkBbRn475csOu8yAy4UENnPsxVXmETSqpQscFO2XpwVNzoQh4EkKADpe2yNMakNoftdv7Eo51oxWm3US9uSpJt65ny2HCHv/JoM9N0VSN8oAlc05p4aAuQe+gcBC5oXDi28NNGtUXX3Lvi59Phr47jdncjJIF5sR6DoKidQ3lVdBJvZBDjSJ4wYmItkS1oW3jNt9gNcMkS1KQjdJ2Vn+gYNB7ElnQSRizZUoBVfUI/gBSoI6UFZKOFjH8xQwLxWKtfbv8/szf+tuh3ceYsxAll3aQp08xOxx5dvTXqGa5joB8ZqQIOOqmPOJZ0n32UY3u4geJSDSxHDaElsuiJaavwaJZOrqYhhOWLgQTok3yVWG3GecPe7oQGNqDfe+gnwqD6e5h1jM+fS+ZKb4PoS42/amL90BZT2Gd/0yaULtsYl9Hw40RVY8SJhCk4DZWTdSmP/qsg391dGqSV3k/xWm6nkaBzeGvn9VnWIlXT5miPzrlOu9uKYYsMMz1ERb+2LnGftVWNKVi5xo0jH6wg8FdBtyalpU/Py/A1lPCAh5hVHEhRms4mG/o7K9zb3/fbxo3anTkgnhmANMlYKcAIOPSPTK5EpTw/qfUKXYs+zFjUBN/XIGf/nmsJxISy79WXxh1x7oBqUtjqD1BZWlCdJTO35+kTCdMUdph2ubaHdCBILYYgEHpt7ESgERf7Rb7iwszYBhWoov8mjBlCB/COjJBCc5gZr8Xj7gXPIV+i5czSbs2BTizBJJo/RP8vpmh6lrk//Ds+KhnTrjvNuO/q4WyHKncoc5tMeG3+bz4XtWeboWAHEpCTcQ9PXYtubjFCb4Nw4bcX/YUTZBp3sLY2XSNbfTdGQ/m0w3uJfoflpidUWYiOQjibT9i2ar0Uhh13y9XBAkQMWYFMeRGBKjclX/JqBHAzaVVwIOL+n+8GtGxf/c83ymnOhh8EsE7RCxo3CIHQpwCjJSrfuwgKQ9l3FdawOc726dnCZd+tDItVpO6Wle+BQlN4tU4wlfHNqIvH5YBpa/VPhBKO6Gm+9JeWxHKjxl+4J+fT9id7ei6HGPlEFAHMJZB/8Yzv5ucwB1IGHinC+ugMYWRCer55QPKMG1zk++BK30cAhWAWBn4rQCr336YVbEDRHB5TXA4Wt75YtMSYEb+nUsOjNh4tZWvWIE5FkeaGs6dn5Bac4m23CgQdfaf8bh4iH10IM8hC9A7qQU/HunhdVJmPs9vwPZwbfPVBmkMy4MitnyLUlXh42cCZvrFnagd1p/mDugZ+sekcIoRUJdbBoiGa63Vj2xC7n1PSbA/5yEA1FoSq40rROdKy303AhZTwkTl7M4i6/4lN7jaOfh2y1F3/feDAmktm16EcKoi9o2B+IV5GK0RJc7pl3KgL0+7RHiJy+28Br1OCZjRuZshFm6pxhz65B4vOhBQXBT5kL1TiCZ3fzsI6Ln0swYUEsosR6L1jEh2VEzY+7lSGFMD3Ly9oA7y5nS9+rKLGK81VOwD/1UMSZ6/bE/2LpJuN61eKIJTJwNTQFHobZz2+m72BeDWTJSBodD+DlCnK762NV2yuhUbKJtVdOICF/I3RwdMjCrmgX5LUv7foxxy/Bc7s/oxPOgkji5ifRCLd1XF8AmJJKg09jFmzImttYCx4roXNkg3740dxdT+i7zocpnevwZahsfjTjSK4rp3KiVD+HfCcVKQQiEdOBSOoQSvdoKBZSYYqTbnLvf3WXomNzwfJkt3TKBaLeclXqz6/sQeFemTPCMIfV1RtX/+9dsOs6/sYDuWuhJzPBVnounjQGIkDZJHn5t3e15VB6AvT6SieXFlt3su0iuatqZNOIJWTEBVqka2ydu5CS9KMzjwZCWEroIR8tQwFu7UfsYp3upGvBSmJD8cSoVNX+/xk8Y2/k+lMRQZ+It/xwa6YnaYkW7EhDcQSaOPqvOXyXQx0y/REW78v1wPeTZbvjKIDsUXD+TSnDSZIDvk7i7tj/SxThMNEx0ag05JjdattC2S9xXELmc68xgCM65WAF96IuXq9DSZcjQUHadOyG6PJWQPBa4qn8NiQLcmOTz2gnuR99xa9KqlAUAbz39FxrWYOiZTVZijxt+AW76rWv/Ix1XT/ZyDpZYsNcQl5/Ml8RQuHYzS/auqCI/3PLA9Jy0zvvtg0KZW5kc3RyZWFtDWVuZG9iag01OCAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDE5L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAyL0hlaWdodCAzL1R5cGUvWE9iamVjdD4+c3RyZWFtDQo3R633u5PILuNh2uqR/GEFIj0vDQplbmRzdHJlYW0NZW5kb2JqDTU5IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggNy9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggMS9IZWlnaHQgMi9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0K14/pGKyXxA0KZW5kc3RyZWFtDWVuZG9iag02MCAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDcvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDIvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCrN3Ds5BHkkNCmVuZHN0cmVhbQ1lbmRvYmoNNjEgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCA0L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAxL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQrx8DB4DQplbmRzdHJlYW0NZW5kb2JqDTYyIDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggNy9CaXRzUGVyQ29tcG9uZW50IDgvQ29sb3JTcGFjZSA0NyAwIFIvV2lkdGggMi9IZWlnaHQgMS9UeXBlL1hPYmplY3Q+PnN0cmVhbQ0K9/8xai1TaA0KZW5kc3RyZWFtDWVuZG9iag02MyAwIG9iajw8L1N1YnR5cGUvSW1hZ2UvTGVuZ3RoIDcvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDIvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCiN83Skmd7gNCmVuZHN0cmVhbQ1lbmRvYmoNNjQgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCA3L0JpdHNQZXJDb21wb25lbnQgOC9Db2xvclNwYWNlIDQ3IDAgUi9XaWR0aCAyL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQpDpbHuCaveDQplbmRzdHJlYW0NZW5kb2JqDTY1IDAgb2JqPDwvU3VidHlwZS9JbWFnZS9MZW5ndGggMjIvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDcvSGVpZ2h0IDEvVHlwZS9YT2JqZWN0Pj5zdHJlYW0NCpWdrC9mCwFGKGCEbsqwKNeqVxg8KHkNCmVuZHN0cmVhbQ1lbmRvYmoNNjYgMCBvYmo8PC9TdWJ0eXBlL0ltYWdlL0xlbmd0aCAzNi9GaWx0ZXIvRmxhdGVEZWNvZGUvQml0c1BlckNvbXBvbmVudCA4L0NvbG9yU3BhY2UgNDcgMCBSL1dpZHRoIDEyL0hlaWdodCAxL1R5cGUvWE9iamVjdD4+c3RyZWFtDQocFK2eTep6QT3VCJxIOHFA+gnI+1+BcI2BUUGW2RcDv546RggNCmVuZHN0cmVhbQ1lbmRvYmoNNjcgMCBvYmo8PC9TdGVtViA4OC9Gb250TmFtZS9BcmlhbE1UL0ZvbnRTdHJldGNoL05vcm1hbC9Gb250V2VpZ2h0IDQwMC9GbGFncyAzMi9EZXNjZW50IC0yMTEvRm9udEJCb3hbLTY2NSAtMzI1IDIwMDAgMTAwNl0vQXNjZW50IDkwNS9Gb250RmFtaWx5KF+vZcvwKS9DYXBIZWlnaHQgNzE4L1hIZWlnaHQgNTE1L1R5cGUvRm9udERlc2NyaXB0b3IvSXRhbGljQW5nbGUgMD4+DWVuZG9iag02OCAwIG9iajw8L09QTSAxL09QIGZhbHNlL29wIGZhbHNlL1R5cGUvRXh0R1N0YXRlL1NBIGZhbHNlL1NNIDAuMDI+Pg1lbmRvYmoNMSAwIG9iajw8L0ZpcnN0IDIyMy9MZW5ndGggNzU1L0ZpbHRlci9GbGF0ZURlY29kZS9OIDMwL1R5cGUvT2JqU3RtPj5zdHJlYW0NCuHeOJVWuXuaQHbFnrGKXT03oU6smBFhfS93b7sBCLbXySjhfkCnbLzeyt0DpTdfVlO+q6IbUXSkI6uVismF1y4RMUfoySMeggpzANKCh4NwYogF2w2mQmQnVexWWSL7jjWxPT2MSyGYg5sERMyA1ZgbvKZEFph2XqZ2qwm868dkLFSy6UNyHE2586X2PbmUfKjS39ucCv0jrgI/Vi9MpNUe/cUJxEQh62R6+lvd3toOMBTKkrhc1u1R2JE/Xxwmda0LkamoAS4U1c3ShIXGmenxecfNhcrbVq4LjhtOGCsQL51h5NjHIr728ZoStoeVqFBy8JKPNdA9VbJ3MTqbkJXqPy22MfoZWkQmSpUwepVaYWj2zcxJruiOFFLDZ+stFf7i9Ktuqxpqhv6efDSitRfS4hkoP9zjKfu5GJ4q/MoDSskttQxcVLsUCnN9ZeKqlpdaQmycXW8PJ6+5ZL0AIS18SEvt1t87P4dvruzHlIvEumN9t5DPfiY+ZLcWotjJX7sH/OxoxdnABdRTXCB2yEyWUDihngAVK3gEfY0WESccDlO7eiNC7GXjGE4UJEqmJ6nFYh2i8A65kD/PTaodQD6A0TT8oi3rEXN8deu6ufXSP8yvgZRFskrFfn6I+VY9n/gscEfeuDdNwmlgk9QjSl3OZ5dzwA1TB1O9L4M7ROoD/UKXpeP7JpfRUfGceud/ERuNFquZgVEZOkXRUrSNrXOd95+jkmbnXH6RL0bZw42uVj+xA+87CaW1/3c4olVLxgXO10ZqR+NijgHGz1YF68CTwZlY4RVzznExSTfcaPnuN6phXo6USQucm+q/kuG20RHQgPjuYw1Cp3Jl+DOLxEmtYF0CXI/png+Kz8sLu3MLtVoxzne2k+uWRo9cIEe8DwV/z21ffoIqmb4WsL7BMXhnN55KQ4g0CxoGY+ZriAYhqmKJNq9GnN6ETfizZ5IwcaSJV8QtgCfYgqFB9T+IiaDzFrgT03vgLt8XwDnYngVxiZ3xDQplbmRzdHJlYW0NZW5kb2JqDTIgMCBvYmo8PC9OdW1zWzAgMyAwIFJdPj4NZW5kb2JqDTMgMCBvYmo8PC9TL0Q+Pg1lbmRvYmoNNCAwIG9iajw8L0NvdW50IDEvVHlwZS9QYWdlcy9LaWRzWzQwIDAgUl0+Pg1lbmRvYmoNNSAwIG9iajw8L1N1YnR5cGUvWE1ML0xlbmd0aCA0MzM2L1R5cGUvTWV0YWRhdGE+PnN0cmVhbQ0KMQgenNdwYPGcKbgb7y7D/AU9xKz98Xy1oqY8W/ajCftQClYJSlGhO7iAuVi0e468LupW6QvJ8W76EGlmqDmOLY8NUTKV1tUFQbvyPeuPnCtYHvNYyG60LUqpmYzci00rxupS4CNdhiS2gaodEXEcQpkkVkUif/EQdxZR5G4YhP//rqKEmyLHfkZBlBqMZ3b2xxZ5gMF3SJOcm+gWxRjMQzkUklGqrBVMcB1q3d8CdMtUVYXi56yzgJrYL/meC8qYvK/zNY+FlekN0jz2VFuP+P3IJX0sJmFeq9dZ3Ec0wJUoIgnv6aTi7GqZVpoOoF4z/3yUPAwFk6upj4VJTpSaTbROiqGKTqQvl6jAOaIOKhP0TJmomH0p9lthiQe2+L0TbsDo4fXd0dUYtXTCMn9dQU8JHraRpvaO/TCM2ag4YXuvKNYe4zQlt0nW9e3g1B4VoqS4akR1pg8OdM01LSCtuv3sE6W+JInz+LWA/Z6tCDN463AHj10zuA+8y7E8CVmAA0Zjfs8Cuk3qvuL7FEPPp+GLKQ4+HULwF4rWLl/HeVWF6/rb5GC8VDvooh0BR7guYUOB1w66R8nKfkyiPiCxgaMNrWhSeusVSxmvk1RBJYJNuZU52WC8oPyIKMYd+iHNO8Lvp2Z7VgOY6gP0iWN8jsYQfOTncI1QUk7lqL25FTfDkzV5SVI6QVNXDwGoTCv+j2Nkny5d2VxMgRpj3lP6oZ9RdZJn5KF8hR0y3UYpVRvTE0vHVr4aQHDDzsg3bk4+rT8e6xT9W2gXgxu6a7o9CLF0EWCyamktnVDQEtF1wqrROVC8fi4H//hVr9HR+jbJoz+u8xYlPzEzMHDbQoSaIif+P8SNeMPQSt2DqK0YZ19/GcczP6EbHMRAOcPQuaz6EMHWijN10BHQRkoxAuVydp6Y9+gYoDiY1NHUnFugl8ooHf5W3nkacWU+Vr0JQyoKzCcLyw9LjwOEIBhpIwQ/i0odI3Nks1kccHoMePi3mFWfMKuEU8LVN9lA5Lsn4LXYtmNOinB88GWSD33QJ73XvZ6SJTnnh3w9/u7pT4a0P/vRvK9wp2Zbic5SCyit2RzmZqAKSoq3DrRPfCNNH+tjw0k/lVb8a5/dVkIXOkRESWlfCWNd1EWLU2ZinXkQyIYGiTn5Yy/icUuXTedX/IK3uuqSTky7feVz/1S/G59BuFBw22smS9IciTK639TihhWTbrKvG0cXt1aOvQCi/l3xlKj9BjxGA925jE2mE2axLNnEkxItb36iUUTEjrH+TYCb3ZBWTkNSSZrE1Z6jn5D31rcqO7BuyDTHagm4WLjuVcKkQ9PUyNaip4mPaH1fHtQH6yPeUIZdEsISoEfuWzRWo9uDibPY1owkwzfwYihTfkqEJbr3+GgYOuQ6nagQYGd0GIYs1EaoK4cT4Gs15VrTDcoITYeUS9/uXPJrHuLGj/Q++pdPm9xug6fPtmbhlqTYFiyaVrpoGZEfB5Q5NY0NMn3r4rwlsW/wFRcmCE686kZMNoA8LXAdYBTJ6KdSNTDgLuJwE9BORkTubvkCXlt5zBLn16i3tnCWIMKllIDB7q3H6us4LJ+1lSeGgwmPOl5PaI6qKX6k6gmA+qoRcApIA+HwkVSqUmtx4SVs/0z3jZoDeEVqZ6LTEjkbSxuWmYb4py6HYZsI2vqW0hQ+UsipCP5hcQvuLAEMq1A6AR0Nkjny/5zh5bd0ExHmXPpNJi/bIudHnnZWVL3TbdodqWPMedCubJQoiMp9MnwwI/YDnyvaKhDDHi3wnEhakkRuDBUcmX4HtkYmiZpSon0qNitWGZLKiK9+GVj3JfcY/UWdWF0yqOFMRDBUtG5uOginI8mBtq7lyPb3/Qgtp6sxJ9AXrXJ1ouzD23xpySXw/8DjF+V71gE6PT2NBPCrNIGj++3MKAIKVRQvtUPtLyZtoqw55kfNTlw4wPaX6UPLUtZbuOBdbYGudGVS3BzmoLPajjh52xf4UUMh3owVM03g27Qfx2iD9V7mOtkIFGIX61kf09a1B3QUt33u91eboaMHvA/hgENUlaawMha6uron6AoJ0MdsHY+bmMbStE30s8maeDif8CvJ/1LD6oEvSDvCRt2YcwOuMRAqV4HR2z9LF7vClSVdI+fmbBYYr6OIDD7Vu1u4KvC0ui0pkFsLX04lDatLlKnz+0oBIx9qdPbzf5LM0cE4Q2pwVrakphNwhXoMysSNULfmaoSv84QjC7NdipnZyJ1BaHjc3UG9GMSr1KTMWw4IEa3U5XG+z6qWFRsi9xe6mHPMmhsvK3kDvvAmhkCkccjsqSpCm6MZHsTV/ln4Nkgh7nKIUno7eS3LBhHxrxbP1E9bou6iFS22xwFj/vzkvIqvtldbNnBE0OBaocgr8AknfZ+L+M5qjEMzE04Y4Aw0OERf2WC1y1pBeW/8B8QZLhhwFgvt2Q49adEu+kHYAS5GBJ5FShXDqS9Tm9t0gygGjoSENDJkTSe0Wsba2rZfKGvOYC9rwLltoo0qdUQMW+0N9hcj3QYOZFXQkhopJ/zzZ60H4yRwbE5yVd408e+NDwOWdbBAN9dwmlPuL9eE5/lbOunlGiyL987x44n1P7bs0vtVFe5BQ11DCUBR8izyhRq2EaG0FJbe79QnQNtvbJpJQSvR4wowY1XZQPtx02w0YfSlisWsWnFI2DE+XzXFuUeueJ3MBwCm/q8pwpU8UGPKqXCgerDh1rBiDUAqCUHBlLfiVtb831TSndCrvUDKTjZ3mAV1A6RtYQAbVy+kCZwxxsfyRM5Z1iby/csFRxGsS6pDLyTCchZ/vFILhOmOwE+SbVsc6+P/2RYdss7DbN9RB4QEIoMWVWPlz6wtUuVf971erasIbp841q3rXWmgUmJxaBYxyi9gYmqGjRS2rb/6kwZKJctX10TLz1WEehPQCd7/rQHgnx0DBNYrhpE50DNvae865UtCVwgQmea9JRKN1EtuN73yMNf9EoeLVlm7FharbEGZKt67p2feh4t+VszR0VjBA75R7r0yT4KgdRqb1xZzV9uoiSt11A7SiV0jK45ZusED2JfipPsK6K0J9B6HI0TuObutumjHDnGvpiZw/brpG3t+oxbFUXOcP2YlykW+A1PO6CWoGscHyDZIYFTDALAeNoWZXYJdcCXj/2azle4g3CVJoge7rTJqHoC2XSD92aEktCopA7dE5bTCeEo9mkk+WRKwFqM98S8Qo8V5x+pv/9qXSAZ2HIktYDxer/K+RT//yTOEIuMsNrkw89/eg3rKSvQtKYpAjiOu/wcgmhxjkj2JQiDaLFoqxRj2vYC6ja/FJDMhD5w/SYOv05vE/7BYYDDjaLL7TnRPwkSfR9nMHJZlhbaF74FDP5tJF+4mlN+XxgEftIn3hwmgp0iRId907AUfeHQR28f9lDjE0zfOfNALje7HCf0S7DtEcJAmoyHI3E5+AztNo3lMLEWkSS+GLJUuLFNisxZKGi3G1iGHWeISTw89Xboe3XhoJPsaS9myOPaOKT/tmjnkqoNVuHHACcCpwp42BaNkdQf/zRZSEF6Yw3KCUr9w6xYbePYkgkKHuZubql7ovYmWbBjHh1Zkn/nprWo1IKpOgfWwE7XQPEKMo2QQDJYhBI3cUS4tl9UyShfWfiXKn+sM+AkX/HlxVMi5bHVKOomG5flJBBM8Lh0Oeu+vidT4CTntlKEBNnZTIuHfMwU7E/D+rwxOy5tpJdkbZQXjWOx2gtylFZnwYPdf/0YEj7ZI+LsS5+lVk/wlnu1F54ChAPg7Xr2oxAv3msVDfzLH3CJlZ0vtQltXwOvc+U7rRlS+bxu+xobQV/RUu2G40kDt7Z77QXLJJ1KdxXIKBpyjFX45R1v6fE0zfD0pnxp6Y6jF+pw/vjKgh8ow9K0ziFwdQ9JOaGWrzg7RA32q+EnB/SHMFePibv6Mc3QKAKRVJ6xG87GiFTX/0oZ1SzFSKMfDpvj/LnKv9lOMOy9g2eS0+IB03bRyk4W2tsxUPD/BAR5tcUUhWjmnnFglWyyCsrricoLPNMCZInswPHffq2NuoLnyBlp8T1G9a3UzV3eeyTZHhfTOCocOPr2EF3BAv/pyvpIemUSuHnWEkxEP34cZbUyjqyUu9uLQc5xpfpdwyIaX0bpI948u9OvFtjkp0pWew5fwUczulThvgKocrzsuZqHCvvbVwxALgxmNA/6VgACw5bVKwInOI0jvzrfMQL5UffqnCS1gDVXULDAlONOa4JXUjHTZZHqWcCqqU3D/vDgh2fMyvSFhLryvqe/O/wmzcxKbXsVFZH7/c20xWEEISvdeeBpFOOEtdYYvWh2JjkGKfUvpsRw1ivbyItcbpE86OZ+zV1KKf4UZpEtiCbaov0zEf0WMTrRRcX6l+xXcbK8KXBejwefHBV9b0FNLPNMji8wL59Jo/uPif5N3bMJ43RSfWRp7GgeqiN0zZajqn3DHA64KwfL2WeMIjSJNIsQn04uqIXno6JAl39mD4PLjGgue0SnKdVA15/oI2Doj84hmNBahiFBJLYRJD5Zs8OdR43cKVF8O3UNb3UMVYa6pKP/oLUDv+H2uHV0ieRSemuowX6D07kJHUe2VSFvAnqKkSmHgAWMFJZ877TKFptFLorfXnNDzyr/SZmbycHtUks+bvmTdijB1qRVCDX4lh4+vJeCuaf3X7Z72M8hD/C4E2V6nrK9Z20Nye4m00UFUhJhAd0esTMEhOqkqeLJP1bKxRnE3t1/si0WJdH6BcuS++HTeKgVsga5UTBjksZTXsKoVM1yEqc4jiLlEb1uYmx6BpEm+oyic4f6TbiODaaldO7SOK+8fQlhGS52n1PZrJz6TL5ANvhhdFeoejxm6Xich5F+3e0Rcjn1UlDDweY6vJ25wIVc4ExtxPcI4gyph79+ucgI0m1FfvYPTWmTRWN/aidZZW4x30xUvxREHf5ekcZKud8pT9mI01iHmhMbn9V7pTdJjMOjOMRj6m8xNIyrg7OGm32XnwzwvD5vRE2Tj+IekstVuIzeT0CGcyn3xTa/QmFUQwxojLZVhJYRp6zKHkWPMGXJtuPBo+CZ8gMP7EYPW8gmgFS6BYlxHVby3D/YkyZPA8d60U9adLSwAom8alUSN4Qlo4jB/FtE5JJQ5hrbyLGVR1YC96YSu2eiqw4G6je5Jsxq6wCeek3Qqji5oi6wrHK4+odDP24hp35c/LzcTEhdDI0JtXa0jxiyfjlgmmAMoQ5KmqQpnKxAXZ8FyOREIA+YzeS5rsUSAY/fOJsN3+hGhs+lXrc7MSMc9GeHIOE3DTL+dSEyP2YBsgYOkWrL66eeC0bSLg5PE7k8zO3z+GjP/+EiRgDQvuiA8vNdr3gvEdu3axbuZbdZ5lIZ8vaBIlcbKdOOs+J0wz/jOXAiW1IxRAfS6TeCrpOUwRhdTwQ3cE5pcthqzMFBNUbs8pJ4Ootm3yiAwyM5eEEsg+OoVwEmJ88ZN9G7ce3WIsf6icMy0cZFtYkVFsAr1QVeR+uIie7qRQBMLvwoSaus9GRRJWxEcWypYOHaqqBXK4awdlfmpjuJgXKzvCaLOk8l7oQkU7lTsJ9t81H3nTwPRTwlUqk5JSLRKeaJ2Q0EsLj4FSIGYzXWV1u2ZBmDEPxQJHzUoyaYIFEy1xX8+7GRc4hdH7scEryKZgMy9FDsZ767dkaGKo9th22XrYD/lyFkPJHKreDUaZz7o5truPZrS5WtkTZiN6FXLyNnjjNejtIK6yddeMjgefMi+l/cewm23LHqNwu/63Dv5X97JOt1QVH9pIg0KZW5kc3RyZWFtDWVuZG9iag02IDAgb2JqPDwvQ3JlYXRpb25EYXRlKNDuzzx6LTreeHXR9+2NQs4ZgHsT9rPpKS9BdXRob3IozaGWYyQ1To04IJK2tNwcihTfKhSD57urmcjZBM8pL0NyZWF0b3Io1bePY1wodH7IGAWmj7jSF4wUh2IE6LTurpfOkDzOiAgpL1Byb2R1Y2VyKNW3j2NcKHR+yAxcKJO2sNUem0aQexr2rfvo0OvZBcWVG3fzKS9Nb2REYXRlKNDuzzx6LTreeHXR9+2OQcgZgHsT9rPpKS9Db21wYW55KNO7i2k4e2eNJjXArb+ZK4tf3yIpL1NvdXJjZU1vZGlmaWVkKNDuzzx6LTreeHXS8O2LR8gpL1RpdGxlKLSEuUpqQW+bPGGwo77cKT4+DWVuZG9iag14cmVmDQowIDM3DQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMTQxMTUgMDAwMDAgbg0KMDAwMDAxNDk2NSAwMDAwMCBuDQowMDAwMDE0OTk4IDAwMDAwIG4NCjAwMDAwMTUwMjEgMDAwMDAgbg0KMDAwMDAxNTA3MiAwMDAwMCBuDQowMDAwMDE5NDg0IDAwMDAwIG4NCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCjAwMDAwMDAwMDAgNjU1MzUgZg0KMDAwMDAwMDAwMCA2NTUzNSBmDQowMDAwMDAwMDAwIDY1NTM1IGYNCnRyYWlsZXINCjw8L1NpemUgMzcvRW5jcnlwdCAzOCAwIFI+Pg0Kc3RhcnR4cmVmDQoxMTYNCiUlRU9GDQo=\",\n    \"filename\": \"pdf-test.pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/api/v3/centers/1/call-center-settings/rates-file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","centers","1","call-center-settings","rates-file"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b8c5bcd-3633-435d-8c7b-b00fabc80174"}],"id":"2add3733-762b-4d03-9ffd-1af40546228a","description":"<p>If your organization uses the Enrollment Teams feature, settings for call center information can be retrieve or modified via this collection of endpoints.</p>\n","event":[{"listen":"prerequest","script":{"id":"1005abb2-e44c-419d-8bf8-3c92ed54b60d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"864e872a-3424-463c-9422-111e6eace6cd","type":"text/javascript","exec":[""]}}],"_postman_id":"2add3733-762b-4d03-9ffd-1af40546228a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Communications","item":[{"name":"Emails","item":[{"name":"Filter emails","id":"e9951f06-1ef7-408d-ae96-9cecc8a27fde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/emails?since=datetime&filter_user_id=int&only_enrollment_team=bool&family_id=int","urlObject":{"path":["api","v3","emails"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Filter to retrieve only emails send/received after a certain date-time. Use ISO8601 format.</p>\n","type":"text/plain"},"key":"since","value":"datetime"},{"description":{"content":"<p>Only emails to/from a user</p>\n","type":"text/plain"},"key":"filter_user_id","value":"int"},{"description":{"content":"<p>Only show emails to/from enrollment team members</p>\n","type":"text/plain"},"key":"only_enrollment_team","value":"bool"},{"description":{"content":"<p>Only show emails to/from a particular family</p>\n","type":"text/plain"},"key":"family_id","value":"int"}],"variable":[]}},"response":[],"_postman_id":"e9951f06-1ef7-408d-ae96-9cecc8a27fde"},{"name":"Outgoing emails","id":"a7761475-4fc8-424b-a6a2-0af973894448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/emails?limit=4&offset=0&family_id=1&only_enrollment_team=true&include_body=false&filter_user_id=1","urlObject":{"path":["api","v3","emails"],"host":["{{url}}"],"query":[{"key":"limit","value":"4"},{"key":"offset","value":"0"},{"description":{"content":"<p>Include only emails sent to family with id 1</p>\n","type":"text/plain"},"key":"family_id","value":"1"},{"description":{"content":"<p>Include only emails sent by the enrollment team</p>\n","type":"text/plain"},"key":"only_enrollment_team","value":"true"},{"description":{"content":"<p>Flag to return the message body along with metadata</p>\n","type":"text/plain"},"key":"include_body","value":"false"},{"description":{"content":"<p>Only return messages to / from a specific user</p>\n","type":"text/plain"},"key":"filter_user_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"a7761475-4fc8-424b-a6a2-0af973894448"},{"name":"Outgoing email by id","id":"cd07dab4-a0bd-4587-97ee-600af6c7eb18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/emails/outgoing/304","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","emails","outgoing","304"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd07dab4-a0bd-4587-97ee-600af6c7eb18"},{"name":"Incoming emails","id":"5c27d87f-fe91-4632-a665-1612262b161f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/emails/incoming?offset=0&limit=20&family_id=1&include_dismissed=true&include_body=false","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","emails","incoming"],"host":["{{url}}"],"query":[{"disabled":true,"description":{"content":"<p>Only return emails received since this DateTime</p>\n","type":"text/plain"},"key":"since","value":"2019-09-23T14:00:00%2B00:00"},{"disabled":true,"description":{"content":"<p>Only return emails replying to this user</p>\n","type":"text/plain"},"key":"filter_user_id","value":"19047"},{"key":"offset","value":"0"},{"key":"limit","value":"20"},{"description":{"content":"<p>Return only emails to or from this family</p>\n","type":"text/plain"},"key":"family_id","value":"1"},{"description":{"content":"<p>Include messages that CRM users have already dismissed</p>\n","type":"text/plain"},"key":"include_dismissed","value":"true"},{"description":{"content":"<p>Include the body of the message; when set to false, only the message metadata is returned</p>\n","type":"text/plain"},"key":"include_body","value":"false"}],"variable":[]}},"response":[],"_postman_id":"5c27d87f-fe91-4632-a665-1612262b161f"},{"name":"Incoming email by id","id":"4542a0e5-9648-492d-a142-4bd23427eb7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/emails/incoming/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","emails","incoming","1"],"host":["{{url}}"],"query":[{"disabled":true,"key":"only_enrollment_team","value":"false"}],"variable":[]}},"response":[],"_postman_id":"4542a0e5-9648-492d-a142-4bd23427eb7b"},{"name":"Create outgoing email","id":"ec036f8a-5b82-4c01-b6a4-d3a290a5955d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"type\": \"outgoing\",\n        \"subject\": \"subject\",\n        \"html\": \"From:  Location 1 Hi human, we are looking forward to meeting you once you pass over to the other side.  In preparation for your 'tour' here is a glimpse of what it is like to be a part of our family - click nothing\",\n        \"reply_to_user\": 1,\n        \"send_to_guardian\": 657,\n        \"send_by_user\": 1,\n        \"replied_to_message\": 1\n    }"},"url":"{{url}}/api/v3/emails/outgoing","urlObject":{"path":["api","v3","emails","outgoing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec036f8a-5b82-4c01-b6a4-d3a290a5955d"},{"name":"Dismiss incoming email","id":"b22da575-554c-4484-9656-03c936a2873a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/javascript","type":"text"},{"key":"XDEBUG_SESSION_START","value":"PHPSTORM","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"is_dismissed\": true\n}"},"url":"{{url}}/api/v3/emails/incoming/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","emails","incoming","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b22da575-554c-4484-9656-03c936a2873a"}],"id":"d36a15c2-8d84-4047-838d-790d43baf8b8","_postman_id":"d36a15c2-8d84-4047-838d-790d43baf8b8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Texts","item":[{"name":"All texts","id":"797a778d-66af-403f-8e5e-a895b3f04f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/texts","urlObject":{"path":["api","v3","texts"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"797a778d-66af-403f-8e5e-a895b3f04f31"},{"name":"Filter texts","id":"450fd5ee-b7dc-48ef-8f29-53032698319d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/texts?since=datetime&filter_user_id=int&only_enrollment_team=bool&family_id=int","urlObject":{"path":["api","v3","texts"],"host":["{{url}}"],"query":[{"description":{"content":"<p>Filter to retrieve only texts send/received after a certain date-time. Use ISO8601 format.</p>\n","type":"text/plain"},"key":"since","value":"datetime"},{"description":{"content":"<p>Only texts to/from a user</p>\n","type":"text/plain"},"key":"filter_user_id","value":"int"},{"description":{"content":"<p>Only show texts to/from enrollment team members</p>\n","type":"text/plain"},"key":"only_enrollment_team","value":"bool"},{"description":{"content":"<p>Only show texts to/from a particular family</p>\n","type":"text/plain"},"key":"family_id","value":"int"}],"variable":[]}},"response":[],"_postman_id":"450fd5ee-b7dc-48ef-8f29-53032698319d"},{"name":"Incoming texts","id":"f878947d-1fb6-4cd9-95b3-374c7d182506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/texts/incoming","urlObject":{"path":["api","v3","texts","incoming"],"host":["{{url}}"],"query":[{"disabled":true,"key":"only_enrollment_team","value":"false"}],"variable":[]}},"response":[],"_postman_id":"f878947d-1fb6-4cd9-95b3-374c7d182506"},{"name":"Outgoing texts","id":"1d5265de-e0d6-4b41-b3f3-8df534f59881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/texts/outgoing","urlObject":{"path":["api","v3","texts","outgoing"],"host":["{{url}}"],"query":[{"disabled":true,"key":"only_enrollment_team","value":"false"}],"variable":[]}},"response":[],"_postman_id":"1d5265de-e0d6-4b41-b3f3-8df534f59881"},{"name":"Send outgoing text","id":"fb71e15f-e631-413e-a0d7-99755a07bb26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"send_by_user\": 1,\n    \"send_to_guardian\": 657,\n    \"data\": \"Test Text\"\n}"},"url":"{{url}}/api/v3/texts/outgoing","urlObject":{"path":["api","v3","texts","outgoing"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb71e15f-e631-413e-a0d7-99755a07bb26"},{"name":"Dismiss incoming text","id":"d2a39f72-7f5a-45d9-bab5-cc7573e0a8a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/javascript"},{"key":"XDEBUG_SESSION_START","type":"text","value":"PHPSTORM"}],"body":{"mode":"raw","raw":"{\n\t\"is_dismissed\": true\n}"},"url":"{{url}}/api/v3/texts/incoming/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","texts","incoming","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2a39f72-7f5a-45d9-bab5-cc7573e0a8a0"}],"id":"718aa7ba-8caa-4a8b-a9bb-860691d67890","_postman_id":"718aa7ba-8caa-4a8b-a9bb-860691d67890","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}}],"id":"2559bf4a-2562-4a6a-abbb-f6993cd577d6","description":"<p>ChildCareCRM allows users to send and receive emails and texts to families. These endpoints allow you to control that data.</p>\n","event":[{"listen":"prerequest","script":{"id":"89f0bbe5-4161-428d-a505-fba45c298bb9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c9960e88-4b0a-4507-b4b1-d02e7f2d318b","type":"text/javascript","exec":[""]}}],"_postman_id":"2559bf4a-2562-4a6a-abbb-f6993cd577d6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Updates","item":[{"name":"All updates","id":"07dc2764-73f5-4a95-99a0-33b33dd1a1af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/updates?since=1548470432","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","updates"],"host":["{{url}}"],"query":[{"description":{"content":"<p>A UNIX timestamp; required</p>\n","type":"text/plain"},"key":"since","value":"1548470432"}],"variable":[]}},"response":[],"_postman_id":"07dc2764-73f5-4a95-99a0-33b33dd1a1af"},{"name":"Filter updates","id":"145bea76-7d19-4396-b6e5-1c5bcac7f350","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/updates?since=1548470432&filter_type=3&filter_value=5&center_ids[]=1&family_ids[]=1","description":"<p>Filter the firehose of data that is in /updates. \"filter_type\" is defined in <a href=\"https://apidocs.childcarecrm.com/?version=latest#b367d918-d1bc-43e0-87b2-999040087fa8\">/api/v3/types/updates/filters</a> filters. \"filter_value\" is value something was changed to that you want to find.</p>\n<p>For example, to find all families that changed to status 5, GET /api/v3/updates?since=0&amp;filter_value=5&amp;filter_type=3</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","updates"],"host":["{{url}}"],"query":[{"description":{"content":"<p>A UNIX timestamp; required</p>\n","type":"text/plain"},"key":"since","value":"1548470432"},{"description":{"content":"<p>Filter to specific types of changes; 1 = changes to families; 2 = changes to child; 3 = changes to statuses; 4 = changes to tasks; 5 = changes to events</p>\n","type":"text/plain"},"key":"filter_type","value":"3"},{"description":{"content":"<p>Find all families that changed to status id 5 (Registered)</p>\n","type":"text/plain"},"key":"filter_value","value":"5"},{"description":{"content":"<p>Filter to only updates in the given center</p>\n","type":"text/plain"},"key":"center_ids[]","value":"1"},{"description":{"content":"<p>Filter to only updates for the given family id(s)</p>\n","type":"text/plain"},"key":"family_ids[]","value":"1"}],"variable":[]}},"response":[],"_postman_id":"145bea76-7d19-4396-b6e5-1c5bcac7f350"},{"name":"Types of update filters","id":"3a20e07f-2530-4176-afc5-d0e1517257c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/updates/filters","description":"<p>Get a list of the types of filters the updates endpoint takes</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","types","updates","filters"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"e3f686aa-4774-4638-a880-f658b584574c","name":"Types of update filters","originalRequest":{"method":"GET","header":[],"url":"{{url}}/api/v3/types/updates/filters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 06 Apr 2021 21:55:32 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.2.34"},{"key":"Set-Cookie","value":"PHPSESSID=pukbn7jqermh053ij9qns6o4r9; path=/; secure; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Mon, 06-Apr-2020 21:55:32 GMT; Max-Age=0; path=/; httponly"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"a274b2"},{"key":"X-Debug-Token-Link","value":"http://0.0.0.0/_profiler/a274b2"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Tue, 06 Apr 2021 21:55:33 GMT"},{"key":"Content-Length","value":"382"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 0,\n        \"value\": \"Primary Guardian\"\n    },\n    {\n        \"id\": 2,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 1,\n        \"value\": \"Child\"\n    },\n    {\n        \"id\": 3,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 2,\n        \"value\": \"Status\"\n    },\n    {\n        \"id\": 4,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 3,\n        \"value\": \"Task\"\n    },\n    {\n        \"id\": 5,\n        \"is_default\": false,\n        \"is_editable\": false,\n        \"order\": 4,\n        \"value\": \"Event\"\n    }\n]"}],"_postman_id":"3a20e07f-2530-4176-afc5-d0e1517257c4"}],"id":"43196765-a791-4f3b-9c7c-4fb00b5af768","description":"<p>Audit history of a Family’s record.  Examples:  When a Lead is added, when a Status is changed, when a Child starts attending a Center.</p>\n<p>To filter to centers, pass multiple 'center_ids[]=int' parameters and all the listed centers will be included in the result set.</p>\n<p>When filtering by status, if a guardian or child passed through the desired status during the time range requested, they will show up in the list, even if they are not currently in that status. The system defines certain status changes as including transitions among prior statuses. For example, a child who moved to \"Registered\" status from \"Contacted\" is also assumed to have gone through tour completed and tour scheduled. A query for all children who moved to tour scheduled during that time frame would, then, include that child. To filter these out, you can examine the \"field_changes\" object for the \"to\" value and check if it's the desired status. Alternately, you can check the actual child entity to see what the current status is.</p>\n","event":[{"listen":"prerequest","script":{"id":"97573c12-7e77-4d1a-8c73-5f964d2d286b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"60fb99cb-f1ce-40bb-9053-c90b531fd6eb","type":"text/javascript","exec":[""]}}],"_postman_id":"43196765-a791-4f3b-9c7c-4fb00b5af768","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Staff","item":[{"name":"Get all staff","id":"fb9f12fa-bff2-4936-a8a2-b1720fa1fff3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/staff","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","staff"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb9f12fa-bff2-4936-a8a2-b1720fa1fff3"},{"name":"Get all staff for a center","id":"56effc53-28ae-427d-9df2-8bd130f85b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/staff?center_id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","staff"],"host":["{{url}}"],"query":[{"key":"center_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"56effc53-28ae-427d-9df2-8bd130f85b72"},{"name":"Staff by id","id":"71830315-0248-4b43-bee6-ebc462572b0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/staff/20849","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","staff","20849"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71830315-0248-4b43-bee6-ebc462572b0e"},{"name":"Update a staff record","id":"8f165b28-9303-42bb-bb6e-d1d069305a3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\t{\n\t    \"id\": 20079,\n\t    \"username\": \"amonkey\",\n\t    \"client_id\": 2,\n\t    \"first_name\": \"curious\",\n\t    \"last_name\": \"george\",\n\t    \"last_login_time\": 0,\n\t    \"email_address\": \"bananas@bananas.com\",\n\t    \"phone\": {\n\t        \"number\": \"\",\n\t        \"extension\": \"\"\n\t    },\n\t    \"address\": {\n\t        \"address1\": \"\",\n\t        \"locality\": \"\",\n\t        \"region\": \"\",\n\t        \"postcode\": \"\",\n\t        \"country\": \"us\"\n\t    },\n\t    \"timezone\": \"Central Time\",\n\t    \"hire_time\": 0,\n\t    \"termination_time\": 0,\n\t    \"is_active\": true,\n\t    \"force_password_change\": true,\n\t    \"failed_attempts\": 0,\n\t    \"position_title\": \"Administrator\",\n\t    \"manager_id\": 0,\n\t    \"comments\": \"\",\n\t    \"is_on_enrollment_team\": false,\n\t    \"schedule\": []\n\t}\n]"},"url":"{{url}}/api/v3/staff","urlObject":{"path":["api","v3","staff"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f165b28-9303-42bb-bb6e-d1d069305a3f"},{"name":"Add staff","id":"401a5bd1-c697-4c2f-9e32-33c11ffe4eeb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"aMonkey\",\n    \"password\": \"ILoveBananas\",\n    \"first_name\": \"George\",\n    \"last_name\": \"OfTheJungle\",\n    \"email_address\": \"george@bananas.com\",\n    \"timezone\": \"Central Time\",\n    \"hire_time\": 1481781600,\n    \"is_active\": true,\n    \"position_title\": \"Owner\",\n    \"manager_id\": 0,\n    \"comments\": \"Oo! Oo! Ee! Ee!\",\n    \"is_on_enrollment_team\": true\n}"},"url":"{{url}}/api/v3/staff","urlObject":{"path":["api","v3","staff"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"401a5bd1-c697-4c2f-9e32-33c11ffe4eeb"},{"name":"Delete staff","id":"559fd7cc-aeb6-4922-92cc-08a4e70f0230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/staff/14128","urlObject":{"path":["api","v3","staff","14128"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"559fd7cc-aeb6-4922-92cc-08a4e70f0230"}],"id":"0be53ddc-be5d-485c-a016-882980e3acc3","description":"<p>People who work for your company.</p>\n","event":[{"listen":"prerequest","script":{"id":"4ce83965-9462-4304-80dc-7fdf81a022d6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d69c0cb0-ee3d-4e4f-9a87-464381084ff2","type":"text/javascript","exec":[""]}}],"_postman_id":"0be53ddc-be5d-485c-a016-882980e3acc3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Events","item":[{"name":"All events","id":"dbcfb5eb-639d-48fb-9de9-57ef27aee665","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dbcfb5eb-639d-48fb-9de9-57ef27aee665"},{"name":"Events by type ","id":"057cebf7-0abb-4dc9-85f8-eca84767ad2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events?type=100","description":"<p>Events all have a type, which may be \"Call completed\", \"Email sent\", etc. These types are configurable from within the ChildCareCRM user interface. This endpoint allows you to retrieve only events of a specific type. Use the /api/v3/types/tasks/results endpoint to retrieve a list of possible event types.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","events"],"host":["{{url}}"],"query":[{"key":"type","value":"100"}],"variable":[]}},"response":[],"_postman_id":"057cebf7-0abb-4dc9-85f8-eca84767ad2b"},{"name":"Events by family","id":"0ed2bced-7b22-40f9-b398-7f4daaa04ff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events?family_id=1","description":"<p>Retrieve a list of events for a specific family</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","events"],"host":["{{url}}"],"query":[{"key":"family_id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"0ed2bced-7b22-40f9-b398-7f4daaa04ff4"},{"name":"Events by center(s)","id":"d3c45874-83c3-4556-9a64-f31c264a0eea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events?center_ids[]=1&center_ids[]=2","description":"<p>Retrieve a list of events for a specific family</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","events"],"host":["{{url}}"],"query":[{"key":"center_ids[]","value":"1"},{"key":"center_ids[]","value":"2"}],"variable":[]}},"response":[],"_postman_id":"d3c45874-83c3-4556-9a64-f31c264a0eea"},{"name":"Event by id","id":"be3a3f77-e75a-4a45-859c-0cbad8c3b296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events/10","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","events","10"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be3a3f77-e75a-4a45-859c-0cbad8c3b296"},{"name":"Delete an event","id":"26c66226-3e62-45ad-8f74-4284ad09fba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/events/1","urlObject":{"path":["api","v3","events","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"26c66226-3e62-45ad-8f74-4284ad09fba0"},{"name":"Update an event","id":"07ed890a-1242-4493-80a7-dc999dbfd91b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"added_by_staff\": 1,\r\n    \"added_time\": \"2020-04-22T14:54:01-06:00\",\r\n    \"child\": 439,\r\n    \"description\": \"Test description\",\r\n    \"event_time\": \"2020-04-22T14:54:01-06:00\",\r\n    \"family\": 539,\r\n    \"performed_by_staff\": 1,\r\n    \"task\": null,\r\n    \"type\": 942\r\n}"},"url":"{{url}}/api/v3/events/3436","urlObject":{"path":["api","v3","events","3436"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"c119c44d-963c-40dc-864d-f4e92124cd1d","name":"Update an event","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"added_by_staff\": 1,\r\n    \"added_time\": \"2020-04-22T14:54:01-06:00\",\r\n    \"child\": 439,\r\n    \"description\": \"Test description\",\r\n    \"event_time\": \"2020-04-22T14:54:01-06:00\",\r\n    \"family\": 539,\r\n    \"performed_by_staff\": 1,\r\n    \"task\": null,\r\n    \"type\": 942\r\n}"},"url":"{{url}}/api/v3/events/3436"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 22 Apr 2020 21:06:53 GMT"},{"key":"Server","value":"Apache/2.4.38 (Debian)"},{"key":"Vary","value":"Authorization"},{"key":"X-Powered-By","value":"PHP/7.3.15"},{"key":"Set-Cookie","value":"PHPSESSID=24cb535118fe52a500aed551b26cac0e; path=/; HttpOnly"},{"key":"Set-Cookie","value":"PHPSESSID=deleted; expires=Tue, 23-Apr-2019 21:06:53 GMT; Max-Age=0; path=/; httponly"},{"key":"Cache-Control","value":"max-age=0, must-revalidate, private"},{"key":"X-Debug-Token","value":"130aec"},{"key":"X-Debug-Token-Link","value":"http://10.4.0.45/_profiler/130aec"},{"key":"X-Robots-Tag","value":"noindex"},{"key":"Expires","value":"Wed, 22 Apr 2020 21:06:54 GMT"},{"key":"Content-Length","value":"937"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"added_by_staff\": {\n        \"id\": 1,\n        \"values\": {\n            \"first_name\": \"John\",\n            \"last_name\": \"Smith\",\n            \"username\": \"jsmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/staff/1\",\n                \"rel\": \"staff\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"added_time\": \"2020-04-22T20:54:01+00:00\",\n    \"child\": {\n        \"id\": 439,\n        \"values\": {\n            \"name\": \"Luke Adams\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/539/children/439\",\n                \"rel\": \"child\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"description\": \"Email Sent\",\n    \"email\": null,\n    \"event_time\": \"2020-04-22T20:54:01+00:00\",\n    \"family\": {\n        \"id\": 539,\n        \"values\": {\n            \"name\": \"Tim Adams\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/families/539\",\n                \"rel\": \"family\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"id\": 3436,\n    \"performed_by_staff\": {\n        \"id\": 1,\n        \"values\": {\n            \"first_name\": \"John\",\n            \"last_name\": \"Smith\",\n            \"username\": \"jsmith\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/staff/1\",\n                \"rel\": \"staff\",\n                \"type\": \"GET\"\n            }\n        ]\n    },\n    \"task\": null,\n    \"text\": null,\n    \"type\": {\n        \"id\": 942,\n        \"values\": {\n            \"value\": \"Email Sent\"\n        },\n        \"links\": [\n            {\n                \"href\": \"/api/v3/types/tasks/results/942\",\n                \"rel\": \"task_result\",\n                \"type\": \"GET\"\n            }\n        ]\n    }\n}"}],"_postman_id":"07ed890a-1242-4493-80a7-dc999dbfd91b"},{"name":"Update multiple events","id":"77e1de01-4da7-415b-9d60-5ec59179ac57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"[{\r\n    \"id\": 2,\r\n    \"added_by_staff\": 6736,\r\n    \"added_time\": \"2018-12-22T16:54:01-06:00\",\r\n    \"description\": \"Confirming your tour at ET Testing\",\r\n    \"event_time\": \"2018-12-22T16:54:01-06:00\",\r\n    \"family\": {\r\n        \"id\": 1,\r\n        \"links\": [\r\n            {\r\n                \"href\": \"\\/api\\/v3\\/families\\/1\",\r\n                \"rel\": \"family\",\r\n                \"type\": \"GET\"\r\n            }\r\n        ]\r\n    },\r\n    \"performed_by_staff\": 6736,\r\n    \"task\": null,\r\n    \"type\": 92\r\n}]"},"url":"{{url}}/api/v3/events/2","urlObject":{"path":["api","v3","events","2"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"77e1de01-4da7-415b-9d60-5ec59179ac57"},{"name":"Add an event","id":"a097e294-97dc-43bd-bb46-aca0d5bbda68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"added_by_staff\": 6736,\r\n    \"added_time\": \"2018-12-22T16:54:01-06:00\",\r\n    \"child\": null,\r\n    \"description\": \"Confirming your tour at ET Testing\",\r\n    \"event_time\": \"2018-12-22T16:54:01-06:00\",\r\n    \"family\": 1,\r\n    \"performed_by_staff\": 6736,\r\n    \"task\": null,\r\n    \"type\": 92\r\n}"},"url":"{{url}}/api/v3/events","urlObject":{"path":["api","v3","events"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a097e294-97dc-43bd-bb46-aca0d5bbda68"}],"id":"4dcc87da-e3b6-4f72-8dca-109a6c7e5315","description":"<p>Records of interactions with a Lead, often resulting from a Task.  Examples: “Called – Left Message”, “Email Received”, “Unscheduled Tour”.  Events are things that already happened.</p>\n<p>The \"type\" id for events is a task <em>result</em>, a list of which can be found under <a href=\"https://apidocs.childcarecrm.com/?version=latest#7d3237bf-b013-4348-bbc6-902464d51795\">/api/v3/types/tasks/results</a>. </p>\n","event":[{"listen":"prerequest","script":{"id":"d19969ad-a497-4ba6-a824-0374598710b6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1588c3d4-8e2a-485f-902d-45697e59397d","type":"text/javascript","exec":[""]}}],"_postman_id":"4dcc87da-e3b6-4f72-8dca-109a6c7e5315","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Features","item":[{"name":"Get features","id":"bc1f8f21-ef1c-465a-b96f-1fa246cdb658","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/features","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","features"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc1f8f21-ef1c-465a-b96f-1fa246cdb658"},{"name":"Get features by id","id":"1a6f6a91-066e-48cc-b4d5-d682fee49854","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/features/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","features","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a6f6a91-066e-48cc-b4d5-d682fee49854"}],"id":"11afe5cd-32be-4f58-ad60-9c7565dc3f66","_postman_id":"11afe5cd-32be-4f58-ad60-9c7565dc3f66","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Integrations","item":[{"name":"List integrations enabled by center","id":"551babf4-d7c5-4b7e-8cd9-77e756e22b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/integrations","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","integrations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"551babf4-d7c5-4b7e-8cd9-77e756e22b16"},{"name":"Integration by id","id":"db4a1269-c57f-40a0-9d28-d2a426292522","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/integrations/6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","integrations","6"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db4a1269-c57f-40a0-9d28-d2a426292522"}],"id":"a9dbc51d-e849-446e-b8e5-255af2ea4ea9","_postman_id":"a9dbc51d-e849-446e-b8e5-255af2ea4ea9","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Marketing Campaigns","item":[{"name":"Marketing Campaigns","id":"000676ec-476c-46af-8b60-8f5d8be969dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{url}}/api/v3/marketing-campaigns","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","marketing-campaigns"],"host":["{{url}}"],"query":[{"disabled":true,"key":"limit","value":"3"}],"variable":[]}},"response":[],"_postman_id":"000676ec-476c-46af-8b60-8f5d8be969dc"},{"name":"One Marketing Campaign","id":"8bf04b4b-bd99-4b0a-9ae8-858d14eeb06b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/api/v3/marketing-campaigns/9","urlObject":{"path":["api","v3","marketing-campaigns","9"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8bf04b4b-bd99-4b0a-9ae8-858d14eeb06b"}],"id":"1cb1fb14-7eca-465f-8cc1-ee5b3f61f9f8","_postman_id":"1cb1fb14-7eca-465f-8cc1-ee5b3f61f9f8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Organization","item":[{"name":"All organizations","id":"35f1fd9b-2840-43d0-a920-c1e59eb88451","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/organizations","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","organizations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35f1fd9b-2840-43d0-a920-c1e59eb88451"},{"name":"Organization by id","id":"52f0e9d1-dc9d-499e-8fe8-653435189ef6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/api/v3/organizations/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","organizations","1"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52f0e9d1-dc9d-499e-8fe8-653435189ef6"},{"name":"Create organization","id":"ce85d0e1-0d7d-4745-9ef3-0867460e5060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"code\" : \"code\",\n    \"level\" : \"1\",\n    \"name\" : \"name\",\n    \"parent_organization\" : \"1\"\n}"},"url":"{{url}}/api/v3/organizations","urlObject":{"path":["api","v3","organizations"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ce85d0e1-0d7d-4745-9ef3-0867460e5060"}],"id":"d0918138-a5f2-42cc-bf10-98ba78e8fd80","description":"<p>Larger companies may have centers grouped into organizations. This endpoint allows you to get the organizational hierarchy.</p>\n","event":[{"listen":"prerequest","script":{"id":"b5881ed7-ff4c-4b3f-9770-4662d4a485ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aba1bbcb-d38e-4275-967a-f6b54f8afcc2","type":"text/javascript","exec":[""]}}],"_postman_id":"d0918138-a5f2-42cc-bf10-98ba78e8fd80","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}},{"name":"Settings","item":[{"name":"Business Rules","item":[{"name":"Business rules current status","id":"0411473a-c34b-49be-8f47-3c3cfd41cda4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/api/v3/settings/business-rules","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}},"urlObject":{"path":["api","v3","settings","business-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0411473a-c34b-49be-8f47-3c3cfd41cda4"},{"name":"Toggle business rules","id":"9b974920-4840-4254-9358-8affd417a143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{loginToken}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n    \"enabled\": false\r\n}"},"url":"{{url}}/api/v3/settings/business-rules","urlObject":{"path":["api","v3","settings","business-rules"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b974920-4840-4254-9358-8affd417a143"}],"id":"2c62ac81-45be-4750-868d-eff0b86d67c3","description":"<p>ChildCareCRM provides powerful process automation known as \"Business Rules\". During bulk operations via the API, it's often desirable to disable business rules to avoid sending communications or triggering other automated operations based on changes made via the API. These endpoints allow you to see if business rules are enabled for your authentication token and to toggle them.</p>\n","event":[{"listen":"prerequest","script":{"id":"9c72078c-a6b5-407a-bafc-df40b404509f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8c7919be-4a0c-4fa6-8eeb-8f359c0149c8","type":"text/javascript","exec":[""]}}],"_postman_id":"2c62ac81-45be-4750-868d-eff0b86d67c3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}}],"id":"82c6e4a8-f260-4f26-bfed-39d7d46b69cd","_postman_id":"82c6e4a8-f260-4f26-bfed-39d7d46b69cd","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]},"isInherited":true,"source":{"_postman_id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","id":"d424ff78-d5a5-4eea-a8d3-0a827ede13a9","name":"LineLeader Enroll API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{currentAccessToken}}"}]}},"event":[{"listen":"prerequest","script":{"id":"fbe82384-e02d-4ddd-8e9b-a54bc2bc0963","type":"text/javascript","exec":["const assert = require('assert');","const Header = require('postman-collection').Header;","","/*"," * Assert environment variables"," */","","// ensure required environment variables are set","assert(pm.environment.has('url'), 'Environment variable \"url\" was not set');","assert(pm.environment.has('username'), 'Environment variable \"username\" was not set');","assert(pm.environment.has('password'), 'Environment variable \"password\" was not set');","","// get required environment variables","const url = pm.environment.get('url');","const username = pm.environment.get('username');","const password = pm.environment.get('password');","","/*"," * Load the authentication token and refresh if necessary"," */"," ","// load the auth token for this environment","let token = pm.environment.get('currentAccessToken');","let shouldRefreshToken = !token;","","// check if the token expired","if (token) {","    const jwt = JSON.parse(atob(token.split('.')[1])); // parse the token payload","    ","    // check if the expiration time has expired","    const exp = parseInt(jwt['exp']) * 1000; // token expiration time in ms","    if (exp <= (new Date()).getTime()) { // token has expired","        shouldRefreshToken = true;","        console.log('Token has expired, requesting new token');","    } else {","        console.log('Using cached token');","    }","} else {","    console.log('No token exists, requesting new token');","}","","// request a new token from the login endpoint","if (shouldRefreshToken) {","    pm.sendRequest({","        url: `${url}/api/v3/login`,","        method: 'POST',","        header: 'Content-Type: application/json',","        body: {","            mode: 'raw',","            raw: JSON.stringify({","                username: username,","                password: password","            })","        }","    }, function (err, response) {","        if (err) { // error occurred","            throw err;","        }","        const res = response.json();","        ","        // set token as a variable for this request","        token = res['token'];","        pm.environment.set('currentAccessToken', token);","        ","        // inject the auth header into the request","        pm.request.headers.upsert(Header.create(`Bearer ${token}`, 'Authorization'));","    });","} else {","    // inject the auth header into the request","    pm.request.headers.upsert(Header.create(`Bearer ${token}`, 'Authorization'));","}",""]}},{"listen":"test","script":{"id":"c362e386-bb51-4a62-9b69-91cf0e85cc2a","type":"text/javascript","exec":[""]}}]}