Relationship

Supportable maintains a global list of Relationships which denote relationships between a Person and a Contact, Payer, Referent, etc.

Sample Request #

HeadersAuthorization = Bearer [token]
ParametersNone
BodyNone
GET https://connect.supportableapp.com/api/relationships

Sample Response JSON #

Status: 200

[
  {
    "id": "62fdfa10e34d63f231759074",
    "name": "Counselor/therapist",
    "professional": true,
    "guardian": false,
    "payer": false,
    "status": true
  },
  {
    "id": "62fdfa10e34d63f231759085",
    "name": "Probation officer",
    "professional": true,
    "guardian": false,
    "payer": false,
    "status": true
  },
  {
    "id": "62fdfa10e34d63f231759089",
    "name": "Service provider",
    "professional": true,
    "guardian": false,
    "payer": false,
    "status": true
  },
  {
    "id": "62fdfa10e34d63f23175908a",
    "name": "Sibling",
    "professional": false,
    "guardian": true,
    "payer": false,
    "status": true
  },
  . . .
]

Notes on Values #

AttributeData TypeDescription
idstringThe unique identifier of the Relationship.
namestringThe name of the Relationship as it appears in the application.
professionalbooleanWhether the Relationship is a professional type.
guardianbooleanWhether the Relationship can be applied to a guardian.
payerbooleanWhether the Relationship can be applied to a payer.
statusbooleanWhether the Relationship is active in Supportable.