Taiga
API ReferenceContractsV3

Get contract provider credentialing spans

Returns rendering providers linked to a contract with their credentialing spans, scoped to the contract's contracting provider and payer. Providers with no matching spans are included with an empty list.

GET
/api/contracts/v3/{contract_id}/providers/credentialing

Authorization

BearerAuth
AuthorizationBearer <token>

Send your Taiga API key as a Bearer token. Create and manage keys in the Taiga developer portal.

In: header

Path Parameters

contract_id*contractsv3ContractId
Formatuuid

Query Parameters

page_token?PageToken|null
limit?|

Max number of providers returned per page. Defaults to 100. Max is 1000.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/contracts/v3/497f6eca-6276-4993-bfeb-53cbbbba6f08/providers/credentialing"
{  "items": [    {      "provider": {        "organization_provider_id": "0eb5b823-8052-4a17-b159-d111210f9bd7",        "employment_status": "ACTIVE",        "employment_start_date": "string",        "employment_termination_date": "string",        "npi": "string",        "is_rendering": true,        "is_billing": true,        "first_name": "string",        "last_name": "string",        "organization_name": "string",        "provider_type": "INDIVIDUAL",        "tax_id": "string",        "taxonomy_code": "string",        "license_type": "MD",        "ptan": "string",        "medicaid_provider_id": "string",        "addresses": [          {            "address": {              "zip_plus_four_code": "1234",              "address1": "string",              "address2": "string",              "city": "string",              "state": "AA",              "zip_code": "string"            },            "address_type": "DEFAULT"          }        ]      },      "credentialing_spans": [        {          "provider_credentialing_span_id": "24fa5a18-56cb-40fc-a030-c5fbe7ad9f78",          "rendering_provider": {            "npi": "1234567890",            "is_rendering": true,            "is_billing": true,            "first_name": "string",            "last_name": "string",            "organization_name": "string",            "provider_type": "INDIVIDUAL",            "tax_id": "string",            "taxonomy_code": "string",            "license_type": "MD",            "addresses": [              {                "address": {                  "zip_plus_four_code": "1234",                  "address1": "string",                  "address2": "string",                  "city": "string",                  "state": "AA",                  "zip_code": "string"                },                "address_type": "DEFAULT"              }            ],            "employment_start_date": "2019-08-24",            "employment_termination_date": "2019-08-24",            "organization_provider_id": "0eb5b823-8052-4a17-b159-d111210f9bd7",            "qualifications": [              {                "identifier_id": "a400f51e-8863-4890-9fd3-3f462d124526",                "period": {                  "start_date": "string",                  "end_date": "string"                },                "identifier_code": "MCR",                "identifier_value": {                  "type": "medicare_provider_identifier",                  "state": "AA",                  "provider_number": "string",                  "organization_service_facility_id": "f743a062-7755-4bce-851c-006d826eeb5e"                }              }            ]          },          "regions": {            "type": "states",            "states": [              "AA"            ]          },          "medallion_payer_enrollment_id": "b22da96f-9521-400d-ac61-f1301acf768f",          "source": "string",          "contracting_provider": {            "npi": "1234567890",            "is_rendering": true,            "is_billing": true,            "first_name": "string",            "last_name": "string",            "organization_name": "string",            "provider_type": "INDIVIDUAL",            "tax_id": "string",            "taxonomy_code": "string",            "license_type": "MD",            "addresses": [              {                "address": {                  "zip_plus_four_code": "1234",                  "address1": "string",                  "address2": "string",                  "city": "string",                  "state": "AA",                  "zip_code": "string"                },                "address_type": "DEFAULT"              }            ],            "employment_start_date": "2019-08-24",            "employment_termination_date": "2019-08-24",            "organization_provider_id": "0eb5b823-8052-4a17-b159-d111210f9bd7",            "qualifications": [              {                "identifier_id": "a400f51e-8863-4890-9fd3-3f462d124526",                "period": {                  "start_date": "string",                  "end_date": "string"                },                "identifier_code": "MCR",                "identifier_value": {                  "type": "medicare_provider_identifier",                  "state": "AA",                  "provider_number": "string",                  "organization_service_facility_id": "f743a062-7755-4bce-851c-006d826eeb5e"                }              }            ]          },          "payer": {            "payer_uuid": "ecc6b222-ef84-4433-9856-dedc46036dc7",            "payer_id": "12345",            "payer_name": "Payer Name",            "availity_payer_name": "string",            "availity_claims_payer_id": "string",            "availity_eligibility_id": "string",            "availity_remittance_payer_id": "string",            "street_address": {              "zip_plus_four_code": "1234",              "address1": "string",              "address2": "string",              "city": "string",              "state": "AA",              "zip_code": "string"            }          },          "start_date": "2019-08-24",          "end_date": "2019-08-24",          "submitted_date": "2019-08-24",          "credentialing_status": "work_in_progress",          "payer_loaded_date": "2019-08-24",          "is_enabled": true        }      ]    }  ],  "prev_page_token": "string",  "next_page_token": "string"}