{"info":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","description":"<html><head></head><body><h1 id=\"mct-carecloud-api\">MCT CareCloud API</h1>\n<p>The API provides a standardized way to quickly and easily access your data needs for a CareCloud license holder.</p>\n<p>Before you can obtain access to CareCloud API, you must register the developer's account. You will then obtain a <strong>API key</strong>. API key is alphanumeric strings that MCT distribute to app developer customers to grant access to CareCloud API. And then you will obtain a corresponding <strong>App key</strong> , which are used to obtain Access Token.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>All API requests must contain your API Key. This string should be sent as a part of the header demonstrated below.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-api-key: [x-api-key]\n\n</code></pre><p>For example,</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>x-api-key: LXdFOv3-IN87xIkJMlhG9bDr8T048w2i..\n\n</code></pre><p>If the API key has been expired, please contact MCT to get the new API key;</p>\n<h1 id=\"general\">General</h1>\n<h2 id=\"http-verbs\">HTTP Verbs</h2>\n<p>When interacting with the API, you will need to make use of the appropriate HTTP verb for the action you are trying to complete.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Verb</th>\n<th>Usage</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GET</td>\n<td>Used for retrieving resources</td>\n</tr>\n<tr>\n<td>POST</td>\n<td>Used for creating resources</td>\n</tr>\n<tr>\n<td>PUT</td>\n<td>Used for updating resources</td>\n</tr>\n<tr>\n<td>DELETE</td>\n<td>Used for deleting resources</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"http-status-codes\">HTTP Status Codes</h2>\n<p>Every API response will include an HTTP status, which can be used to quickly determine the result of your request.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1xx</td>\n<td>Informational</td>\n</tr>\n<tr>\n<td>2xx</td>\n<td>Success</td>\n</tr>\n<tr>\n<td>3xx</td>\n<td>Redirection</td>\n</tr>\n<tr>\n<td>4xx</td>\n<td>Client error</td>\n</tr>\n<tr>\n<td>5xx</td>\n<td>Server error</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"paging\">Paging</h2>\n<p>When performing a search request, the API always return as paginated list with a default size of 100. This is to ensure speed, performance, and consistency in large responses. All paginated lists will have a default size of 100 resources, but can be further customized to meet your needs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Path</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Skip</td>\n<td>Integer</td>\n<td>The first position to return from the results of the query</td>\n</tr>\n<tr>\n<td>Take</td>\n<td>Integer</td>\n<td>Size of the page you want to retrieve, limit to 5000</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-parameters\">Request parameters</h3>\n<p>Enable to saarch the records based on \"RowVersion\" field, the parameter value should be in \"YYYYMMDDHHmmss\" format.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameters</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>RowVersionGreaterThan</td>\n<td>string</td>\n<td>Get the records that \"RowVersion\" is after the timestamp</td>\n</tr>\n<tr>\n<td>RowVersionGreaterThanOrEqualTo</td>\n<td>string</td>\n<td>Get the records that \"RowVersion\" is after or on the timestamp</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    The request below works as you would expect in returning all families after 10/07/2020 01:00:00 PM\n    /family?RowVersionGreaterThan=20201007130000\n\n</code></pre><h3 id=\"paginated-response-fields\">Paginated response fields</h3>\n<p>Search endpoints will return a standard paginated structure to quickly deliver key information about your search results.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Path</th>\n<th>Type</th>\n<th>Optional</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Data</td>\n<td>Object Array</td>\n<td>false</td>\n<td>Resources found</td>\n</tr>\n<tr>\n<td>IsSuccess</td>\n<td>boolean</td>\n<td>false</td>\n<td>True if no error</td>\n</tr>\n<tr>\n<td>ErrCode</td>\n<td>string</td>\n<td>false</td>\n<td>API error code, default is 200</td>\n</tr>\n<tr>\n<td>ErrMsg</td>\n<td>string</td>\n<td>true</td>\n<td>The message if existing any error</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Integer</td>\n<td>false</td>\n<td>Total count of resource</td>\n</tr>\n<tr>\n<td>Offset</td>\n<td>Integer</td>\n<td>false</td>\n<td>The first position to return from the results of the query</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"Offset\": 0,\n    \"Total\": 0,\n    \"Data\": [],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}\n\n</code></pre>\n<h2 id=\"errors\">Errors</h2>\n<p>Any request that results in an error will return with a general error object containing debugging information in the following format.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"IsSuccess\": false,\n  \"ErrCode\": \"500\",\n  \"ErrMsg\": \" parameter is Required\",\n}\n\n</code></pre>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"MCT CareCloud API","slug":"mct-carecloud-api"},{"content":"Authentication","slug":"authentication"},{"content":"General","slug":"general"}],"owner":"6582201","collectionId":"5b400615-fdc5-40ec-95a2-d1d6029db671","publishedId":"TVYM4w3J","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-11-02T17:57:19.000Z"},"item":[{"name":"Query","item":[{"name":"QueryFamily","id":"bc87e335-3f93-4c1f-8460-a6e52c1b9b41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{api_gateway}}/customize/query/verticalchange/family?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"49be73c9-1ece-480f-a3df-02ab8ee7c121","name":"QueryFamily","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:18:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"799"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 6419,\n    \"Data\": [\n        {\n            \"FamilyID\": 15688,\n            \"FamilyName\": \"Demo15688, Gloria\",\n            \"PrintLanguage\": \"English\",\n            \"CaseAidStatus\": \"Termed from Cash Aid\",\n            \"CashAidTermDate\": \"8/31/2013 12:00:00 AM\",\n            \"Address\": \"[Redacted Address]], Pomona, CA 91766-4421\",\n            \"MailAddress\": \"[Redacted Address]], Pomona, CA 91766-4421\",\n            \"Comment\": \"[Redacted Comment]\",\n            \"RowVersion\": \"20201027063510\",\n            \"Disable\": false\n        },\n        {\n            \"FamilyID\": 15714,\n            \"FamilyName\": \"Demo15714, Christina\",\n            \"PrintLanguage\": \"English\",\n            \"CaseAidStatus\": \"Termed from Cash Aid\",\n            \"CashAidTermDate\": \"4/30/2007 12:00:00 AM\",\n            \"Address\": \"[Redacted Address]] Dr. #10, Ontario, CA 91761-7339\",\n            \"MailAddress\": \"[Redacted Address]] Dr. #10, Ontario, CA 91761-7339\",\n            \"Comment\": \"[Redacted Comment]\",\n            \"RowVersion\": \"20201027063510\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"bc87e335-3f93-4c1f-8460-a6e52c1b9b41"},{"name":"QueryCase","id":"2c2b67ef-85a0-4a9f-9c04-209e30fd4acf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/family/case?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Case Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family","case"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"054e06e7-f20b-4897-a1a1-f3d7cfaeb9ef","name":"QueryCase","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family/case?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family","case"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:34:19 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1187"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 9630,\n    \"Data\": [\n        {\n            \"CaseID\": 1921,\n            \"FamilyID\": 1921,\n            \"Program\": \"C3AP\",\n            \"FamilyType\": \"Biological\",\n            \"RequestDate\": \"05/23/2014\",\n            \"SignDate\": \"05/23/2014\",\n            \"ServerStartDate\": \"05/23/2014\",\n            \"RecertDate\": \"10/16/2015\",\n            \"TermDate\": \"10/16/2015\",\n            \"FirstDateofSubsidyService\": \"02/18/2004\",\n            \"InitialSubsidyDate\": \"02/18/2004\",\n            \"STG1StartDate\": \"\",\n            \"STG1EndDate\": \"\",\n            \"STG2StartDate\": \"02/18/2004\",\n            \"STG2EndDate\": \"12/31/2012\",\n            \"STG3StartDate\": \"01/01/2013\",\n            \"STG3EndDate\": \"10/15/2015\",\n            \"CAPPStartDate\": \"\",\n            \"CAPPEndDate\": \"\",\n            \"CaseStatus\": \"Denied\",\n            \"CaseManager\": \"Helen Test User 95\",\n            \"RowVersion\": \"20201027001712\",\n            \"Disable\": false\n        },\n        {\n            \"CaseID\": 1955,\n            \"FamilyID\": 1955,\n            \"Program\": \"CAPP\",\n            \"FamilyType\": \"Biological\",\n            \"RequestDate\": \"05/23/2014\",\n            \"SignDate\": \"05/23/2014\",\n            \"ServerStartDate\": \"05/23/2014\",\n            \"RecertDate\": \"07/21/2014\",\n            \"TermDate\": \"07/29/2014\",\n            \"FirstDateofSubsidyService\": \"08/08/2009\",\n            \"InitialSubsidyDate\": \"08/08/2009\",\n            \"STG1StartDate\": \"\",\n            \"STG1EndDate\": \"\",\n            \"STG2StartDate\": \"\",\n            \"STG2EndDate\": \"\",\n            \"STG3StartDate\": \"\",\n            \"STG3EndDate\": \"\",\n            \"CAPPStartDate\": \"08/08/2009\",\n            \"CAPPEndDate\": \"\",\n            \"CaseStatus\": \"Denied\",\n            \"CaseManager\": \"Wendy Test User 152\",\n            \"RowVersion\": \"20201027001712\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"2c2b67ef-85a0-4a9f-9c04-209e30fd4acf"},{"name":"QueryParent","id":"ac8ccf50-fd39-4911-a51a-422f7a20568d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/family/parent?Take={{take}}&Skip={{skip}}&RowVersionGreaterThanOrEqualTo={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Parent Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family","parent"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThanOrEqualTo","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"cbe4bddc-960d-446b-a66c-e11fc423a202","name":"QueryParent","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family/parent?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&Customer={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family","parent"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"Customer","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:30:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"968"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 8010,\n    \"Data\": [\n        {\n            \"FamilyID\": 1122,\n            \"ParentID\": 36489,\n            \"Last\": \"Demo1122\",\n            \"First\": \"Roger\",\n            \"MI\": \"\",\n            \"DOB\": \"\",\n            \"Gender\": \"Male\",\n            \"Race\": \"\",\n            \"Ethnicity\": \"\",\n            \"Language\": \"English\",\n            \"Relationship\": \"Biological Father\",\n            \"MaritalStatus\": \"\",\n            \"HomePhone\": \"(818)293-8862\",\n            \"CellPhone\": \"(818)293-8862\",\n            \"Email\": \"test5@mcttechnology.com\",\n            \"BestTimetoCall\": \"\",\n            \"BestCallNumber\": \"\",\n            \"TrainingStartDate\": \"\",\n            \"TrainingEndDate\": \"\",\n            \"RowVersion\": \"20201027065804\",\n            \"Disable\": true\n        },\n        {\n            \"FamilyID\": 1205,\n            \"ParentID\": 1392,\n            \"Last\": \"Demo1205\",\n            \"First\": \"Amand\",\n            \"MI\": \"M\",\n            \"DOB\": \"06/20/1978\",\n            \"Gender\": \"Female\",\n            \"Race\": \"Other\",\n            \"Ethnicity\": \"Not Hispanic or Latino\",\n            \"Language\": \"English\",\n            \"Relationship\": \"Biological Mother\",\n            \"MaritalStatus\": \"Single\",\n            \"HomePhone\": \"(315) 628-1288\",\n            \"CellPhone\": \"(315) 628-1288\",\n            \"Email\": \"TEST8@MCTTECHNOLOGY.COM\",\n            \"BestTimetoCall\": \"\",\n            \"BestCallNumber\": \"\",\n            \"TrainingStartDate\": \"\",\n            \"TrainingEndDate\": \"\",\n            \"RowVersion\": \"20201027065804\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"ac8ccf50-fd39-4911-a51a-422f7a20568d"},{"name":"QueryChild","id":"b2c3763f-05d0-4008-8fdb-94809b12079f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/family/child?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Children Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family","child"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"ccd8a2d9-a85b-40be-b97d-9fc2149545df","name":"QueryChild","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family/child?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family","child"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:34:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"856"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 12970,\n    \"Data\": [\n        {\n            \"FamilyID\": 915,\n            \"ChildID\": 19605,\n            \"Last\": \"Demo19605\",\n            \"First\": \"Emily\",\n            \"MI\": \"\",\n            \"DOB\": \"11/11/2003\",\n            \"Gender\": \"Female\",\n            \"School\": \"\",\n            \"Track\": \"\",\n            \"District\": \"\",\n            \"Relationship\": \"Daughter\",\n            \"Language\": \"English\",\n            \"LimitedEnglish\": \"N\",\n            \"Race\": \"Caucasian\",\n            \"Ethnicity\": \"Hispanic or Latino\",\n            \"SpecialNeed\": \"\",\n            \"Citizenship\": \"\",\n            \"CPSAtRisk\": \"N\",\n            \"StartDate\": \"\",\n            \"RowVersion\": \"20201027003412\",\n            \"Disable\": false\n        },\n        {\n            \"FamilyID\": 1006,\n            \"ChildID\": 46200,\n            \"Last\": \"Demo46200\",\n            \"First\": \"Isabel\",\n            \"MI\": \"\",\n            \"DOB\": \"09/30/2011\",\n            \"Gender\": \"Female\",\n            \"School\": \"\",\n            \"Track\": \"\",\n            \"District\": \"\",\n            \"Relationship\": \"Daughter\",\n            \"Language\": \"English\",\n            \"LimitedEnglish\": \"N\",\n            \"Race\": \"Caucasian\",\n            \"Ethnicity\": \"Hispanic or Latino\",\n            \"SpecialNeed\": \"\",\n            \"Citizenship\": \"Yes\",\n            \"CPSAtRisk\": \"N\",\n            \"StartDate\": \"06/01/2014\",\n            \"RowVersion\": \"20201027003415\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"b2c3763f-05d0-4008-8fdb-94809b12079f"},{"name":"QueryNeeds","id":"3d9e2df8-84cc-461d-88b3-938fc16e132d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/family/needs?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Needs Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family","needs"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"5158a4be-fbae-4b06-b479-8ab3d248c58b","name":"QueryNeeds","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family/needs?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family","needs"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:36:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"765"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 30707,\n    \"Data\": [\n        {\n            \"NeedID\": 12,\n            \"FamilyID\": 639,\n            \"ParentID\": 767,\n            \"IncomeID\": 0,\n            \"NeedType\": \"Training\",\n            \"IncomeType\": \"\",\n            \"VariableSet\": \"Set\",\n            \"StartDate\": \"02/19/2007\",\n            \"EndDate\": \"06/19/2007\",\n            \"TotalDays\": 5,\n            \"TotalHours\": 0,\n            \"AfterHours\": 0,\n            \"SummaryTotalDays\": 0,\n            \"SummaryTotalHours\": 0,\n            \"SummaryAfterHours\": 0,\n            \"Comment\": \"\",\n            \"RowVersion\": \"20201027012302\",\n            \"Disable\": false\n        },\n        {\n            \"NeedID\": 13,\n            \"FamilyID\": 639,\n            \"ParentID\": 767,\n            \"IncomeID\": 0,\n            \"NeedType\": \"Training\",\n            \"IncomeType\": \"\",\n            \"VariableSet\": \"Set\",\n            \"StartDate\": \"06/28/2004\",\n            \"EndDate\": \"08/13/2004\",\n            \"TotalDays\": 5,\n            \"TotalHours\": 0,\n            \"AfterHours\": 0,\n            \"SummaryTotalDays\": 0,\n            \"SummaryTotalHours\": 0,\n            \"SummaryAfterHours\": 0,\n            \"Comment\": \"\",\n            \"RowVersion\": \"20201027012302\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"3d9e2df8-84cc-461d-88b3-938fc16e132d"},{"name":"QueryIncome","id":"d2faa1e5-b1cc-493f-aae2-c93712ea8093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/family/income?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Family Income Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","family","income"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"e16750c6-8e23-4378-b805-f8eeaee6ef27","name":"QueryIncome","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/family/income?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","family","income"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:38:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"580"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 27259,\n    \"Data\": [\n        {\n            \"IncomeID\": 11,\n            \"FamilyID\": 1082,\n            \"ParentID\": 1263,\n            \"ChildID\": 0,\n            \"IncomeSource\": \"Wages or salaries\",\n            \"Countable\": \"Countable\",\n            \"MonthlyIncome\": \"2166.00\",\n            \"Comment\": \"\",\n            \"StartDate\": \"03/07/2014\",\n            \"EndDate\": \"03/26/2014\",\n            \"RowVersion\": \"20201027013903\",\n            \"Disable\": false\n        },\n        {\n            \"IncomeID\": 12,\n            \"FamilyID\": 1082,\n            \"ParentID\": 1263,\n            \"ChildID\": 0,\n            \"IncomeSource\": \"Food stamps\",\n            \"Countable\": \"Not Countable\",\n            \"MonthlyIncome\": \"180.00\",\n            \"Comment\": \"\",\n            \"StartDate\": \"11/16/2012\",\n            \"EndDate\": \"03/26/2014\",\n            \"RowVersion\": \"20201027013903\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"d2faa1e5-b1cc-493f-aae2-c93712ea8093"},{"name":"QueryCare","id":"433d460e-2431-45a5-9371-bb6de6593afe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/care?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Care Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","care"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"f5e28fd2-2a64-4c75-b602-fce6b789795f","name":"QueryCare","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/care?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","care"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:39:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"715"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 42519,\n    \"Data\": [\n        {\n            \"CareID\": 11,\n            \"CaseID\": 23660,\n            \"ChildID\": 45920,\n            \"FamilyID\": 23660,\n            \"ProviderID\": 7180,\n            \"Program\": \"\",\n            \"Status\": \"Active\",\n            \"StartDate\": \"06/01/2014\",\n            \"EndDate\": \"06/30/2014\",\n            \"HasFamilyFee\": \"Y\",\n            \"VariableSet\": \"Set\",\n            \"AlternativeProvider\": \"N\",\n            \"SpecialNeedAdjustment\": \"1.0000\",\n            \"Comment\": \"\",\n            \"RowVersion\": \"20201027003102\",\n            \"Disable\": false\n        },\n        {\n            \"CareID\": 12,\n            \"CaseID\": 26488,\n            \"ChildID\": 51241,\n            \"FamilyID\": 26488,\n            \"ProviderID\": 358,\n            \"Program\": \"\",\n            \"Status\": \"Active\",\n            \"StartDate\": \"06/01/2014\",\n            \"EndDate\": \"06/30/2014\",\n            \"HasFamilyFee\": \"Y\",\n            \"VariableSet\": \"Variable\",\n            \"AlternativeProvider\": \"N\",\n            \"SpecialNeedAdjustment\": \"1.0000\",\n            \"Comment\": \"\",\n            \"RowVersion\": \"20201027003102\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"433d460e-2431-45a5-9371-bb6de6593afe"},{"name":"QueryProvider","id":"cca584fb-2648-4cc8-80e7-5230c330fa37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/provider?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Provider Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","provider"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"c9ad699c-58fe-41b7-afea-4444bdd916b8","name":"QueryProvider","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/provider?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","provider"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 28 Oct 2020 11:40:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1190"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 3564,\n    \"Data\": [\n        {\n            \"ProviderID\": 44,\n            \"VenderNO\": \"960559\",\n            \"BusinessName\": \"DEMO44, EILEEN\",\n            \"Last\": \"DEMO44\",\n            \"First\": \"EILEEN\",\n            \"MI\": \"C\",\n            \"ProviderType\": \"Licensed Small Family Home\",\n            \"Status\": \"Active\",\n            \"Gender\": \"\",\n            \"DOB\": \"09/19/1964\",\n            \"DriversLicense\": \"C8809178\",\n            \"Address\": \"[Redacted Address]], West Covina, CA 91790-2344\",\n            \"Language\": \"English\",\n            \"Phone1\": \"(828) 680-0781\",\n            \"Phone2\": \"(828) 680-0781\",\n            \"Cell\": \"(828) 680-0781\",\n            \"Email\": \"TEST7@MCTTECHNOLOGY.COM\",\n            \"StartDate\": \"06/01/2014\",\n            \"EndDate\": \"\",\n            \"LegalName\": \"EILEEN C Demo44\",\n            \"SSN\": \"123-92-8486\",\n            \"TIN\": \"\",\n            \"RowVersion\": \"20201027071002\",\n            \"Disable\": false\n        },\n        {\n            \"ProviderID\": 45,\n            \"VenderNO\": \"960559\",\n            \"BusinessName\": \"Provider 45\",\n            \"Last\": \"Demo45\",\n            \"First\": \"CLAREMONT UNITED CHURCH OF CHR\",\n            \"MI\": \"\",\n            \"ProviderType\": \"Licensed Center\",\n            \"Status\": \"Active\",\n            \"Gender\": \"\",\n            \"DOB\": \"\",\n            \"DriversLicense\": \"\",\n            \"Address\": \"[Redacted Address]], Claremont, CA 91711-4324\",\n            \"Language\": \"English\",\n            \"Phone1\": \"(315)628-1288\",\n            \"Phone2\": \"(315)628-1288\",\n            \"Cell\": \"(315)628-1288\",\n            \"Email\": \"test8@mcttechnology.com\",\n            \"StartDate\": \"06/01/2014\",\n            \"EndDate\": \"\",\n            \"LegalName\": \"  Demo45\",\n            \"SSN\": \"\",\n            \"TIN\": \"99-3325867\",\n            \"RowVersion\": \"20201027071002\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"cca584fb-2648-4cc8-80e7-5230c330fa37"},{"name":"QueryProviderLicense","id":"00577f06-4b07-4f47-8efc-30673f33cd35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/provider/license?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Provider License Records</p>\n<p>The age is returned in <strong>\"Month\"</strong>, for example:</p>\n<p>Min Age: 24.00 indicate 2 years old</p>\n<p>Max Age: 71.00 indicate 5 years 11 months old</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","provider","license"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"ac1dc2af-4ce9-40ec-8f53-3dda46845a6b","name":"QueryProviderLicense","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/provider/license?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","provider","license"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 04 Mar 2022 08:23:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5469"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"5dbe0f9c-0a48-4f48-955b-f52ddd26cfed"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"x-amzn-Remapped-Content-Length","value":"5469"},{"key":"x-amzn-Remapped-Connection","value":"keep-alive"},{"key":"x-amz-apigw-id","value":"Oczn9EnovHcFmSw="},{"key":"Vary","value":"Accept"},{"key":"x-amzn-Remapped-Server","value":"Microsoft-IIS/8.5"},{"key":"Cache-Control","value":"private"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"x-amzn-Remapped-Date","value":"Fri, 04 Mar 2022 08:23:53 GMT"},{"key":"X-AspNet-Version","value":"4.0.30319"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 0,\n    \"Total\": 201,\n    \"Data\": [\n        {\n            \"LicenseID\": 54,\n            \"ProviderID\": 24236,\n            \"ProviderName\": \"[Training] ALL SOULS EXTENDED CARE\",\n            \"LicenseNo\": \"24236\",\n            \"IssueDate\": \"09/15/2021\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"LICENSE EXEMPT CENTER\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 54,\n                    \"MinAge\": 60.00,\n                    \"MaxAge\": 179.00,\n                    \"Capacity\": 10\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 147,\n            \"ProviderID\": 13580,\n            \"ProviderName\": \"[Training] TSYURA, IRINA\",\n            \"LicenseNo\": \"414002194\",\n            \"IssueDate\": \"08/09/2007\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 147,\n                    \"MinAge\": 2.00,\n                    \"MaxAge\": 191.00,\n                    \"Capacity\": 14\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 148,\n            \"ProviderID\": 21466,\n            \"ProviderName\": \"[Training] CHEN, YU QIONG\",\n            \"LicenseNo\": \"384001958\",\n            \"IssueDate\": \"12/04/2009\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 148,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 179.00,\n                    \"Capacity\": 8\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 157,\n            \"ProviderID\": 9637,\n            \"ProviderName\": \"[Training] TORRES, ZONIA\",\n            \"LicenseNo\": \"384001751\",\n            \"IssueDate\": \"09/04/2007\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 157,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 167.00,\n                    \"Capacity\": 14\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 193,\n            \"ProviderID\": 22882,\n            \"ProviderName\": \"[Training] PUREVDORJ, TUUL\",\n            \"LicenseNo\": \"384002281\",\n            \"IssueDate\": \"05/30/2012\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 193,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 71.00,\n                    \"Capacity\": 14\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 204,\n            \"ProviderID\": 6839,\n            \"ProviderName\": \"[Training] DELIA'S LITTLE ANGELS INC\",\n            \"LicenseNo\": \"384000854\",\n            \"IssueDate\": \"01/08/2001\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 204,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 251.00,\n                    \"Capacity\": 14\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 212,\n            \"ProviderID\": 16140,\n            \"ProviderName\": \"[Training] BIG SMILE CHILDCARE\",\n            \"LicenseNo\": \"384000990\",\n            \"IssueDate\": \"03/12/2002\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 212,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 251.00,\n                    \"Capacity\": 14\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 213,\n            \"ProviderID\": 13774,\n            \"ProviderName\": \"[Training] ALVES, ANA PAULA SILVA\",\n            \"LicenseNo\": \"384001571\",\n            \"IssueDate\": \"01/12/2006\",\n            \"ExpirationDate\": \"12/26/2017\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 213,\n                    \"MinAge\": 0.00,\n                    \"MaxAge\": 192.00,\n                    \"Capacity\": 8\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 225,\n            \"ProviderID\": 243,\n            \"ProviderName\": \"[Training] COMPASS FAMILY SERVICES- COMPASS CLARA HOUSE\",\n            \"LicenseNo\": \"380506508\",\n            \"IssueDate\": \"01/31/1995\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"7:00AM-6:30PM- MONDAY - FRIDAY Preschool\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 225,\n                    \"MinAge\": 24.00,\n                    \"MaxAge\": 71.00,\n                    \"Capacity\": 9\n                }\n            ]\n        },\n        {\n            \"LicenseID\": 226,\n            \"ProviderID\": 243,\n            \"ProviderName\": \"[Training] COMPASS FAMILY SERVICES- COMPASS CLARA HOUSE\",\n            \"LicenseNo\": \"380506510\",\n            \"IssueDate\": \"01/31/1995\",\n            \"ExpirationDate\": \"01/01/1900\",\n            \"InsuranceAffidavit\": \"\",\n            \"Comments\": \"3:00PM-6:00PM MONDAY-FRIDAY School age\",\n            \"RowVersion\": \"20220303041004\",\n            \"Disable\": false,\n            \"Capacity\": [\n                {\n                    \"LicenseID\": 226,\n                    \"MinAge\": 72.00,\n                    \"MaxAge\": 144.00,\n                    \"Capacity\": 5\n                }\n            ]\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"00577f06-4b07-4f47-8efc-30673f33cd35"},{"name":"QueryClaim","id":"40bf9e50-cc53-466e-a97c-8fefa26ffc8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":"{{api_gateway}}/customize/query/verticalchange/claim?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","description":"<p>Get Claim Records</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["customize","query","verticalchange","claim"],"host":["{{api_gateway}}"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}"}],"variable":[]}},"response":[{"id":"6ef056ea-5acb-447c-9037-1989848aafb5","name":"QueryClaim","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/json"},{"key":"Content-Type","type":"text","value":"application/json"},{"key":"x-api-key","type":"text","value":"{{x-api-key}}"}],"url":{"raw":"{{api_gateway}}/customize/query/verticalchange/claim?Take={{take}}&Skip={{skip}}&RowVersionGreaterThan={{rowversion}}&CustomerCode={{customercode}}","host":["{{api_gateway}}"],"path":["customize","query","verticalchange","claim"],"query":[{"key":"Take","value":"{{take}}"},{"key":"Skip","value":"{{skip}}"},{"key":"RowVersionGreaterThan","value":"{{rowversion}}"},{"key":"CustomerCode","value":"{{customercode}}","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 29 Oct 2020 01:28:08 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"927"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"private"},{"key":"Vary","value":"Accept"},{"key":"Server","value":"Microsoft-IIS/8.5"},{"key":"X-Powered-By","value":"ServiceStack/5.80 Net45/Windows, ASP.NET"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, DELETE, PATCH, OPTIONS, HEAD"},{"key":"Access-Control-Allow-Headers","value":"Content-Type"},{"key":"X-AspNet-Version","value":"4.0.30319"},{"key":"Access-Control-Allow-Credentials","value":"true"}],"cookie":[],"responseTime":null,"body":"{\n    \"Offset\": 10,\n    \"Total\": 114359,\n    \"Data\": [\n        {\n            \"ClaimID\": 11,\n            \"FamilyID\": 25965,\n            \"ChildID\": 50205,\n            \"ProviderID\": 855,\n            \"CareID\": \"7299\",\n            \"StartDate\": \"07/01/2014\",\n            \"EndDate\": \"07/31/2014\",\n            \"Program\": \"C2AP\",\n            \"ClaimType\": \"Child Care Payment\",\n            \"Amount\": 759,\n            \"FamilyFeeAmount\": 46,\n            \"RegistrationFee\": 32.34,\n            \"FTPlusAmount\": 0,\n            \"DropInAmount\": 0,\n            \"ClaimStatus\": \"Processed\",\n            \"Comment\": \"\",\n            \"PayDate\": \"09/25/2014\",\n            \"RowVersion\": \"20201027015355\",\n            \"Disable\": false\n        },\n        {\n            \"ClaimID\": 12,\n            \"FamilyID\": 25965,\n            \"ChildID\": 50205,\n            \"ProviderID\": 855,\n            \"CareID\": \"7299\",\n            \"StartDate\": \"08/01/2014\",\n            \"EndDate\": \"08/31/2014\",\n            \"Program\": \"C2AP\",\n            \"ClaimType\": \"Child Care Payment\",\n            \"Amount\": 594,\n            \"FamilyFeeAmount\": 36,\n            \"RegistrationFee\": 30.93,\n            \"FTPlusAmount\": 0,\n            \"DropInAmount\": 0,\n            \"ClaimStatus\": \"Processed\",\n            \"Comment\": \"Provider asked for 720.00 - CC3 paid FTWeekly - 3 unexcused days.\",\n            \"PayDate\": \"09/25/2014\",\n            \"RowVersion\": \"20201027015355\",\n            \"Disable\": false\n        }\n    ],\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"40bf9e50-cc53-466e-a97c-8fefa26ffc8d"}],"id":"ae437841-a2f1-4eb5-b0ad-4e973dcbdd9b","_postman_id":"ae437841-a2f1-4eb5-b0ad-4e973dcbdd9b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}}},{"name":"Attendance","item":[{"name":"SubmitAttendance","id":"b48ec59a-7d9d-449a-b2e9-739e135e4c36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ClaimId\": \"497453\",\n    \"ServiceMonth\": \"202110\",\n    \"FamilyFee\": \"10.00\",\n    \"Amount\": \"24.55\",\n    \"AttData\": [\n        {\n            \"InOuts\": [],\n            \"AttDate\": \"20211001\",\n            \"Comment\": \"Ill at home\",\n            \"AbsenceType\": \"Illed\",\n            \"IsAbsence\": true\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"050000\",\n                    \"signOut\": \"130000\"\n                },\n                {\n                    \"signIn\": \"140000\",\n                    \"signOut\": \"180000\"\n                }\n            ],\n            \"AttDate\": \"20211002\",\n            \"Comment\": \"Friday\",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"053100\",\n                    \"signOut\": \"063100\"\n                },\n                {\n                    \"signIn\": \"180000\",\n                    \"signOut\": \"191500\"\n                }\n            ],\n            \"AttDate\": \"20211003\",\n            \"Comment\": \" \",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"053100\",\n                    \"signOut\": \"063100\"\n                },\n                {\n                    \"signIn\": \"180000\",\n                    \"signOut\": \"191500\"\n                }\n            ],\n            \"AttDate\": \"20211006\",\n            \"Comment\": \" \",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"063400\",\n                    \"signOut\": \"165500\"\n                }\n            ],\n            \"AttDate\": \"20211004\",\n            \"Comment\": \"Nice Day\",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        }\n    ],\n    \"ClaimLogs\": [\n        {\n            \"LogTime\": \"20210601133000\",\n            \"LogContent\": \"The provider submits the claim\"\n        },\n        {\n            \"LogTime\": \"20210603153223\",\n            \"LogContent\": \"The parent sign the claim\"\n        }\n    ],\n    \"Files\": [\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"Base64\": \"WwogIHsKICAgICJMb2dDb250ZW50IjogIlRoZSBwcm92aWRlciBzdWJtaXRzIHRoZSBjbGFpbSBpbiBmaWxlcyIsCiAgICAiTG9nVGltZSI6ICIyMDIxMDYwMTEzMzAwMCIKICB9LAogIHsKICAgICJMb2dDb250ZW50IjogIlRoZSBwYXJlbnQgc2lnbiB0aGUgY2xhaW0gaW4gZmlsZXMiLAogICAgIkxvZ1RpbWUiOiAiMjAyMTA2MDMxNTMyMjMiCiAgfQpd\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        },\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"FileURL\": \"https://xxx.xxx.com/claimlogs.json\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        },\n        {\n            \"Name\": \"workingtime.pdf\",\n            \"FileURL\": \"https://xxx.xxx.com/workingtime.pdf\",\n            \"MIMEType\": \"application/pdf\",\n            \"Meta\": {\n                \"Type\": \"SupportDocument \"\n            }\n        },\n        {\n            \"Name\": \"providersign.png\",\n            \"FileURL\": \"https://xxx.xxx.com/providersign.png\",\n            \"MIMEType\": \"image/png\",\n            \"Meta\": {\n                \"Type\": \"ProviderSignature \"\n            }\n        },\n        {\n            \"Name\": \"parentsign.jpeg\",\n            \"MIMEType\": \"image/jpeg\",\n            \"Base64\": \"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\",\n            \"Meta\": {\n                \"Type\": \"ParentSignature \"\n            }\n        }\n    ],\n    \"CallBackURL\": \"https://xxx.xxx.com/xxx\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_gateway}}/vc/customize/verticalchange/claim/submission","description":"<h1 id=\"overview\">Overview</h1>\n<p>Submit the claim with attendance, logs and support document(s).</p>\n<p>The API would return a <strong>SubmissionNo</strong> as long as the submission result once the whole process is complete. </p>\n<p>Use the <strong>SubmissionNo</strong> to check the submission result via <strong>QuerySubmissionResult</strong> API.</p>\n<p>Or use <strong>CallBackURL</strong> (optional) to get the response without waiting for API execution result.</p>\n<h1 id=\"validation\">Validation</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error Message</th>\n<th>Cause</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Claim doesn't exist</td>\n<td>Claim ID does not exist in CC3</td>\n</tr>\n<tr>\n<td>Claim service month doesn’t match</td>\n<td>Claim service month does not match submission service month</td>\n</tr>\n<tr>\n<td>This is a future month claim, cannot be submitted yet</td>\n<td>Service Month is future month</td>\n</tr>\n<tr>\n<td>Attendance was paid already</td>\n<td>Claim status is processed</td>\n</tr>\n<tr>\n<td>Attendance is in process already</td>\n<td>Claim status is not in either \"New\", \"Printed\" or \"Returned\" status</td>\n</tr>\n<tr>\n<td>Attendance format is not correct</td>\n<td>More then 2 sign in/out for one day, or Sign in/out time is not paired, or Not all dates are within the service month, or Absence and sign in/out coexist for the same day</td>\n</tr>\n<tr>\n<td>Invalid MINE type</td>\n<td>Only these MINE types are supported: MINE type only allow: application/json, application/pdf, image/png, image/jpeg</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"claimlogs\">ClaimLogs</h1>\n<p>It could be submit in json data format or in file format.</p>\n<p>Submit submission logs in json data format</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"ClaimLogs\": [\n        {\n            \"LogTime\": \"20210601133000\",\n            \"LogContent\": \"The provider submits the claim\"\n        },\n        {\n            \"LogTime\": \"20210603153223\",\n            \"LogContent\": \"The parent sign the claim\"\n        }\n    ]\n</code></pre><p>Submit submission logs in file</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"Files\": [\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"Base64\": \"xxxxxxxxxx\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        },\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"FileURL\": \"https://xxx.xxx.com/claimlogs.json\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        }\n]\n</code></pre><p>Sample submission logs file format</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>[\n        {\n            \"LogTime\": \"20210601133000\",\n            \"LogContent\": \"The provider submits the claim\"\n        },\n        {\n            \"LogTime\": \"20210603153223\",\n            \"LogContent\": \"The parent sign the claim\"\n        }\n    ]\n</code></pre>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["vc","customize","verticalchange","claim","submission"],"host":["{{api_gateway}}"],"query":[],"variable":[]}},"response":[{"id":"fde7f74c-ff7c-4556-bde6-2bd120767c4d","name":"SubmitAttendance","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"ClaimId\": \"497453\",\n    \"ServiceMonth\": \"202110\",\n    \"FamilyFee\": \"10.00\",\n    \"Amount\": \"24.55\",\n    \"AttData\": [\n        {\n            \"InOuts\": [],\n            \"AttDate\": \"20211001\",\n            \"Comment\": \"Ill at home\",\n            \"AbsenceType\": \"Illed\",\n            \"IsAbsence\": true\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"050000\",\n                    \"signOut\": \"130000\"\n                },\n                {\n                    \"signIn\": \"140000\",\n                    \"signOut\": \"180000\"\n                }\n            ],\n            \"AttDate\": \"20211002\",\n            \"Comment\": \"Friday\",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"053100\",\n                    \"signOut\": \"063100\"\n                },\n                {\n                    \"signIn\": \"180000\",\n                    \"signOut\": \"191500\"\n                }\n            ],\n            \"AttDate\": \"20211003\",\n            \"Comment\": \" \",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"053100\",\n                    \"signOut\": \"063100\"\n                },\n                {\n                    \"signIn\": \"180000\",\n                    \"signOut\": \"191500\"\n                }\n            ],\n            \"AttDate\": \"20211006\",\n            \"Comment\": \" \",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        },\n        {\n            \"InOuts\": [\n                {\n                    \"signIn\": \"063400\",\n                    \"signOut\": \"165500\"\n                }\n            ],\n            \"AttDate\": \"20211004\",\n            \"Comment\": \"Nice Day\",\n            \"AbsenceType\": \" \",\n            \"IsAbsence\": false\n        }\n    ],\n    \"ClaimLogs\": [\n        {\n            \"LogTime\": \"20210601133000\",\n            \"LogContent\": \"The provider submits the claim\"\n        },\n        {\n            \"LogTime\": \"20210603153223\",\n            \"LogContent\": \"The parent sign the claim\"\n        }\n    ],\n    \"Files\": [\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"Base64\": \"WwogIHsKICAgICJMb2dDb250ZW50IjogIlRoZSBwcm92aWRlciBzdWJtaXRzIHRoZSBjbGFpbSBpbiBmaWxlcyIsCiAgICAiTG9nVGltZSI6ICIyMDIxMDYwMTEzMzAwMCIKICB9LAogIHsKICAgICJMb2dDb250ZW50IjogIlRoZSBwYXJlbnQgc2lnbiB0aGUgY2xhaW0gaW4gZmlsZXMiLAogICAgIkxvZ1RpbWUiOiAiMjAyMTA2MDMxNTMyMjMiCiAgfQpd\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        },\n        {\n            \"Name\": \"claimlogs.json\",\n            \"MIMEType\": \"application/json\",\n            \"FileURL\": \"https://xxx.xxx.com/claimlogs.json\",\n            \"Meta\": {\n                \"Type\": \"ClaimLog\"\n            }\n        },\n        {\n            \"Name\": \"workingtime.pdf\",\n            \"FileURL\": \"https://xxx.xxx.com/workingtime.pdf\",\n            \"MIMEType\": \"application/pdf\",\n            \"Meta\": {\n                \"Type\": \"SupportDocument \"\n            }\n        },\n        {\n            \"Name\": \"providersign.png\",\n            \"FileURL\": \"https://xxx.xxx.com/providersign.png\",\n            \"MIMEType\": \"image/png\",\n            \"Meta\": {\n                \"Type\": \"ProviderSignature \"\n            }\n        },\n        {\n            \"Name\": \"parentsign.jpeg\",\n            \"MIMEType\": \"image/jpeg\",\n            \"Base64\": \"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\",\n            \"Meta\": {\n                \"Type\": \"ParentSignature \"\n            }\n        }\n    ],\n    \"CallBackURL\": \"https://xxx.xxx.com/xxx\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_gateway}}/vc/customize/verticalchange/claim/submission"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"SubmissionNo\": 11,\n    \"SubmissionStatus\": \"Processed\",\n    \"ClaimId\": 497453,\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"b48ec59a-7d9d-449a-b2e9-739e135e4c36"},{"name":"QuerySubmissionResult","id":"26e37d93-15cc-4a0f-a35b-72c91be2fe71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"}],"url":"{{api_gateway}}/vc/customize/verticalchange/claim/submission/status?SubmissionNo={{submissionNo}}","description":"<p>Use the <strong>SubmissionNo</strong> which is returned from <strong>SubmitAttendance API</strong> to check the submission result.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>SubmissionStatus</th>\n<th>Notes</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>New</td>\n<td>The submission is being processing.</td>\n</tr>\n<tr>\n<td>Processed</td>\n<td>The submission has been processed successfully.</td>\n</tr>\n<tr>\n<td>Failed</td>\n<td>The submission is failed. Check <strong>SubmissionResult</strong> for more details.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}},"urlObject":{"path":["vc","customize","verticalchange","claim","submission","status"],"host":["{{api_gateway}}"],"query":[{"key":"SubmissionNo","value":"{{submissionNo}}"}],"variable":[]}},"response":[{"id":"d209434f-cf47-4b7a-8c00-a697cf1dd59b","name":"QuerySubmissionResult","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"},{"key":"x-api-key","value":"{{x-api-key}}","type":"text"}],"url":{"raw":"{{api_gateway}}/vc/customize/verticalchange/claim/submission/status?SubmissionNo=11","host":["{{api_gateway}}"],"path":["vc","customize","verticalchange","claim","submission","status"],"query":[{"key":"SubmissionNo","value":"11"}]}},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"SubmissionNo\": 11,\n    \"SubmissionStatus\": \"Processed\",\n    \"ClaimId\": 497453,\n    \"SubmissionResult\": \"\",\n    \"IsSuccess\": true,\n    \"ErrCode\": 200,\n    \"ErrMsg\": \"\"\n}"}],"_postman_id":"26e37d93-15cc-4a0f-a35b-72c91be2fe71"}],"id":"3ad85e9d-e33b-4e9a-857c-00ce5da882f3","_postman_id":"3ad85e9d-e33b-4e9a-857c-00ce5da882f3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]},"isInherited":true,"source":{"_postman_id":"5b400615-fdc5-40ec-95a2-d1d6029db671","id":"5b400615-fdc5-40ec-95a2-d1d6029db671","name":"CCSF Vertical Change API Service","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-api-key"},{"key":"value","value":"<value>"}]}},"event":[{"listen":"prerequest","script":{"id":"aa870489-2d64-4603-bb13-6cadf79ebf8f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48f13387-75ad-43f3-9a21-95963a508956","type":"text/javascript","exec":[""]}}]}