Get Delivery Address By ID
Get a delivery address for a specific client using the id. This endpoit allows you to retrieve a client's delivery address.
GET /api/v1/client/delivery-addresses/
Path param
authorization : *bearer
REQUEST BODY SCHEMA: application/json
Name | Description | Required | Type |
---|---|---|---|
id | The ID of the client | Required | string |
Response
Code | Description |
---|---|
200 | Address details |
409 | Unauthorized |
Response Sample
Content type
application/json
[
{
"type": "PRIMARY",
"name": "string",
"region": "string",
"city": "string",
"phoneNumber": "string",
"address": "string"
}
...
]