moovexDocs

Get all attributes

Retrieve attributes list without pagination.

GET/attributes/many

Query Parameters

ParameterTypeRequiredDescription
notInIdsstring[]NoExclude attributes by ids
inIdsstring[]NoLimit to attributes by ids
metadataMetadataFilterGroupDto[]NoMetadata filters

Example Response

{
  "records": [
    {
      "id": 1,
      "name": "VIP",
      "metadata": {
        "key": "value"
      },
      "externalId": "attr-1"
    },
    {
      "id": 2,
      "name": "Standard"
    }
  ]
}

On this page