FieldEx Developer
developer notes

Update Location Bin

Update location bin details via the API endpoint. Include parameters: description, display name, external ID, name, short code, warehouse location, and zone ID for efficient updates.

Method Endpoint
PUT {{endpoint}}/api/ext/bins

Headers

Key Value
Content-Type application/json
Authorization Bearer{{token}}

Example Request

{ 
    "description": string,
    "displayName": null,  
    "externalId": binext1,
    "name": user bin 1,
    "shortCode": usb1,
    "wareHouseLocation": {
       "externalId": externalId1
    },
    "zone": {
      "externalId": zoneext1
    }
}

Example Response

// 400 Response Code
{
    "type": http://www.jhipster.tech/problem/problem-with-message,
    "title": Location not found with external id,
    "status": 400
}