GET
/
client_reference
/
appraisal_statuses
Get Available Appraisal Statuses
curl --request GET \
  --url https://api.valuechecker.net/client_reference/appraisal_statuses \
  --header 'Authorization: <api-key>'
{
  "appraisal_statuses": [
    {
      "appraisal_status_id": 1,
      "appraisal_status": "Open",
      "enabled": 1
    },
    {
      "appraisal_status_id": 2,
      "appraisal_status": "Accepted",
      "enabled": 1
    },
    {
      "appraisal_status_id": 3,
      "appraisal_status": "Rejected",
      "enabled": 1
    },
    {
      "appraisal_status_id": 4,
      "appraisal_status": "Closed",
      "enabled": 1
    },
    {
      "appraisal_status_id": 5,
      "appraisal_status": "Flagged",
      "enabled": 1
    },
    {
      "appraisal_status_id": 6,
      "appraisal_status": "Archived",
      "enabled": 1
    }
  ]
}

Authorizations

Authorization
string
header
required

Note! Prefix your <api-key> with apiKey. Note the space after "apiKey ".

Query Parameters

client_id
integer

The client ID for the request. It's required if you have access to multiple clients with your API key. Otherwise, it's optional.

session-id
string

Optional session identifier of the user.

Response

200
application/json

List of available appraisal statuses

The response is of type object.