Update user bin details via the API endpoint. Include parameters: description, display name, external ID, name, short code, user login, warehouse location, and zone external 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,
"user": {
"login": a@a.com
},
"wareHouseLocation": {
"externalId": externalId1
},
"zone": {
"externalId": zoneext1
}
}
Example Response
// 400 Response
{
"type": http://www.jhipster.tech/problem/problem-with-message,
"title": Location not found with external id,
"status": 400
}