Get a list of all CheckStatuses

GET /api/v1/static/check-statuses

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-statuses
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/static/check-statuses' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    {
      "name": "Abandoned",
      "value": "abandoned"
    },
    {
      "name": "Active",
      "value": "active"
    },
    {
      "name": "Archive",
      "value": "archive"
    },
    {
      "name": "Complete",
      "value": "complete"
    },
    {
      "name": "Expired",
      "value": "expired"
    },
    {
      "name": "Failed",
      "value": "failed"
    },
    {
      "name": "Lock",
      "value": "lock"
    },
    {
      "name": "Pending",
      "value": "pending"
    },
    {
      "name": "Processing",
      "value": "processing"
    }
  ]
}