moovexDocs

Get attributes

Retrieve attributes with pagination and basic info.

GET/attributes

Query Parameters

ParameterTypeRequiredDescription
sortstringNoSort by query in the form field:desc/asc (e.g., name:asc) Allowed: asc, desc
limitnumberYes-
pagenumberYes-
searchstringNo-

Example Response

{
  "page": 1,
  "limit": 20,
  "totalPages": 1,
  "totalResults": 2,
  "records": [
    {
      "id": 10,
      "name": "VIP",
      "labels": [
        {
          "key": "priority",
          "value": "high",
          "type": "important"
        }
      ]
    },
    {
      "id": 11,
      "name": "Standard"
    }
  ]
}

On this page