Create a new credentialing request

Creates a new credentialing request for a provider or facility.

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

The unique identifier of the provider associated with this credentialing request.

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.

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": [
    ]
}