Stage Outcome

Supportable maintains a global list of Stage Outcomes for the various stages of the referral intake process.

Sample Request #

HeadersAuthorization = Bearer [token]
ParametersNone
BodyNone

Stages available are as follows:

  • assessment
  • tour
  • authorization
  • queue
GET https://connect.supportableapp.com/api/stage-outcomes/assessment

Insert the desired stage name at the end of the URL.

Sample Response JSON #

Status: 200

[
  {
    "id": "62823a2723dbf7efb7a0cee6",
    "name": "Staff Cancelled",
    "status": true,
    "recordType": "assessment"
  },
  {
    "id": "62823a2723dbf7efb7a0cee8",
    "name": "Person Rescheduled",
    "status": true,
    "recordType": "assessment"
  },
  {
    "id": "620d0968ca6095ccd3ed310e",
    "name": "Attended",
    "status": true,
    "recordType": "assessment"
  },
  . . .
]

Notes on Values #

AttributeData TypeDescription
idstringThe unique identifier of the Stage Outcome.
namestringThe name of the Stage Outcome as it appears in the application.
statusbooleanWhether the Stage Outcome is active in Supportable.
recordTypestringThe intake stage to which the Stage Outcome applies.