Kurum bilgilerinin güncellenmesi için ilgili endpoint ve http metod bilgisi aşağıda verilmiştir.
HTTP Method | URL |
---|---|
POST | /v1/Account/UpdateBusinessAccount |
Parametre | Tip | Zorunlu | Açıklama |
---|---|---|---|
account_number | string | Evet | Hesap Numarası |
name | string | Evet | Ad |
alias | string | Evet | Ünvan |
tax_office | string | Evet | Vergi Dairesi |
tax_number | string | Evet | Vergi Numarası |
contact_address | obje | Hayır | İletişim Adresi |
first_name | string | Hayır | Adı |
last_name | string | Hayır | Soyadı |
string | Hayır | Mail Adresi | |
address_line1 | string | Hayır | Adres Alanı 1 |
address_line2 | string | Hayır | Adres Alanı 2 |
zip_postal_code | string | Hayır | Posta Kodu |
phone_number | string | Hayır | Telefon Numarası |
state_province_code | string | Hayır | Ülke Kodu |
country_code | string | Hayır | Ülke Alan Kodu |
Parametre | Tip | Açıklama |
---|---|---|
status | int | Statü |
code | string | Kod |
message | string | Yanıt Mesajı |
payload | object | Veri |
REQUEST:
{
"account_number": 0,
"name": "John",
"alias": "BXNALIAS",
"tax_office": "string",
"tax_number": "1111111111",
"contact_address": {
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]",
"address_line1": "FB",
"address_line2": "FB",
"zip_postal_code": "3333",
"phone_number": "+905552222222",
"state_province_code": "TR",
"country_code": "90"
}
}
RESPONSE:
{
"status": 0,
"code": null,
"message": null,
"payload": true
}