Authorization Progress

In Supportable, a referral’s progress through the Authorization stage is tracked by an Authorization Progress record. Authorization Progress records are associated with a Referral Process Document and contain information about whether the Authorization stage has been completed and any Authorization Progress Items which were created in the stage. An Authorization Progress Item contains the date on which an authorization was requested, when it was received back by the intake team, as well as information about whether the authorization was approved or denied.

Sample Request #

HeadersAuthorization = Bearer [token]
ParametersNone
BodyNone
GET https://connect.supportableapp.com/api/referrals/process-documents/
{processDocumentId}/authorization-progress

Sample Response JSON #

Status: 200

{
  "id": "639966cb375b94cfdaedad79",
  "processDocumentId": "63996443375b94cfdaedad6a",
  "subEntityId": "6398b8a6904c0725a6e560f2",
  "isCompleted": true,
  "authorizationProgressItems": [
    {
      "id": "1",
      "stageOutcome": {
        "id": "620417324d1ca9cfa472d417",
        "name": "Approved"
      },
      "requestedDate": "2022-12-14T00:00:00.000Z",
      "responseDate": "2022-12-14T00:00:00.000Z",
      "createdDate": "2022-12-14T06:01:47.822Z"
    }
  ],
  "authNotNeeded": false
}

Notes on Values #

AttributeData TypeDescription
idstringThe unique identifier for the Authorization Progress record.
processDocumentIdstringThe unique identifier for the Referral Process Document with which the Authorization Progress record is associated.
subEntityIdstringThe unique identifier for the Sub-Entity with which the Authorization Progress record is associated.
isCompletedbooleanWhether the Authorization stage for the referral is completed at this time.
(Note: For the Authorization stage to be complete, there must be at least one Authorization Progress Item with an “Admitted” outcome)
authorizationProgressItemsarray of objectsAny Authorization Progress Items which have been added to the Authorization Progress record.
authorizationProgressItems.idstringThe unique identifier of the Authorization Progress Item. In this context, it also corresponds to the order in which the Authorization Progress Item was created.
authorizationProgressItems.stageOutcomeobjectThe outcome of the Authorization Progress Item, if any.
(Note: If the Authorization Progress Item is unresolved or incomplete, this value will be null)
authorizationProgressItems.stageOutcome.idstringThe unique identifier of the outcome.
authorizationProgressItems.stageOutcome.namestringThe name of the outcome.
authorizationProgressItems.requestedDatedatetimeThe ISO datetime value, in UTC, at which the authorization was requested by the intake team.
authorizationProgressItems.responseDatedatetimeThe ISO datetime value, in UTC, at which the authorization response was received by the intake team.
authorizationProgressItems.createdDatedatetimeThe ISO datetime value, in UTC, at which the Authorization Progress Item was created.
authNotNeededbooleanWhether an authorization is needed for the Authorization stage on the referral, as indicated by the intake team.
(Note: A value of null or false indicates that the authorization is required, and a value of true will indicate the authorization is not needed and the Authorization Progress record will be complete)