POST
/
delivery_item
/
many
Create multiple delivery_items
curl --request POST \
  --url http://localhost:8080/delivery_item/many \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "delivery_items": [
    {
      "material_code": "<string>",
      "item": "<string>",
      "material_name": "<string>",
      "delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "material_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}'
[
  {
    "material_code": "<string>",
    "item": "<string>",
    "material_name": "<string>",
    "delivery_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "material_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication. Contact your administrator to get an API key.

Body

application/json

Response

Successfully created delivery_items

The response is of type object[].