POST /v1/superadmin/management/courier/address| Header | Value | Deskripsi |
|---|---|---|
| Content-Type | application/json | Format request body JSON |
| Authorization | Bearer <token> | JWT token sesuai role |
{
"userId": "J-QVrN4fX9ioaZE",
"countryId": "d23623e3-c9be-45f9-ab73-51c577c4f042",
"provinceId": "fe261e49-bcea-46e2-b26a-e15f30f4af71",
"regencyId": "36b50851-2abf-4ed2-91f9-197bab9b8205",
"districtId": "1bda8379-78f4-485b-ad70-761c800f24b8",
"villageId": "53b6114c-ba7f-456a-9f17-92a88755d99b",
"fullAddress": "Testing Adrees",
"zipCode": "12190",
"longitude": 106.816666,
"latitude": -6.200000
}curl --location --request POST 'https://v1.dev.bukalombok.com/v1/superadmin/management/courier/address' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"userId": "J-QVrN4fX9ioaZE",
"countryId": "d23623e3-c9be-45f9-ab73-51c577c4f042",
"provinceId": "fe261e49-bcea-46e2-b26a-e15f30f4af71",
"regencyId": "36b50851-2abf-4ed2-91f9-197bab9b8205",
"districtId": "1bda8379-78f4-485b-ad70-761c800f24b8",
"villageId": "53b6114c-ba7f-456a-9f17-92a88755d99b",
"fullAddress": "Testing Adrees",
"zipCode": "12190",
"longitude": 106.816666,
"latitude": -6.200000
}'{
"meta": {
"success": true,
"status": 200,
"message": "Alamat courier berhasil dibuat"
},
"data": {
"id": "5aTvcv2JOjIl7uN",
"fullAddress": "Testing Adrees",
"zipCode": "12190",
"longitude": 106.816666,
"latitude": -6.2
}
}