Patch an existing credentialing request

Changes properties for an existing credentialing request.

Request
path Parameters
requestId
required
string <uuid>
Request Body schema: application/json
priority
string

If set, changes the priority of this credentialing request.

Enum: "Low" "Medium" "High" "Urgent"
ownerId
string <uuid>

If set, changes the assigned owner of this credentialing request. The owner needs to be a user with appropriate permissions to the organization.

Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

404

Not Found

500

Server Error

patch/credentialing-requests/{requestId}
Request samples
application/json
{
  • "priority": "Low",
  • "ownerId": "4d206909-730f-409a-88f6-dcfaa8fc28cc"
}
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": [
    ]
}