Service Facility

Update

Beta
PATCH

Path parameters

service_facility_idUUIDRequired

Request

This endpoint expects an object.
organization_name
stringOptional
npi
stringOptional
An NPI specific to the service facility if applicable, i.e. if it has one and is not under the billing provider's NPI. Box 32 section (a) of the CMS-1500 claim form.
address
objectOptional

zip_plus_four_code is required for service facility address. When the zip_plus_four_code is not available use “9998” as per CMS documentation.

Response

This endpoint returns an object
service_facility_id
UUID
organization_name
string
address
object

zip_plus_four_code is required for service facility address. When the zip_plus_four_code is not available use “9998” as per CMS documentation.

npi
stringOptional
An NPI specific to the service facility if applicable, i.e. if it has one and is not under the billing provider's NPI. Box 32 section (a) of the CMS-1500 claim form.
PATCH
1curl -X PATCH https://api.joincandidhealth.com/api/service_facility/v2/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32 \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
200Updated
1{
2 "service_facility_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
3 "organization_name": "string",
4 "address": {
5 "address1": "string",
6 "city": "string",
7 "state": "AA",
8 "zip_code": "string",
9 "zip_plus_four_code": "string",
10 "address2": "string"
11 },
12 "npi": "string"
13}