> ## Documentation Index
> Fetch the complete documentation index at: https://docs.eazecustoms.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update house consignments

> Update the list of house consignments and associated items on a transit declaration.

Update the transit house consignments and their associated items on a transit declaration.

### Path Parameters

<ParamField path="declarationId" type="number" required>
  The unique declaration ID.
</ParamField>

### Request Body

An array of transit house consignment objects.

### Examples

```json Request Payload theme={null}
[
  {
    "id": 101,
    "sequenceNumber": 1,
    "grossMass": 2600,
    "DeclarationItems": [
      {
        "description": "Cotton T-shirts (updated)",
        "commodityCode": "62034211",
        "originCountry": "CN",
        "quantity": 110,
        "grossMass": 1050,
        "netWeight": 1000,
        "netPrice": 16000,
        "currency": "EUR",
        "packaging": [
          {
            "sequenceNumber": 1,
            "typeOfPackages": "BX",
            "quantity": 11,
            "shippingMarks": "ABC123-UPD"
          }
        ]
      },
      {
        "description": "Denim Jeans (updated)",
        "commodityCode": "62034231",
        "originCountry": "BD",
        "quantity": 90,
        "grossMass": 850,
        "netWeight": 810,
        "netPrice": 13000,
        "currency": "EUR",
        "packaging": [
          {
            "sequenceNumber": 1,
            "typeOfPackages": "BX",
            "quantity": 9,
            "shippingMarks": "DEF456-UPD"
          }
        ]
      },
      {
        "description": "Wool Sweaters (updated)",
        "commodityCode": "61101110",
        "originCountry": "IN",
        "quantity": 60,
        "grossMass": 700,
        "netWeight": 650,
        "netPrice": 9000,
        "currency": "EUR",
        "packaging": [
          {
            "sequenceNumber": 1,
            "typeOfPackages": "CT",
            "quantity": 6,
            "shippingMarks": "GHI789-UPD"
          }
        ]
      }
    ]
  }
]
```

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "declarationId": 104,
    "status": "processing"
  }
  ```
</ResponseExample>
