Get all shipment anomaly type

Groups

To understand the groups parameter and the customization of API responses, please refer to the groups page.

List of groups
  • code - retrieve information about the code

  • description - retrieve information about the description

  • categories - retrieve information about the categories

Filters

To understand the filters parameter and the customization of API responses, please refer to the filters page.

List of filters
  • code - to filter by the code.

  • description - to filter by the description.

  • categories - to filter by the categories.

  • createdAt - to filter by the creation date.


Get all container

get

Retrieve all container

Authorizations
Query parameters
page[cursor]stringOptional
page[limit]any · min: 2 · max: 200Optional
order[column]stringOptionalExample: column_name
order[direction]stringOptionalExample: asc|desc
Responses
200Success
application/json
get
GET /shipment-anomaly-type HTTP/1.1
Host: api.one-record.fr
Authorization: Bearer JWT
Accept: */*
{
  "data": [
    {
      "code": "text",
      "description": "text",
      "categories": [
        "text"
      ],
      "createdAt": null,
      "updatedAt": null
    }
  ],
  "metadata": {
    "count": 1,
    "current": "text",
    "next": "text"
  }
}

Last updated