| Method | URL | İçerik Türü |
|---|---|---|
| GET | address-book/get/{address_id} | - |
Açıklama
Servise Gönderilmesi gereken zorunlu başlıklar
| Parametre ismi | Tip | Zorunluluk | Açıklama |
|---|---|---|---|
| Authorization | Bearer | evet | auth/login metodundan aldığınız token |
Örnek İstek
curl --location --request GET '__APIURL__/address-book/get/{address_id}' \
--header 'Authorization: Bearer __TOKEN__'
Örnek Servis Cevapları
{
"status": true,
"message": null,
"data": [
{
"id": 159,
"customer_id": 136,
"customer_name": "Navlungo Test Account",
"address_type": "sender",
"location_name": "John Depo 2",
"address_name": "John Doe",
"address_email": "john@doe.com",
"address_phone": "+90 531234567",
"address_line": "Deneme Mahallesi Ural Sokak No:999",
"address_country": "tr",
"address_city": "İstanbul",
"address_district": "Kadıköy",
"address_post_code": null,
"address_latitude": null,
"address_longitude": null,
"is_main_warehouse": 1,
"created_at": "2024-10-24 20:28:23",
"updated_at": "2024-10-24 20:28:23"
}
]
}