Account Detail
GET https://developers.vomsis.com/api/v2/accounts/{id}
Bu servis, {id} ile belirtilen tek bir banka hesabının detay bilgilerini getirmek için kullanılır.
Headers
| Field | Type | Description |
|---|---|---|
Authorization | String | Zorunlu. Bearer {access_token} formatında gönderilmelidir. |
Path Parameters
| Field | Type | Description |
|---|---|---|
{id} | Integer | Zorunlu. Detayları görüntülenecek olan hesabın benzersiz ID'si. |
Response Parameters
Dönen cevap, istenen hesaba ait detayları içeren bir nesne barındırır.
| Field | Type | Description |
|---|---|---|
id | Integer | Hesabın sistemdeki benzersiz ID değeri. |
branch_name | String | Hesabın bağlı olduğu şubenin adı. |
fec_name | String | Hesabın para birimi (Örn: EUR). |
account_number | String | Hesap numarası. |
balance | String/Float | Hesabın güncel bakiyesi. |
branch_id | Integer | Hesabın bağlı olduğu şubenin ID'si. |
add_to_balance | Integer | Toplam bakiye hesaplamasına dahil edilip edilmeyeceğini belirtir (1: Dahil Et, 0: Dahil Etme). |
custom_iban | String | Müşteri tarafından tanımlanmış özel IBAN adresi. |
iban | String | Hesabın tam IBAN adresi. |
status | Integer | Hesabın aktif (1) veya pasif (0) durumunu belirtir. |
b_order | Integer | Hesapların listelenme sırasını belirten değer. |
product_code | String | Hesabın bankadaki ürün kodu veya türü. |
created_at | Datetime | Hesabın Vomsis sistemine eklendiği tarih ve saat. |
Response Example
{
"status": "success",
"account": [
{
"id": 25,
"branch_name": "",
"fec_name": "EUR",
"account_number": "1689894",
"balance": "557.00",
"branch_id": "885",
"add_to_balance": 1,
"custom_iban": null,
"iban": "TR006088489122042702190239",
"status": 1,
"b_order": 1,
"product_code": null,
"created_at": "2019-06-13 14:36:03",
}
]
}