Get all shipment anomaly

Groups

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

List of groups
  • shipment - retrieve information about the shipment

  • type - retrive information about the type

  • category - retrieve information about the category

Filters

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

List of filters
  • id - to filter by the unique identifier.

  • shipment.shipmentId - to filter by the shipment ID.

  • type.code - to filter by the type code.

  • category.name - to filter by the category name.

  • quantity - to filter by the quantity.

  • balance - to filter by the balance.

  • date - to filter by the date.

  • observation - to filter by the observations.

  • createdAt - to filter by the creation date.


Retrieve all shipment anomalies

get

Get all shipment anomalies

Authorizations
Responses
200Success
application/json
get
GET /shipment-anomaly HTTP/1.1
Host: api.one-record.fr
Authorization: Bearer JWT
Accept: */*
{
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "shipment": "123e4567-e89b-12d3-a456-426614174000",
      "type": "text",
      "category": "text",
      "quantity": 1,
      "balance": 1,
      "date": null,
      "observation": "text",
      "createdAt": null,
      "updatedAt": null
    }
  ],
  "metadata": {
    "count": 1,
    "current": "text",
    "next": "text"
  }
}

Last updated