List options for a filter

GET
/filters/{filter_slug}/options
Authorization<token>

API key as Bearer token: Authorization: Bearer

In: header

Path Parameters

filter_slug*string

Query Parameters

search?string
page?integer
Default1
Range1 <= value
per_page?integer
Default50
Range1 <= value <= 100
country_id?string
state_id?string

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://terac.com/api/external/v2/filters/string/options"
{
  "data": [
    {
      "id": "string",
      "name": "string"
    }
  ],
  "meta": {
    "total": 0,
    "page": 0,
    "per_page": 0
  }
}
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}