Get a list of all CheckOutcomes

GET /api/v1/static/check-outcomes

Responses

  • 200 application/json
    Hide response attribute Show response attribute object
    • data array[object]
      Hide data attributes Show data attributes object
      • name string
      • value string
GET /api/v1/static/check-outcomes
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/check-outcomes' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Pass",
      "value": "pass"
    },
    {
      "name": "Refer",
      "value": "refer"
    },
    {
      "name": "Fail",
      "value": "fail"
    },
    {
      "name": "High Risk",
      "value": "high_risk"
    },
    {
      "name": "Medium Risk",
      "value": "medium_risk"
    },
    {
      "name": "Low Risk",
      "value": "low_risk"
    }
  ]
}