Create a new credentialing request

Creates a new credentialing request for a provider or facility.

Request
Request Body schema: application/json
providerId
string <uuid>

If credentialing a provider, the unique identifier of the provider associated with this credentialing request. Mutually exclusive with facilityId.

facilityId
string <uuid>

If credentialing a facility, the unique identifier of the facility associated with this credentialing request. Mutually exclusive with providerId.

type
string

The type of credentialing request. If not specified, this will default to Initial.

Enum: "Initial" "ReCredentialing"
priority
string

The priority of credentialing request. If not specified, this will default to Medium.

Enum: "Low" "Medium" "High" "Urgent"
isSelfManaged
boolean

If the flag is set, self-managed credentialing request will be created.

facilitySpecialtyIds
Array of strings <uuid>

List of facility specialties. Required for facility credentialing request.

Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

post/credentialing-requests
Request samples
application/json
{
  • "providerId": "4834bcdc-4a64-444d-966b-1a6fe381da24",
  • "type": "Initial",
  • "priority": "Low",
  • "isSelfManaged": true
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "provider": {
    },
  • "type": "Initial",
  • "createdAt": "2019-08-24T14:15:22.0000000Z",
  • "currentEvent": {
    },
  • "allEvents": [
    ],
  • "priority": "Low",
  • "isSelfManaged": true,
  • "checklist": {
    },
  • "owner": {
    },
  • "facilitySpecialtyIds": [
    ]
}