Organization ProvidersV3

Update organization provider

PATCH

Path parameters

organization_provider_idUUIDRequired

Request

This endpoint expects an object.
npi
stringOptional
The NPI of the provider. This must be all digits [0-9] and exactly 10 characters long.
is_rendering
booleanOptional
Whether the provider can be used to render services.
is_billing
booleanOptional
Whether the provider can be used to bill services.
first_name
stringOptional
The first name of the provider, if the provider is an individual.
last_name
stringOptional
The last name of the provider, if the provider is an individual.
organization_name
stringOptional
The name of the provider, if the provider is an organization.
provider_type
enumOptional
Whether the provider is an individual (NPPES Type 1) or organization (NPPES Type 2) provider.
Allowed values: INDIVIDUALORGANIZATION
tax_id
stringOptional
If the provider has a contract with insurance, this must be the same tax ID given to the payer on an IRS W-9 form completed during contracting.
taxonomy_code
stringOptional
A code designating classification and specialization.
license_type
enumOptional
The type of license that the provider holds.
addresses
list of objectsOptional
The addresses associated with this provider.
employment_start_date
stringOptional
The employment start date for the provider.
employment_termination_date
stringOptional
The employment termination date for the provider.
qualifications
list of unionsOptional
Provider's qualifications (medicare provider number, medicaid provider number, etc.)

Response

This endpoint returns an object
npi
string
The NPI of the provider. This must be all digits [0-9] and exactly 10 characters long.
is_rendering
boolean
Whether the provider can be used to render services.
is_billing
boolean
Whether the provider can be used to bill services.
provider_type
enum
Whether the provider is an individual (NPPES Type 1) or organization (NPPES Type 2) provider.
Allowed values: INDIVIDUALORGANIZATION
license_type
enum
The type of license that the provider holds.
organization_provider_id
UUID
Auto-generated ID set on creation.
qualifications
list of objects
Qualification given to a provider (PTAN, Medicaid Provider Id etc.).
first_name
stringOptional
The first name of the provider, if the provider is an individual.
last_name
stringOptional
The last name of the provider, if the provider is an individual.
organization_name
stringOptional
The name of the provider, if the provider is an organization.
tax_id
stringOptional
If the provider has a contract with insurance, this must be the same tax ID given to the payer on an IRS W-9 form completed during contracting.
taxonomy_code
stringOptional
A code designating classification and specialization.
addresses
list of objectsOptional
The addresses associated with this provider.
employment_start_date
dateOptional
The employment start date for the provider.
employment_termination_date
dateOptional
The employment termination date for the provider.

Errors

PATCH
1curl -X PATCH https://api.joincandidhealth.com/api/organization-providers/v3/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32 \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
1{
2 "npi": "string",
3 "is_rendering": true,
4 "is_billing": true,
5 "provider_type": "INDIVIDUAL",
6 "license_type": "MD",
7 "organization_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
8 "qualifications": [
9 {
10 "identifier_code": "MCR",
11 "identifier_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
12 "identifier_value": {
13 "type": "medicare_provider_identifier",
14 "provider_number": "string",
15 "state": "AA"
16 },
17 "period": {
18 "start_date": "string",
19 "end_date": "string"
20 }
21 }
22 ],
23 "first_name": "string",
24 "last_name": "string",
25 "organization_name": "string",
26 "tax_id": "string",
27 "taxonomy_code": "string",
28 "addresses": [
29 {
30 "address": {
31 "address1": "string",
32 "city": "string",
33 "state": "AA",
34 "zip_code": "string",
35 "zip_plus_four_code": "string",
36 "address2": "string"
37 },
38 "address_type": "DEFAULT"
39 }
40 ],
41 "employment_start_date": "2023-01-01",
42 "employment_termination_date": "2023-01-01"
43}