Информация о шаблоне на вывод SEPA
withdrawal sepa template id
GET //api/withdrawal/sepa/template/{id} HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
OK
{ "beneficiary_address": "text", "beneficiary_bank_country_id": 1, "beneficiary_city": "text", "beneficiary_country": "text", "beneficiary_iban": "text", "beneficiary_name": "text", "id": 1, "name": "text", "ownerID": 1, "user_id": 1 }
Removing a template for SEPA withdrawal
DELETE //api/withdrawal/sepa/template/{id} HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
No Content
No content
List of templates for SEPA withdrawal
GET //api/withdrawal/sepa/template HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Accept: */*
[ { "beneficiary_address": "text", "beneficiary_bank_country_id": 1, "beneficiary_city": "text", "beneficiary_country": "text", "beneficiary_iban": "text", "beneficiary_name": "text", "id": 1, "name": "text", "ownerID": 1, "user_id": 1 } ]
Save SEPA withdrawal template
POST //api/withdrawal/sepa/template HTTP/1.1 Host: api.client.nbcgate.tech Authorization: YOUR_API_KEY Content-Type: application/json Accept: */* Content-Length: 183 { "beneficiary_address": "text", "beneficiary_bank_country_id": 1, "beneficiary_city": "text", "beneficiary_country": "text", "beneficiary_iban": "text", "beneficiary_name": "text", "name": "text" }