Информация о шаблоне на вывод SEPA
withdrawal sepa template id
curl -L \ --url 'http://api.client.nbcgate.tech//api/withdrawal/sepa/template/{id}' \ --header 'Authorization: YOUR_API_KEY'
{ "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
curl -L \ --request DELETE \ --url 'http://api.client.nbcgate.tech//api/withdrawal/sepa/template/{id}' \ --header 'Authorization: YOUR_API_KEY'
No body
List of templates for SEPA withdrawal
curl -L \ --url 'http://api.client.nbcgate.tech//api/withdrawal/sepa/template' \ --header 'Authorization: YOUR_API_KEY'
[ { "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
curl -L \ --request POST \ --url 'http://api.client.nbcgate.tech//api/withdrawal/sepa/template' \ --header 'Authorization: YOUR_API_KEY' \ --header 'Content-Type: application/json' \ --data '{ "beneficiary_address": "text", "beneficiary_bank_country_id": 1, "beneficiary_city": "text", "beneficiary_country": "text", "beneficiary_iban": "text", "beneficiary_name": "text", "name": "text" }'