Table of Contents
Supportable maintains a global list of Stage Outcomes for the various stages of the referral intake process.
Sample Request #
Headers | Authorization = Bearer [token] |
Parameters | None |
Body | None |
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 #
Attribute | Data Type | Description |
---|---|---|
id | string | The unique identifier of the Stage Outcome. |
name | string | The name of the Stage Outcome as it appears in the application. |
status | boolean | Whether the Stage Outcome is active in Supportable. |
recordType | string | The intake stage to which the Stage Outcome applies. |