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

Overview

Submit feedback for an existing prior authorization request. Use this endpoint to attach DevelopHealth-facing notes/feedback to PA requests during or after their processing.

Feedback passed to this endpoint will be surfaced in analytics dashboards, and can be used in one-off analytics queries/reports.

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

Payload for submitting feedback related to a prior authorization request.

Response

201
application/json

Successfully submitted feedback

Response returned after feedback has been accepted.