POST
/
prior-authorization
/
{id}
/
cancel
curl --request POST \
  --url https://api.develophealth.ai/prior-authorization/{id}/cancel \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "cancellation_reason": "<string>"
}'
{
  "status": "success"
}

Overview

Cancel an in-progress prior authorization request.

This endpoint returns as error response if the prior authorization is already in a terminal state (e.g. completed, cancelled).

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json

Request to cancel a prior authorization.

Response

200
application/json

Successfully cancelled a prior authorization

Represents the response structure for a POST /prior-authorization/:id/cancellation request.

This response is returned when a prior authorization is successfully cancelled.