POST /v1/superadmin/management/vendors/:vendorId/address| Parameter | Type | Description |
|---|---|---|
| vendorId | string | ID Vendor yang dituju |
{
"countryId": "string",
"provinceId": "string",
"regencyId": "string",
"districtId": "string",
"villageId": "string",
"fullAddress": "Jl. Merdeka No.123, Kelurahan Sukamaju",
"zipCode": "13745",
"longitude": 116.397,
"latitude": -8.650
}{
"meta": {
"success": false,
"status": 404,
"message": "Vendor tidak ditemukan"
}
}vendorId diambil dari path parameter, bukan body.curl --location --request PUT 'https://v1.dev.bukalombok.com/v1/superadmin/management/vendors/d376c0aa-6a6b-48ca-b61f-cf54967e2d48/address' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"countryId": "d3d0b851-2bb0-4633-8534-401ad872c289",
"provinceId": "a9eb01b4-a2d7-40f3-ab79-869f11a6b358",
"regencyId": "0de5f356-a1eb-427d-a491-a7ef91d41a4f",
"districtId": "79c6462c-fc05-4beb-b898-99e6c703c744",
"villageId": "b63b180d-aabb-4fcf-8300-59ad3f3926b1",
"fullAddress": "Jl. Merdeka No.123 Halo say, Kelurahan Sukamaju maju maju",
"zipCode": "13742",
"longitude": 116.393,
"latitude": -8.653
}'{
"meta": {
"success": true,
"status": 200,
"message": "Alamat vendor berhasil diperbarui"
},
"data": {
"id": "719ff40c-48bb-44fb-8732-fcfd66c5e3c0",
"sequenceId": 4,
"countryId": "d3d0b851-2bb0-4633-8534-401ad872c289",
"provinceId": "a9eb01b4-a2d7-40f3-ab79-869f11a6b358",
"regencyId": "0de5f356-a1eb-427d-a491-a7ef91d41a4f",
"districtId": "79c6462c-fc05-4beb-b898-99e6c703c744",
"villageId": "b63b180d-aabb-4fcf-8300-59ad3f3926b1",
"fullAddress": "Jl. Merdeka No.123 Halo say, Kelurahan Sukamaju maju maju",
"zipCode": "13742",
"latitude": "-8.653",
"longitude": "116.393",
"createdAt": "2025-11-27T10:54:34.372Z",
"updatedAt": "2025-12-10T02:15:02.745Z"
}
}