Skip to main content

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


NameDescriptionRequiredType
idThe ID of the client Requiredstring

Response

CodeDescription
200Address details
409Unauthorized

Response Sample

Content type
application/json
[
{
"type": "PRIMARY",
"name": "string",
"region": "string",
"city": "string",
"phoneNumber": "string",
"address": "string"
}
...
]