Create a new credentialing request event

Creates a new event for a credentialing request.

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

The note of this credentialing request event.

status
required
string

The status of this credentialing request event. Only the following statuses are available for self-managed requests: "RequestInProgress", "Cancelled" and "Completed".

Enum: "RequestSubmitted" "RequestInProgress" "AdditionalInformationRequested" "AdditionalInformationSubmitted" "CancellationRequested" "Cancelled" "Completed" "CompletedWithConcern" "UnableToComplete" "SecondAttemptMissingInfo" "ThirdAttemptMissingInfo"
Array of objects (CredentialingRequestEventFileModel)
nextCredentialingDate
string <date>

The date that the provider should be re-credentialed. Can only be set when completing a credentialing request. Only applies to providers, not facilities.

Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

500

Server Error

post/credentialing-requests/{requestId}/events
Request samples
application/json
{
  • "note": "string",
  • "status": "RequestSubmitted",
  • "attachments": [
    ],
  • "nextCredentialingDate": "2019-08-24"
}
Response samples
application/json
{
  • "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  • "description": "string",
  • "note": "string",
  • "timestamp": "2019-08-24T14:15:22Z",
  • "status": "RequestSubmitted",
  • "attachments": [
    ],
  • "user": {
    }
}