curl --request POST \
--url https://api.spikecare.com/public/v1/clinics \
--header 'Content-Type: application/json' \
--data '
{
"city": "<string>",
"name": "<string>",
"npi": 5499999999,
"phone": "<string>",
"state": "<string>",
"street": "<string>",
"tax_id": "<string>",
"zip_code": "<string>"
}
'{
"city": "<string>",
"id": 2,
"name": "<string>",
"npi": 5499999999,
"phone": "<string>",
"state": "<string>",
"street": "<string>",
"tax_id": "<string>",
"zip_code": "<string>",
"$schema": "<string>"
}Register a new clinic (practice location) for your EMR. Provide NPI, tax ID, and address so the clinic can be used for patient assignment and insurance/benefits workflows.
curl --request POST \
--url https://api.spikecare.com/public/v1/clinics \
--header 'Content-Type: application/json' \
--data '
{
"city": "<string>",
"name": "<string>",
"npi": 5499999999,
"phone": "<string>",
"state": "<string>",
"street": "<string>",
"tax_id": "<string>",
"zip_code": "<string>"
}
'{
"city": "<string>",
"id": 2,
"name": "<string>",
"npi": 5499999999,
"phone": "<string>",
"state": "<string>",
"street": "<string>",
"tax_id": "<string>",
"zip_code": "<string>",
"$schema": "<string>"
}City.
1 - 100Display name of the clinic or practice location.
1 - 25510-digit National Provider Identifier (NPI) for the organization.
1000000000 <= x <= 9999999999Primary contact phone number for the clinic.
1 - 30State or province code (e.g. two-letter US state).
1 - 50Street address line (number and street name).
1 - 255Federal EIN or TIN for the clinic (no dashes).
1 - 20US ZIP code; 5 digits or 5+4 (ZIP+4).
1 - 20^[0-9]{5}(-[0-9]{4})?$OK
City.
1 - 100Unique clinic identifier assigned by the API.
x >= 1Display name of the clinic or practice location as it appears in your EMR.
1 - 25510-digit National Provider Identifier (NPI) for the organization.
1000000000 <= x <= 9999999999Primary contact phone number for the clinic.
1 - 30State or province code (e.g. two-letter US state).
1 - 50Street address line (number and street name).
1 - 255Federal EIN or TIN for the clinic (no dashes).
1 - 20US ZIP code; 5 digits or 5+4 (ZIP+4).
1 - 20^[0-9]{5}(-[0-9]{4})?$A URL to the JSON Schema for this object.
"https://api.spikecare.com/public/v1/schemas/Clinic.json"