ZEDPAY
API - Version 1
Base URL:
Production Environment: https://zed-pay.com
Test Environment: https://test.zed-pay.com
Module:
All
Client
General
+ Account
post
/api/v1/account/open
Open a new account for a user.
Send token as "Authorization" in your request header.
{ "customer_id": 107, "currency_id": 1 }
{ "id": 74, "success": true, "message": "New account created.", "value": null }
post
/api/v1/account/change
Change account status.
Send token as "Authorization" in your request header.
{ "id": 1, "status": "Closed" }
{ "id": 75, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/account/delete
Delete an account.
Send token as "Authorization" in your request header.
{ "id": 126 }
{ "id": 76, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/account/list
Get a list of accounts. All filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&account_id=2¤cy=EUR&update_crypto_balances=true&total_currency=USD,BTC
{ "total": [ { "Key": "USD", "Value": "4,914.934867" }, { "Key": "BTC", "Value": "0.204167" } ], "id": 77, "success": true, "message": "Total: 2,937.31 USD, 0.14 BTC", "value": [ { "id": 2, "date_time": "21/05/2022", "customer": { "id": 127, "reg_date": "20/05/2022", "first_name": "Alex", "last_name": "Doe", "gender": "Unknown", "birth_date": "", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "", "phone": "", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-0.png", "status": "Accepted", "comment": "Thank you" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-1.png", "status": "Rejected", "comment": "" } ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": true, "status": "Verified" }, "currency_id": 8, "currency_code": "BTC", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 0, "address": "0xd3a576ad3c608a81c5e5beb715421879ce85d538", "address_balance": 0.0, "last_update": "2022-07-14T03:27:15.8409726-04:00" }, { "blockchain": 11, "address_index": 0, "address": "TZ2i7sVT2HcXnmWyBaVa87zKWVeWWCdnkq", "address_balance": 0.0, "last_update": "2022-07-14T03:27:15.8409726-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/btc.png", "balance": 0.0, "name": "BTC", "status": "Active" }, { "id": 1, "date_time": "21/05/2022", "customer": { "id": 127, "reg_date": "20/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "", "phone": "", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-0.png", "status": "Accepted", "comment": "Thank you" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220520-143027-127-1.png", "status": "Rejected", "comment": "" } ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": true, "status": "Verified" }, "currency_id": 1, "currency_code": "EUR", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001EUR", "address_balance": 0.0, "last_update": "2022-07-14T03:26:04.5478873-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 880.0, "name": "My Saving Account", "status": "Closed" } ] }
post
/api/v1/account/rename
Rename account.
Send token as "Authorization" in your request header.
{ "id": 1, "name": "My Saving Account" }
{ "id": 78, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/account/deposit
Add fund to account. Send receipt (file) parameter if deposit was made by an offline transfer. This method is only available for fiat wallets.
Send token as "Authorization" in your request header.
{ "to_account_id": 1, "amount": 300.0, "type": "Deposit_Online", "receipt": "" }
{ "id": 79, "success": true, "message": "Transaction Completed.", "value": [ { "id": 22, "date_time": "23/05/2022 06:02", "transfer_id": 100019, "currency_code": "EUR", "debit": 0.0, "credit": 3.0, "balance": 1183.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 21, "date_time": "23/05/2022 06:02", "transfer_id": 100019, "currency_code": "EUR", "debit": 300.0, "credit": 0.0, "balance": 1186.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/withdraw
Withdraw from account balance. This method is only available for fiat wallets.
Send token as "Authorization" in your request header.
{ "from_account_id": 1, "amount": 400.0, "type": "Withdraw_Online", "otp_code": "123456" }
{ "id": 80, "success": true, "message": "Transaction Completed.", "value": [ { "id": 30, "date_time": "23/05/2022 06:09", "transfer_id": 100025, "currency_code": "EUR", "debit": 0.0, "credit": 4.0, "balance": 967.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 29, "date_time": "23/05/2022 06:09", "transfer_id": 100025, "currency_code": "EUR", "debit": 0.0, "credit": 396.0, "balance": 971.0, "transaction_type": "Withdraw Online", "system_remark": "Withdraw Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/remit
Request an offline withdrawal. This method is only available for fiat wallets. Start bank_name with "(Local Bank) " if it is a Local Bank transfer.
Send token as "Authorization" in your request header.
{ "from_account_id": 16, "amount": 400.0, "type": "Withdraw_Requested", "otp_code": "123456", "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" } }
{ "id": 80, "success": true, "message": "Transaction Completed.", "value": [ { "id": 261, "date_time": "08/06/2022 06:13", "transfer_id": 100250, "currency_code": "EUR", "debit": 0.0, "credit": 400.0, "balance": 754.0, "transaction_type": "Withdraw Requested", "system_remark": "Offline Withdrawal requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" }, "bank_transfer_log": [] }, "details_text": " Type: Bank Transfer, Country: France, Currency: EUR, Payment Type: Wire Transfer, Receiver Type: Personal, Registration Nunmber: , Full Name: John Doe, Mobile: , Email: receiver@example.com, Phone: , Bank Name: Alfa Bank, Branch: , BIC: ALFAXXXX, IBAN: FR123456789012345, Message: " } ] }
post
/api/v1/account/transfer
Transer between accounts.
Send token as "Authorization" in your request header.
{ "from_account_id": 1, "to_account_id": 3, "deposit_address": "", "to_blockchain": "none", "amount": 200.0, "otp_code": "123456", "check_only": false, "normal_sending": false }
{ "id": 81, "success": true, "message": "Transaction Completed.", "value": null }
get
/api/v1/account/transactions
Get a list of recent transactions of an account. account_id is mandatory.
Send token as "Authorization" in your request header.
?customer_id=99&account_id=1&id=2&transfer_id=100003
{ "id": 82, "success": true, "message": "", "value": [ { "id": 3, "date_time": "23/05/2022 04:30", "transfer_id": 100005, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 100.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit Requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "France", "currency": "EUR", "payment_type": "Wire Transfer", "receiver_type": "Personal", "full_name": "John Doe", "mobile": "", "email": "receiver@example.com", "reg_number": "", "phone": "", "bank_name": "Alfa Bank", "branch_name": "", "BIC": "ALFAXXXX", "IBAN": "FR123456789012345", "message": "", "proforma": "/files/upload/proforma.jpg" }, "bank_transfer_log": [ { "date_time": "08/06/2022 06:17", "title": "Completed", "message": "Money has been sent to your account.", "file": "" } ] }, "details_text": " Type: Bank Transfer, Country: France, Currency: EUR, Payment Type: Wire Transfer, Receiver Type: Personal, Registration Nunmber: , Full Name: John Doe, Mobile: , Email: receiver@example.com, Phone: , Bank Name: Alfa Bank, Branch: , BIC: ALFAXXXX, IBAN: FR123456789012345, Message: <ul><li>08/06/2022 06:17: Completed<div class='gray'>Money has been sent to your account.</div></li></ul>" }, { "id": 2, "date_time": "23/05/2022 04:29", "transfer_id": 100004, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 200.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1, "date_time": "23/05/2022 04:29", "transfer_id": 100003, "currency_code": "EUR", "debit": 100.0, "credit": 0.0, "balance": 100.0, "transaction_type": "Deposit Online", "system_remark": "Deposit Account.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/confirm-transfer
Confirm a pending transfer by admin.
Send token as "Authorization" in your request header.
{ "id": 39, "currency_type": "Fiat" }
{ "id": 85, "success": true, "message": "Transaction Completed.", "value": [ { "id": 41, "date_time": "23/05/2022 06:16", "transfer_id": 100029, "currency_code": "EUR", "debit": 0.0, "credit": 10.0, "balance": 2353.0, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 40, "date_time": "23/05/2022 06:16", "transfer_id": 100029, "currency_code": "EUR", "debit": 2000.0, "credit": 0.0, "balance": 2363.0, "transaction_type": "Deposit Offline", "system_remark": "Offline Deposit requested by client. Deposit Account on 23/05/2022 06:16.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/account/reject-transfer
Reject a pending transfer by admin.
Send token as "Authorization" in your request header.
{ "id": 39, "currency_type": "Fiat" }
{ "id": 86, "success": true, "message": "Transaction Rejected.", "value": { "id": 42, "date_time": "23/05/2022 06:32", "transfer_id": 100030, "currency_code": "EUR", "debit": 2000.0, "credit": 0.0, "balance": 2353.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit requested by client. Transaction declined on 23/05/2022 06:32.", "customer_remark": "", "status": "Rejected", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } }
get
/api/v1/account/find
Get public info of accounts connected to an email address or user id.
Send token as "Authorization" in your request header.
?email=it@zed-pay.com&uid=21500136
{ "id": 87, "success": true, "message": "", "value": [ { "id": 1, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 1, "currency_code": "EUR", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001EUR", "address_balance": 0, "last_update": "2022-07-14T03:17:42.0232614-04:00" } ], "address_comment": "", "balance": 0.0, "name": null, "status": "Active" }, { "id": 3, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 3, "currency_code": "GBP", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500001GBP", "address_balance": 0, "last_update": "2022-07-14T03:17:42.0232614-04:00" } ], "address_comment": "", "balance": 0.0, "name": null, "status": "Active" }, { "id": 51, "date_time": null, "customer": { "id": 132, "reg_date": null, "first_name": null, "last_name": null, "gender": null, "birth_date": null, "customer_type": null, "email": null, "mobile": null, "phone": null, "country": null, "city": null, "address": null, "avatar": null, "remark": null, "documents": null, "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": null }, "currency_id": 20, "currency_type": "Crypto", "currency_code": "ETH", "address": [ { "blockchain": 1, "address_index": 1, "address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "address_balance": 0.0, "last_update": "2022-07-14T03:17:42.0391877-04:00" } ], "address_comment": "ERC20", "currency_flag": "/files/crypto/ETH.png", "balance": 0.0, "name": null, "status": "Active" } ] }
post
/api/v1/account/update-bank-transfer-log
Submit a new update for a withdrawal or deposit request.
Send token as "Authorization" in your request header.
{ "id": 1, "details": { "bank_transfer_log": [ { "title": "Completed", "message": "We have sent money to your bank account.", "file": "" } ] } }
{ "id": 114, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/account/list-crypto-transactions
Get a list of recent transactions of a crypto wallet.
Send token as "Authorization" in your request header.
?account_id=1&blockchain=ethereum
{ "id": 116, "success": true, "message": "", "value": [ { "date_time": "13/06/2022 11:02", "transaction_id": "0x2b5ef1de63b3114dd50a06e170a35258610ebcdfbab786335e16468c38517e30", "blockchain": "ETHEREUM", "sender_address": "0xcbfb60f6a39e9e5e79f48555de777b9aab19c99a", "recipient_address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "amount": "1", "fee": "0.0", "symbol": "USDT", "status": "Confirmed" }, { "date_time": "13/06/2022 11:02", "transaction_id": "0x75a7894115d0381d2d72b91cd789a91f6aa2a5a1372cadc6f4808855119a5933", "blockchain": "ETHEREUM", "sender_address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "recipient_address": "0xc8f4a80310f2d84c2874a4adaed702c7dcef29d5", "amount": "0.2", "fee": "0.0", "symbol": "USDT", "status": "Confirmed" } ] }
get
/api/v1/account/list-crypto-pending-transfers
Get a list of pending transaction to be send to blockchain. id parameter is optional.
Send token as "Authorization" in your request header.
?id=1
{ "id": 117, "success": true, "message": "", "value": [ { "date_time_text": "14/07/2022 16:55", "account": { "id": 90, "date_time": "09/07/2022", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "01/01/1984", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "15161234567", "phone": "15161234567", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "London", "address": "London", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-0.png", "status": "Pending", "comment": "" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-1.png", "status": "Pending", "comment": "" } ], "api_key": { "active": true, "api_key": "0d6e00a19b21bb3e6887e16971b3c655", "secret_key": "409795e0cfe5b99d7bb4860de6ead60b" }, "notification": { "telegram": false, "telegram_chat_id": "5369855298", "whatsapp": false, "sms": false, "email": false }, "status": "Verified" }, "currency_id": 17, "currency_code": "USDT", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 0, "address": "0x4fd7b9bfb593d70383a37b97da95432da66d3d8a", "address_balance": 0.005, "last_update": "2022-07-14T03:17:42.0421851-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/USDT.png", "balance": 2027.97653261275, "name": "My USDT Wallet", "status": "Active" }, "id": 7, "date_time": "2022-07-14T16:55:57", "transfer_id": 101435, "customer_id": 132, "currency": { "id": 17, "name": "Tether", "code": "USDT", "color": "#26a17b", "currency_type": 2, "country_id": 236, "sell": 1.00235836, "buy": 1.00235836, "withdrawal_commission": 0, "swap_commission": 0, "details": [ { "blockchain": 6, "contract_address": "0xb404c51bbc10dcbe948077f18a4b8e553d160084", "digits": 6, "admin_index": 0, "admin_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "withdrawal_commission": 10.0, "swap_commission": 1.0 }, { "blockchain": 11, "contract_address": "TW61xaCWRfCPbQ2C2EoyKTa8teruShpSbK", "digits": 6, "admin_index": 0, "admin_address": "TBRaXe8VCgxpkzM92cWFUeG8ZJ5GQYa8Pn", "withdrawal_commission": 10.0, "swap_commission": 1.0 } ], "status": 1 }, "blockchain": 11, "from_index": 0, "from_address": "TBRaXe8VCgxpkzM92cWFUeG8ZJ5GQYa8Pn", "to_address": "0x7312d8a0b8751ed87b97436cec2877b3d483bb55f", "amount": 995.0, "tries": 0, "next_try": "2022-07-14T16:55:57", "details": { "transaction_id": "", "url": "" }, "status": 1 }, { "date_time_text": "14/07/2022 16:55", "account": { "id": 89, "date_time": "08/07/2022", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "01/01/1984", "customer_type": "Individual", "email": "it@zed-pay.com", "mobile": "15161234567", "phone": "15161234567", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "London", "address": "London", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [ { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-0.png", "status": "Pending", "comment": "" }, { "date_submitted": "04/08/2022 12:28", "title": "Passport", "file": "/files/upload/20220527-070124-132-1.png", "status": "Pending", "comment": "" } ], "api_key": { "active": true, "api_key": "0d6e00a19b21bb3e6887e16971b3c655", "secret_key": "409795e0cfe5b99d7bb4860de6ead60b" }, "notification": { "telegram": false, "telegram_chat_id": "5369855298", "whatsapp": false, "sms": false, "email": false }, "status": "Verified" }, "currency_id": 20, "currency_code": "ETH", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1, "address": "0xc8f4a80310f2d84c2874a4adaed702c7dcef29d5", "address_balance": 0.946072568133207, "last_update": "2022-07-14T03:17:42.0411873-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 9.0, "name": "My ETH Wallet", "status": "Active" }, "id": 6, "date_time": "2022-07-14T16:55:03", "transfer_id": 101433, "customer_id": 132, "currency": { "id": 20, "name": "Ethereum", "code": "ETH", "color": "#627eea", "currency_type": 2, "country_id": 9999, "sell": 1138.39270545, "buy": 1138.39270545, "withdrawal_commission": 0, "swap_commission": 0, "details": [ { "blockchain": 6, "contract_address": "", "digits": 18, "admin_index": 0, "admin_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "withdrawal_commission": 10.0, "swap_commission": 1.0 } ], "status": 1 }, "blockchain": 6, "from_index": 0, "from_address": "0xc619d04b074b0516b73bcbba3ddbe12a50140207", "to_address": "0xc619d04b074b0516b73bcbba3ddbe12a501402078", "amount": 2.9, "tries": 0, "next_try": "2022-07-14T16:55:03", "details": { "transaction_id": "", "url": "" }, "status": 1 } ] }
get
/api/v1/account/create-invoice
Create a Proforma Invoice.
Send token as "Authorization" in your request header.
?customer_id=1&amount=2000¤cy_code=EUR
{ "id": 130, "success": true, "message": "", "value": "/files/upload/100001.pdf" }
post
/api/v1/account/new-visa-card
Request a new Visa Card,
Send token as "Authorization" in your request header.
{ "customer_id": 2, "currency_id": 1, "plan": "Golden", "type": "Rechargeable", "name": "John Doe", "balance": 1000.0, "expire_in_year": 2 }
{ "id": 134, "success": true, "message": "Your request has been received. We'll contact you in a day or two!", "value": null }
post
/api/v1/account/new-virtual-card
Request a new virtual card.
Send token as "Authorization" in your request header.
{ "customer_id": 2, "currency_id": 1, "type": "Visa", "plan": "Golden", "Rechargeable": true, "name": "John Doe", "balance": 1000.0, "expire_in_year": 2 }
{ "id": 180, "success": true, "message": "Your request has been received. We'll contact you in a day or two!", "value": null }
get
/api/v1/account/list-cards
Get a list of virtual cards.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 182, "success": true, "message": "", "value": [ { "id": 7, "date_time": "19/11/2022", "currency_code": "AED", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 4, "date_time": "19/11/2022", "currency_code": "USD", "type": "Master", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 2, "date_time": "19/11/2022", "currency_code": "USD", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" }, { "id": 1, "date_time": "19/11/2022", "currency_code": "EUR", "type": "Visa", "card_plan": "Golden", "rechargeable": "Yes", "name": "John Doe", "balance": 1000.0, "expires_in": "2 years", "details": {}, "status": "Pending" } ] }
get
/api/v1/account/transaction-invoice
Get a PDF version of a transaction.
Send token as "Authorization" in your request header.
?id=1
{ "id": 135, "success": true, "message": "", "value": "/files/upload/tranaction-1510.pdf" }
get
/api/v1/account/get-swap-elements
Get a list of eligible accounts for swap.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 137, "success": true, "message": "", "value": { "pay": [ { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1458.7503457923 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 0.98743989223652373 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062011619999999996 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 0.995 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 0.974661868068 } ], "receive": [ { "id": 163, "currency_code": "AED", "balance": 0.0, "swap_rate": 0.273655547991831 }, { "id": 165, "currency_code": "BNB", "balance": 0.0, "swap_rate": 279.4908142233 }, { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1488.29409423 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1.002375790205 }, { "id": 162, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.18051481017498 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062638 }, { "id": 164, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.0552409856254958 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1.005 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1.0045484334 } ] } }
get
/api/v1/account/get-swap-pay
Get a list of eligible accounts for swap.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 207, "success": true, "message": "", "value": [ { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 1 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1 } ] }
get
/api/v1/account/get-swap-receive
Get a list of eligible accounts to swap.
Send token as "Authorization" in your request header.
?pay_account_id=1
{ "id": 208, "success": true, "message": "", "value": [ { "id": 163, "currency_code": "AED", "balance": 0.0, "swap_rate": 0.273655547991831 }, { "id": 165, "currency_code": "BNB", "balance": 0.0, "swap_rate": 279.4908142233 }, { "id": 147, "currency_code": "ETH", "balance": 1.8645595778088, "swap_rate": 1488.29409423 }, { "id": 87, "currency_code": "EUR", "balance": 500.0, "swap_rate": 1.002375790205 }, { "id": 162, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.18051481017498 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.062638 }, { "id": 164, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.0552409856254958 }, { "id": 113, "currency_code": "USD", "balance": 202.380888427146, "swap_rate": 1.005 }, { "id": 137, "currency_code": "USDT", "balance": 562.4, "swap_rate": 1.0045484334 } ] }
get
/api/v1/account/buy-crypto-elements
Get a list of eligible accounts to buy crypto.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 140, "success": true, "message": "", "value": { "pay": [ { "id": 15, "currency_code": "TRY", "balance": 0.0, "swap_rate": 0.054490338978999 }, { "id": 11, "currency_code": "USD", "balance": 0.0, "swap_rate": 0.995 }, { "id": 12, "currency_code": "EUR", "balance": 0.0, "swap_rate": 0.998104003640923 }, { "id": 13, "currency_code": "GBP", "balance": 0.0, "swap_rate": 1.15188190355674 } ], "receive": [ { "id": 165, "currency_code": "BNB", "balance": 0.216919920129455, "swap_rate": 278.01389862600752 }, { "id": 147, "currency_code": "ETH", "balance": 1.7645595778088, "swap_rate": 1592.4949099188523 }, { "id": 140, "currency_code": "TRX", "balance": 1801.2760172795, "swap_rate": 0.060679079999999996 }, { "id": 137, "currency_code": "USDT", "balance": 358.4, "swap_rate": 0.983422512114 } ] } }
get
/api/v1/account/get-statement
Get a summary of account input, output and balance of a specific account.
Send token as "Authorization" in your request header.
?id=1&from=2024-01-15&to=2024-04-15
{ "id": 249, "success": true, "message": "", "value": "https://zed-pay.com/files/upload/eccc5baa-a645-493e-b131-aea417d36fd77599e59548e143119a96b9604b4f3b52.pdf" }
get
/api/v1/account/get-agent-commissions
Get a report of commission earned by an agent.
Send token as "Authorization" in your request header.
?from=2023-12-15&to=2024-02-15
{ "id": 251, "success": true, "message": "", "value": [ { "title": "Wallet", "currency": "USDZ", "total": "19.40", "details": [ { "id": 3132, "date_time": "2024-05-05T08:18:35", "transfer_id": 103730, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 0.6426, "credit": 0.0, "balance": 282.555043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL UNLOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3130, "date_time": "2024-05-05T08:18:05", "transfer_id": 103729, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 0.8294, "credit": 0.0, "balance": 281.912443263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL LOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3128, "date_time": "2024-05-05T07:54:49", "transfer_id": 103727, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 1.65, "credit": 0.0, "balance": 281.083043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2459, "date_time": "2024-01-15T04:14:39", "transfer_id": 103602, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 7.5, "credit": 0.0, "balance": 83.053043263678, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2453, "date_time": "2024-01-12T15:04:14", "transfer_id": 103592, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 1.275, "credit": 0.0, "balance": 1.53316094550001, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL LOAD", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 2451, "date_time": "2024-01-12T15:03:44", "transfer_id": 103591, "customer_id": 132, "account_id": 230, "currency_code": "USDZ", "debit": 7.5, "credit": 0.0, "balance": 104.8081609455, "transaction_type": 205, "system_remark": "Agent Commission for CARD VIRTUAL ISSUE", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } } ] }, { "title": "Wallet", "currency": "EUR", "total": "1.00", "details": [ { "id": 3115, "date_time": "2024-05-04T14:02:46", "transfer_id": 103718, "customer_id": 132, "account_id": 87, "currency_code": "EUR", "debit": 0.6, "credit": 0.0, "balance": 5618.02348271987, "transaction_type": 205, "system_remark": "Agent Commission for SWAP COMMISSION", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } }, { "id": 3111, "date_time": "2024-05-04T14:01:30", "transfer_id": 103716, "customer_id": 132, "account_id": 87, "currency_code": "EUR", "debit": 0.4, "credit": 0.0, "balance": 5617.42348271987, "transaction_type": 205, "system_remark": "Agent Commission for SWAP COMMISSION", "customer_remark": "John Doe", "status": 2, "details": { "bank_transfer": null, "bank_transfer_log": [], "web3_transaction": null, "swift": { "exist": false, "doc_id": null, "mode": null, "input_ref": null, "sender": null, "receiver": null, "ref_num": null, "f32_amount": null, "f32_currency": null, "f32_date": null, "f33_amount": null, "f33_currency": null, "ordering_customer": null, "sending_institute": null, "beneficiary_customer": null, "details_charges": null, "receiver_charges_amount": null, "receiver_charges_currency": null } } } ] } ] }
get
/api/v1/account/get-agent-pending-transfers
Get a list of pending transfers to confirm or reject by an agent.
Send token as "Authorization" in your request header.
{ "id": 257, "success": true, "message": "", "value": { "Fiat": [ { "account": { "id": 286, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 12, "currency_code": "EUR", "currency_price": "1.094455", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500226EUR", "address_balance": 0.0, "last_update": "2024-05-04T13:55:32.3593883-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 4990.0, "name": "My EUR Wallet", "status": "Active" }, "transaction": { "id": 3133, "date_time": "05/05/2024 11:09", "transfer_id": 103734, "currency_code": "EUR", "debit": 1000.0, "credit": 0.0, "balance": 4800.0, "transaction_type": "Deposit Requested", "system_remark": "Offline Deposit requested by client. <a href='/files/upload/20240505-110909-226-f461f90ae9e747a89b15919d73be858f-0.png' target='_blank'>Payment Receipt</a>.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": null, "bank_transfer_log": [], "agent_confirm": 1 }, "details_text": "" } }, { "account": { "id": 286, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 12, "currency_code": "EUR", "currency_price": "1.094455", "currency_type": "Fiat", "address": [ { "blockchain": 0, "address_index": 0, "address": "ZP21500226EUR", "address_balance": 0.0, "last_update": "2024-05-04T13:55:32.3593883-04:00" } ], "address_comment": "", "currency_flag": "/files/flags/eu.png", "balance": 4990.0, "name": "My EUR Wallet", "status": "Active" }, "transaction": { "id": 3147, "date_time": "13/05/2024 06:03", "transfer_id": 103763, "currency_code": "EUR", "debit": 0.0, "credit": 132.675, "balance": 4857.325, "transaction_type": "Withdraw Requested", "system_remark": "Offline Withdrawal requested by client.", "customer_remark": "", "status": "Pending", "details": { "bank_transfer": { "country": "Albania", "currency": "EUR", "payment_type": "Cash", "receiver_type": "Personal", "full_name": "Ivan Petrov", "mobile": "+906555444444", "email": "ivan@n.com", "reg_number": "", "phone": "", "bank_name": "Bank", "branch_name": "56456456", "BIC": "4654XX56", "IBAN": "AL446456345345345345435", "message": "", "proforma": "", "MirCard": null }, "bank_transfer_log": [], "agent_confirm": 2 }, "details_text": "" } } ], "Crypto": [ { "account": { "id": 288, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 20, "currency_code": "ETH", "currency_price": "2,995.29195", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1000000226, "address": "0x3db5789fc8f81f3444cec9cac136840d9384f5cf", "address_balance": 0.0, "last_update": "2024-05-04T13:52:05.7549834-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 0.66736302642156, "name": "My ETH Wallet", "status": "Active" }, "transaction": { "date_time_text": "13/05/2024 06:17", "account": { "id": 288, "date_time": "04/05/2024", "customer": { "id": 226, "reg_date": "04/05/2024", "first_name": "John", "last_name": "Doe", "gender": "I prefer not to say", "birth_date": "15/12/2000", "customer_type": "Organization", "email": "it@zed-pay.com", "mobile": "9012365985471", "phone": "+9012365985488", "country": { "id": 103, "name": "India", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, "city": "Istanbul", "address": "Some address", "avatar": "/files/upload/r20240504-135412-226-4eb68a8c622544508555e3f9b28861db-0.png", "remark": "", "documents": [ ], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "", "secret_key": "" }, "notification": { "telegram": false, "telegram_chat_id": "", "whatsapp": false, "app": true, "sms": false, "email": true }, "otp_enabled": true, "status": "Verified", "agent_id": 132 }, "currency_id": 20, "currency_code": "ETH", "currency_price": "2,995.29195", "currency_type": "Crypto", "address": [ { "blockchain": 6, "address_index": 1000000226, "address": "0x3db5789fc8f81f3444cec9cac136840d9384f5cf", "address_balance": 0.0, "last_update": "2024-05-04T13:52:05.7549834-04:00" } ], "address_comment": "", "currency_flag": "/files/crypto/ETH.png", "balance": 0.66736302642156, "name": "My ETH Wallet", "status": "Active" }, "id": 107, "date_time": "2024-05-13T06:17:43", "transfer_id": 103769, "customer_id": 226, "currency": { "id": 20, "name": "Ethereum", "code": "ETH", "color": "#627eea", "currency_type": 2, "country_id": 9999, "sell": 2995.29195, "buy": 2965.48805, "swift_commission": 0.0, "withdrawal_commission": 0.0, "swap_commission": 0.0, "referral_bonus": 0.1, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [ { "blockchain": 6, "contract_address": "", "digits": 18, "admin_index": 0, "admin_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a9", "withdrawal_commission": 0.0, "swap_commission": 2.0, "max_auto_send": 0.1 } ], "status": 1 }, "blockchain": 6, "from_index": 0, "from_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a9", "to_address": "0xcdb90f74c3e2cc467dc399dc5fe905a56f3743a5", "amount": 0.4, "tries": 0, "next_try": "2024-05-13T06:17:43", "details": { "transaction_id": "", "url": "", "system_remark": null, "agent_confirm": 2 }, "status": 1 } } ] } }
post
/api/v1/account/update-pending-transfer
Update agent confirmation of a pending transfer.
Send token as "Authorization" in your request header.
{ "type": "Cryptp", "id": 100, "confirm": true }
{ "id": 258, "success": true, "message": "Status Updated.", "value": null }
+ Ad
get
/api/v1/ad/get-all
Get all Ad
get
/api/v1/ad/get-by-id
Get by id Ad
post
/api/v1/ad/update-ad
Update Ad
Send token as "Authorization" in your request header.
post
/api/v1/ad/add-ad
Add Ad
Send token as "Authorization" in your request header.
get
/api/v1/ad/delete-ad
Delete Ad
Send token as "Authorization" in your request header.
+ Address-List
post
/api/v1/address-list/add
Add an address to address list.
Send token as "Authorization" in your request header.
{ "user_type": "Client", "user_id": 132, "name": "Mike USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652hg", "blockchain": "tron" }
{ "id": 125, "success": true, "message": "Item added successfully.", "value": null }
post
/api/v1/address-list/delete
Delete an address from address list.
Send token as "Authorization" in your request header.
{ "id": 1 }
{ "id": 126, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/address-list/get-address-list
Get a list of customer's address list.
Send token as "Authorization" in your request header.
?user_type=Client&user_id=132
{ "id": 127, "success": true, "message": "", "value": [ { "id": 5, "user_type": 2, "user_id": 132, "name": "Alex USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h4", "blockchain": 6 }, { "id": 4, "user_type": 2, "user_id": 132, "name": "Mike ETH Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h3", "blockchain": 6 }, { "id": 3, "user_type": 2, "user_id": 132, "name": "Mike USDT Wallet", "address": "0xfdg54f958d2ee666a2206206994597c13d831652h2", "blockchain": 10 } ] }
+ APCard
post
/api/v1/apcard/issue-virtual-card
Issue a new virtual card.
Send token as "Authorization" in your request header.
{ "customer_id": 132, "surname": "Doe", "amount": 100, "name": "John", "address_line1": "No 25, Wall Street", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "network": "Visa", "referral_code": "" }
{ "id": 223, "success": true, "message": "Card has been issued successfully. Card details will be available in 5 minutes.", "value": { "id": 6, "date_time": "27/12/2023 07:16", "customer_id": 132, "account_id": 230, "email": "someone@example.com", "first_name": "Alex", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 25.0, "balance": 25.0, "currency": "USD", "cardId": "", "cvc": "", "card_number": "", "expYear": "", "expMonth": "", "status": "Pending", "transfer_id": 103565, "network": "Mastercard" } }
post
/api/v1/apcard/load-virtual-card
Add funds to virtual card by USDZ wallet.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 224, "success": true, "message": "Operation was successful. Your new balance: 30.00 USD.", "value": { "id": 5, "date_time": "27/12/2023 07:10", "customer_id": 132, "account_id": 230, "email": "harry@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781000", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103562, "network": "Mastercard" } }
post
/api/v1/apcard/unload-virtual-card
Withdraw card balance.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 225, "success": true, "message": "Operation was successful. Your new balance: 30.00 USD.", "value": { "id": 5, "date_time": "27/12/2023 07:10", "customer_id": 132, "account_id": 230, "email": "harry@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781000", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103562, "network": "Mastercard" } }
get
/api/v1/apcard/get-types
Get a list of available virtual cards.
Send token as "Authorization" in your request header.
{ "id": 226, "success": true, "message": "", "value": [ { "vid": "vab_0d943d725792", "cardBin": "553437", "desp": null }, { "vid": "vab_f2c03ca78e22", "cardBin": "553437", "desp": null }, { "vid": "vab_f4ca16ee66f7", "cardBin": "441112", "desp": null } ] }
get
/api/v1/apcard/list
List cards of specific user.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 227, "success": true, "message": "", "value": [ { "id": 3, "date_time": "26/12/2023 09:19", "customer_id": 132, "account_id": 230, "email": "someone@example.com", "first_name": "Alex", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 100.0, "balance": 100.0, "currency": "USD", "cardId": "", "cvc": "", "card_number": "", "expYear": "", "expMonth": "", "status": "Pending", "transfer_id": 103546, "network": "Mastercard" }, { "id": 2, "date_time": "26/12/2023 06:09", "customer_id": 132, "account_id": 230, "email": "alex@zedpay.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 5.0, "balance": 1.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5532222199781755", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103533, "network": "Mastercard" } ] }
get
/api/v1/apcard/get-balance
Get updated balance of a virtual card
Send token as "Authorization" in your request header.
?id=2
{ "id": 228, "success": true, "message": "", "value": 1.0 }
get
/api/v1/apcard/get-history
Get Virtual Card Transactions
Send token as "Authorization" in your request header.
?id=2
{ "id": 229, "success": true, "message": "", "value": [ { "transactionId": "t_3d15c00080f74cd3a58434625068d474", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Decline Fee (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-17-10 08:17" }, { "transactionId": "t_47c5023f667847b29d5968c1796b1d99", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Transaction Fee:Declined Transaction (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.15", "currency": "USD", "status": "FEE", "tradeAt": "2024-17-10 08:17" }, { "transactionId": "t_187531b13ea94baea575ca5da8124dc6", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "ALIPAY 0.00 CNY", "reason": "Balance not enough", "amount": "0.00", "currency": "USD", "status": "DECLINED", "tradeAt": "2024-16-10 08:16" }, { "transactionId": "t_fea79cdde2e94d6a90978b13e442eab1", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Decline Fee (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-15-10 08:15" }, { "transactionId": "t_5d0797ce3e194ac8aeddb03d31bdda6a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Transaction Fee:Declined Transaction (ALIPAY 0.0 CNY)", "reason": null, "amount": "-0.15", "currency": "USD", "status": "FEE", "tradeAt": "2024-15-10 08:15" }, { "transactionId": "t_f94ef63b050e47bb953d1dc11a9542a1", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "ALIPAY 0.00 CNY", "reason": "Balance not enough", "amount": "0.00", "currency": "USD", "status": "DECLINED", "tradeAt": "2024-14-10 08:14" }, { "transactionId": "t_f7440d5729b54ab696cd60e771e5cc8a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "S/LOGO YAZILIM NOKTA B 10.00 TRY", "reason": null, "amount": "-0.34", "currency": "USD", "status": "COMPLETE", "tradeAt": "2024-01-06 07:01" }, { "transactionId": "t_cb79ad510a83432e8803cae1e50c608a", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "CANVA* I04010-30140571 1349.90 TRY", "reason": null, "amount": "-45.65", "currency": "USD", "status": "COMPLETE", "tradeAt": "2024-46-06 01:46" }, { "transactionId": "t_754f5125eaa3407a9aa506e460f13ddc", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Canva Pty Limited 9.00 TRY", "reason": null, "amount": "-0.30", "currency": "USD", "status": "PENDING", "tradeAt": "2024-52-05 11:52" }, { "transactionId": "t_a43abeb2cd6e46e09c5dd2d866f8136f", "cardId": "c_75a4cfc6d9be4852a263", "cardSeqNo": null, "cardLast4": "8863", "desp": "Foreign Transaction Fee:Foreign Currency Transaction (Canva Pty Limited 9.0 TRY)", "reason": null, "amount": "-0.50", "currency": "USD", "status": "FEE", "tradeAt": "2024-52-05 11:52" } ] }
post
/api/v1/apcard/card-to-card
Send money from a card to another.
Send token as "Authorization" in your request header.
{ "from_id": 35, "to_card_number": "1234567890123456", "amount": 10.0, "otp_code": 123456 }
{ "id": 230, "success": true, "message": "Transaction has been completed successfully.", "value": { "id": 7, "date_time": "27/12/2023", "customer_id": 132, "account_id": 230, "email": "david@msn.com", "first_name": "John", "last_name": "Doe", "vid": "vab_0d943d725792", "initial_balance": 50.0, "balance": 30.0, "currency": "USD", "cardId": "c_4f0628a668e14379a1b5", "cvc": "***", "card_number": "5534372199781123", "expYear": "2025", "expMonth": "12", "status": "Active", "transfer_id": 103568, "network": "Mastercard" } }
get
/api/v1/apcard/get-cvv
Get card's CVV2.
Send token as "Authorization" in your request header.
?id=1
{ "id": 231, "success": true, "message": "", "value": "013" }
+ Blog
get
/api/v1/blog/list
Get a list of recent blogs. Use id filter to get a single specific blog.
?items=50&id=2
{ "id": 16, "success": true, "message": "", "value": [ { "id": 15, "date_time": "02/04/2022", "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-4.png", "author": "Post By Hans Murazik", "category": "Credit", "url": "/blog/15", "status": "Enabled" }, { "id": 14, "date_time": "11/04/2022", "title": "Personal Loans Are Here To Finance Your Dreams.", "summary": "The secured personal loans are offered based on a collateral security such as car, house...", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-3.png", "author": "Post By Hans Murazik", "category": "Account", "url": "/blog/14", "status": "Enabled" }, { "id": 13, "date_time": "19/04/2022", "title": "How Do Unsecured Homeowner Loans Work?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-1.png", "author": "Post By Hans Murazik", "category": "Card", "url": "/blog/13", "status": "Enabled" } ] }
post
/api/v1/blog/add-blog
Add a new blog.
Send token as "Authorization" in your request header.
{ "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "/files/upload/blog.png", "author": "Jogn Doe", "category": "Loan" }
{ "id": 23, "success": true, "message": "Item added successfully.", "value": null }
post
/api/v1/blog/edit-blog
Edit blog content.
Send token as "Authorization" in your request header.
{ "id" : 16, "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "/files/upload/blog.png", "author": "Jogn Doe", "category": "Loan", "status": "Disabled" }
{ "id": 23, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/blog/delete-blog
Delete a blog.
Send token as "Authorization" in your request header.
{ "id": 2 }
{ "id": 24, "success": true, "message": "Selected item has been deleted.", "value": null }
+ Card
get
/api/v1/card/list-countries
Get a list of allowed countries.
Send token as "Authorization" in your request header.
{ "id": 185, "success": true, "message": "", "value": [ { "name": "Afghanistan", "alpha_2": "AF", "alpha_3": "AFG", "country_code": "004", "iso_3166_2": "ISO 3166-2:AF", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Åland Islands", "alpha_2": "AX", "alpha_3": "ALA", "country_code": "248", "iso_3166_2": "ISO 3166-2:AX", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Albania", "alpha_2": "AL", "alpha_3": "ALB", "country_code": "008", "iso_3166_2": "ISO 3166-2:AL", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Algeria", "alpha_2": "DZ", "alpha_3": "DZA", "country_code": "012", "iso_3166_2": "ISO 3166-2:DZ", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "American Samoa", "alpha_2": "AS", "alpha_3": "ASM", "country_code": "016", "iso_3166_2": "ISO 3166-2:AS", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Andorra", "alpha_2": "AD", "alpha_3": "AND", "country_code": "020", "iso_3166_2": "ISO 3166-2:AD", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Angola", "alpha_2": "AO", "alpha_3": "AGO", "country_code": "024", "iso_3166_2": "ISO 3166-2:AO", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Anguilla", "alpha_2": "AI", "alpha_3": "AIA", "country_code": "660", "iso_3166_2": "ISO 3166-2:AI", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Antarctica", "alpha_2": "AQ", "alpha_3": "ATA", "country_code": "010", "iso_3166_2": "ISO 3166-2:AQ", "region": "", "sub_region": "", "intermediate_region": "", "region_code": "", "sub_region_code": "", "intermediate_region_code": "" }, { "name": "Antigua and Barbuda", "alpha_2": "AG", "alpha_3": "ATG", "country_code": "028", "iso_3166_2": "ISO 3166-2:AG", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Argentina", "alpha_2": "AR", "alpha_3": "ARG", "country_code": "032", "iso_3166_2": "ISO 3166-2:AR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Armenia", "alpha_2": "AM", "alpha_3": "ARM", "country_code": "051", "iso_3166_2": "ISO 3166-2:AM", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Aruba", "alpha_2": "AW", "alpha_3": "ABW", "country_code": "533", "iso_3166_2": "ISO 3166-2:AW", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Australia", "alpha_2": "AU", "alpha_3": "AUS", "country_code": "036", "iso_3166_2": "ISO 3166-2:AU", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "Austria", "alpha_2": "AT", "alpha_3": "AUT", "country_code": "040", "iso_3166_2": "ISO 3166-2:AT", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Azerbaijan", "alpha_2": "AZ", "alpha_3": "AZE", "country_code": "031", "iso_3166_2": "ISO 3166-2:AZ", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Bahamas", "alpha_2": "BS", "alpha_3": "BHS", "country_code": "044", "iso_3166_2": "ISO 3166-2:BS", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Bahrain", "alpha_2": "BH", "alpha_3": "BHR", "country_code": "048", "iso_3166_2": "ISO 3166-2:BH", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Bangladesh", "alpha_2": "BD", "alpha_3": "BGD", "country_code": "050", "iso_3166_2": "ISO 3166-2:BD", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Barbados", "alpha_2": "BB", "alpha_3": "BRB", "country_code": "052", "iso_3166_2": "ISO 3166-2:BB", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Belarus", "alpha_2": "BY", "alpha_3": "BLR", "country_code": "112", "iso_3166_2": "ISO 3166-2:BY", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Belgium", "alpha_2": "BE", "alpha_3": "BEL", "country_code": "056", "iso_3166_2": "ISO 3166-2:BE", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Belize", "alpha_2": "BZ", "alpha_3": "BLZ", "country_code": "084", "iso_3166_2": "ISO 3166-2:BZ", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Benin", "alpha_2": "BJ", "alpha_3": "BEN", "country_code": "204", "iso_3166_2": "ISO 3166-2:BJ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Bermuda", "alpha_2": "BM", "alpha_3": "BMU", "country_code": "060", "iso_3166_2": "ISO 3166-2:BM", "region": "Americas", "sub_region": "Northern America", "intermediate_region": "", "region_code": "019", "sub_region_code": "021", "intermediate_region_code": "" }, { "name": "Bhutan", "alpha_2": "BT", "alpha_3": "BTN", "country_code": "064", "iso_3166_2": "ISO 3166-2:BT", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Bolivia (Plurinational State of)", "alpha_2": "BO", "alpha_3": "BOL", "country_code": "068", "iso_3166_2": "ISO 3166-2:BO", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Bonaire, Sint Eustatius and Saba", "alpha_2": "BQ", "alpha_3": "BES", "country_code": "535", "iso_3166_2": "ISO 3166-2:BQ", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Bosnia and Herzegovina", "alpha_2": "BA", "alpha_3": "BIH", "country_code": "070", "iso_3166_2": "ISO 3166-2:BA", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Botswana", "alpha_2": "BW", "alpha_3": "BWA", "country_code": "072", "iso_3166_2": "ISO 3166-2:BW", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Southern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "018" }, { "name": "Bouvet Island", "alpha_2": "BV", "alpha_3": "BVT", "country_code": "074", "iso_3166_2": "ISO 3166-2:BV", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Brazil", "alpha_2": "BR", "alpha_3": "BRA", "country_code": "076", "iso_3166_2": "ISO 3166-2:BR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "British Indian Ocean Territory", "alpha_2": "IO", "alpha_3": "IOT", "country_code": "086", "iso_3166_2": "ISO 3166-2:IO", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Brunei Darussalam", "alpha_2": "BN", "alpha_3": "BRN", "country_code": "096", "iso_3166_2": "ISO 3166-2:BN", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Bulgaria", "alpha_2": "BG", "alpha_3": "BGR", "country_code": "100", "iso_3166_2": "ISO 3166-2:BG", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Burkina Faso", "alpha_2": "BF", "alpha_3": "BFA", "country_code": "854", "iso_3166_2": "ISO 3166-2:BF", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Burundi", "alpha_2": "BI", "alpha_3": "BDI", "country_code": "108", "iso_3166_2": "ISO 3166-2:BI", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Cabo Verde", "alpha_2": "CV", "alpha_3": "CPV", "country_code": "132", "iso_3166_2": "ISO 3166-2:CV", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Cambodia", "alpha_2": "KH", "alpha_3": "KHM", "country_code": "116", "iso_3166_2": "ISO 3166-2:KH", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Cameroon", "alpha_2": "CM", "alpha_3": "CMR", "country_code": "120", "iso_3166_2": "ISO 3166-2:CM", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Canada", "alpha_2": "CA", "alpha_3": "CAN", "country_code": "124", "iso_3166_2": "ISO 3166-2:CA", "region": "Americas", "sub_region": "Northern America", "intermediate_region": "", "region_code": "019", "sub_region_code": "021", "intermediate_region_code": "" }, { "name": "Cayman Islands", "alpha_2": "KY", "alpha_3": "CYM", "country_code": "136", "iso_3166_2": "ISO 3166-2:KY", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Central African Republic", "alpha_2": "CF", "alpha_3": "CAF", "country_code": "140", "iso_3166_2": "ISO 3166-2:CF", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Chad", "alpha_2": "TD", "alpha_3": "TCD", "country_code": "148", "iso_3166_2": "ISO 3166-2:TD", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Chile", "alpha_2": "CL", "alpha_3": "CHL", "country_code": "152", "iso_3166_2": "ISO 3166-2:CL", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "China", "alpha_2": "CN", "alpha_3": "CHN", "country_code": "156", "iso_3166_2": "ISO 3166-2:CN", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Christmas Island", "alpha_2": "CX", "alpha_3": "CXR", "country_code": "162", "iso_3166_2": "ISO 3166-2:CX", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "Cocos (Keeling) Islands", "alpha_2": "CC", "alpha_3": "CCK", "country_code": "166", "iso_3166_2": "ISO 3166-2:CC", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "Colombia", "alpha_2": "CO", "alpha_3": "COL", "country_code": "170", "iso_3166_2": "ISO 3166-2:CO", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Comoros", "alpha_2": "KM", "alpha_3": "COM", "country_code": "174", "iso_3166_2": "ISO 3166-2:KM", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Congo", "alpha_2": "CG", "alpha_3": "COG", "country_code": "178", "iso_3166_2": "ISO 3166-2:CG", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Congo, Democratic Republic of the", "alpha_2": "CD", "alpha_3": "COD", "country_code": "180", "iso_3166_2": "ISO 3166-2:CD", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Cook Islands", "alpha_2": "CK", "alpha_3": "COK", "country_code": "184", "iso_3166_2": "ISO 3166-2:CK", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Costa Rica", "alpha_2": "CR", "alpha_3": "CRI", "country_code": "188", "iso_3166_2": "ISO 3166-2:CR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Côte d'Ivoire", "alpha_2": "CI", "alpha_3": "CIV", "country_code": "384", "iso_3166_2": "ISO 3166-2:CI", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Croatia", "alpha_2": "HR", "alpha_3": "HRV", "country_code": "191", "iso_3166_2": "ISO 3166-2:HR", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Cuba", "alpha_2": "CU", "alpha_3": "CUB", "country_code": "192", "iso_3166_2": "ISO 3166-2:CU", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Curaçao", "alpha_2": "CW", "alpha_3": "CUW", "country_code": "531", "iso_3166_2": "ISO 3166-2:CW", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Cyprus", "alpha_2": "CY", "alpha_3": "CYP", "country_code": "196", "iso_3166_2": "ISO 3166-2:CY", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Czechia", "alpha_2": "CZ", "alpha_3": "CZE", "country_code": "203", "iso_3166_2": "ISO 3166-2:CZ", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Denmark", "alpha_2": "DK", "alpha_3": "DNK", "country_code": "208", "iso_3166_2": "ISO 3166-2:DK", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Djibouti", "alpha_2": "DJ", "alpha_3": "DJI", "country_code": "262", "iso_3166_2": "ISO 3166-2:DJ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Dominica", "alpha_2": "DM", "alpha_3": "DMA", "country_code": "212", "iso_3166_2": "ISO 3166-2:DM", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Dominican Republic", "alpha_2": "DO", "alpha_3": "DOM", "country_code": "214", "iso_3166_2": "ISO 3166-2:DO", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Ecuador", "alpha_2": "EC", "alpha_3": "ECU", "country_code": "218", "iso_3166_2": "ISO 3166-2:EC", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Egypt", "alpha_2": "EG", "alpha_3": "EGY", "country_code": "818", "iso_3166_2": "ISO 3166-2:EG", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "El Salvador", "alpha_2": "SV", "alpha_3": "SLV", "country_code": "222", "iso_3166_2": "ISO 3166-2:SV", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Equatorial Guinea", "alpha_2": "GQ", "alpha_3": "GNQ", "country_code": "226", "iso_3166_2": "ISO 3166-2:GQ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Eritrea", "alpha_2": "ER", "alpha_3": "ERI", "country_code": "232", "iso_3166_2": "ISO 3166-2:ER", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Estonia", "alpha_2": "EE", "alpha_3": "EST", "country_code": "233", "iso_3166_2": "ISO 3166-2:EE", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Eswatini", "alpha_2": "SZ", "alpha_3": "SWZ", "country_code": "748", "iso_3166_2": "ISO 3166-2:SZ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Southern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "018" }, { "name": "Ethiopia", "alpha_2": "ET", "alpha_3": "ETH", "country_code": "231", "iso_3166_2": "ISO 3166-2:ET", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Falkland Islands (Malvinas)", "alpha_2": "FK", "alpha_3": "FLK", "country_code": "238", "iso_3166_2": "ISO 3166-2:FK", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Faroe Islands", "alpha_2": "FO", "alpha_3": "FRO", "country_code": "234", "iso_3166_2": "ISO 3166-2:FO", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Fiji", "alpha_2": "FJ", "alpha_3": "FJI", "country_code": "242", "iso_3166_2": "ISO 3166-2:FJ", "region": "Oceania", "sub_region": "Melanesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "054", "intermediate_region_code": "" }, { "name": "Finland", "alpha_2": "FI", "alpha_3": "FIN", "country_code": "246", "iso_3166_2": "ISO 3166-2:FI", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "France", "alpha_2": "FR", "alpha_3": "FRA", "country_code": "250", "iso_3166_2": "ISO 3166-2:FR", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "French Guiana", "alpha_2": "GF", "alpha_3": "GUF", "country_code": "254", "iso_3166_2": "ISO 3166-2:GF", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "French Polynesia", "alpha_2": "PF", "alpha_3": "PYF", "country_code": "258", "iso_3166_2": "ISO 3166-2:PF", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "French Southern Territories", "alpha_2": "TF", "alpha_3": "ATF", "country_code": "260", "iso_3166_2": "ISO 3166-2:TF", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Gabon", "alpha_2": "GA", "alpha_3": "GAB", "country_code": "266", "iso_3166_2": "ISO 3166-2:GA", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Gambia", "alpha_2": "GM", "alpha_3": "GMB", "country_code": "270", "iso_3166_2": "ISO 3166-2:GM", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Georgia", "alpha_2": "GE", "alpha_3": "GEO", "country_code": "268", "iso_3166_2": "ISO 3166-2:GE", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Germany", "alpha_2": "DE", "alpha_3": "DEU", "country_code": "276", "iso_3166_2": "ISO 3166-2:DE", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Ghana", "alpha_2": "GH", "alpha_3": "GHA", "country_code": "288", "iso_3166_2": "ISO 3166-2:GH", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Gibraltar", "alpha_2": "GI", "alpha_3": "GIB", "country_code": "292", "iso_3166_2": "ISO 3166-2:GI", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Greece", "alpha_2": "GR", "alpha_3": "GRC", "country_code": "300", "iso_3166_2": "ISO 3166-2:GR", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Greenland", "alpha_2": "GL", "alpha_3": "GRL", "country_code": "304", "iso_3166_2": "ISO 3166-2:GL", "region": "Americas", "sub_region": "Northern America", "intermediate_region": "", "region_code": "019", "sub_region_code": "021", "intermediate_region_code": "" }, { "name": "Grenada", "alpha_2": "GD", "alpha_3": "GRD", "country_code": "308", "iso_3166_2": "ISO 3166-2:GD", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Guadeloupe", "alpha_2": "GP", "alpha_3": "GLP", "country_code": "312", "iso_3166_2": "ISO 3166-2:GP", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Guam", "alpha_2": "GU", "alpha_3": "GUM", "country_code": "316", "iso_3166_2": "ISO 3166-2:GU", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Guatemala", "alpha_2": "GT", "alpha_3": "GTM", "country_code": "320", "iso_3166_2": "ISO 3166-2:GT", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Guernsey", "alpha_2": "GG", "alpha_3": "GGY", "country_code": "831", "iso_3166_2": "ISO 3166-2:GG", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "Channel Islands", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "830" }, { "name": "Guinea", "alpha_2": "GN", "alpha_3": "GIN", "country_code": "324", "iso_3166_2": "ISO 3166-2:GN", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Guinea-Bissau", "alpha_2": "GW", "alpha_3": "GNB", "country_code": "624", "iso_3166_2": "ISO 3166-2:GW", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Guyana", "alpha_2": "GY", "alpha_3": "GUY", "country_code": "328", "iso_3166_2": "ISO 3166-2:GY", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Haiti", "alpha_2": "HT", "alpha_3": "HTI", "country_code": "332", "iso_3166_2": "ISO 3166-2:HT", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Heard Island and McDonald Islands", "alpha_2": "HM", "alpha_3": "HMD", "country_code": "334", "iso_3166_2": "ISO 3166-2:HM", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "Holy See", "alpha_2": "VA", "alpha_3": "VAT", "country_code": "336", "iso_3166_2": "ISO 3166-2:VA", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Honduras", "alpha_2": "HN", "alpha_3": "HND", "country_code": "340", "iso_3166_2": "ISO 3166-2:HN", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Hong Kong", "alpha_2": "HK", "alpha_3": "HKG", "country_code": "344", "iso_3166_2": "ISO 3166-2:HK", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Hungary", "alpha_2": "HU", "alpha_3": "HUN", "country_code": "348", "iso_3166_2": "ISO 3166-2:HU", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Iceland", "alpha_2": "IS", "alpha_3": "ISL", "country_code": "352", "iso_3166_2": "ISO 3166-2:IS", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "India", "alpha_2": "IN", "alpha_3": "IND", "country_code": "356", "iso_3166_2": "ISO 3166-2:IN", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Indonesia", "alpha_2": "ID", "alpha_3": "IDN", "country_code": "360", "iso_3166_2": "ISO 3166-2:ID", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Iran (Islamic Republic of)", "alpha_2": "IR", "alpha_3": "IRN", "country_code": "364", "iso_3166_2": "ISO 3166-2:IR", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Iraq", "alpha_2": "IQ", "alpha_3": "IRQ", "country_code": "368", "iso_3166_2": "ISO 3166-2:IQ", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Ireland", "alpha_2": "IE", "alpha_3": "IRL", "country_code": "372", "iso_3166_2": "ISO 3166-2:IE", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Isle of Man", "alpha_2": "IM", "alpha_3": "IMN", "country_code": "833", "iso_3166_2": "ISO 3166-2:IM", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Israel", "alpha_2": "IL", "alpha_3": "ISR", "country_code": "376", "iso_3166_2": "ISO 3166-2:IL", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Italy", "alpha_2": "IT", "alpha_3": "ITA", "country_code": "380", "iso_3166_2": "ISO 3166-2:IT", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Jamaica", "alpha_2": "JM", "alpha_3": "JAM", "country_code": "388", "iso_3166_2": "ISO 3166-2:JM", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Japan", "alpha_2": "JP", "alpha_3": "JPN", "country_code": "392", "iso_3166_2": "ISO 3166-2:JP", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Jersey", "alpha_2": "JE", "alpha_3": "JEY", "country_code": "832", "iso_3166_2": "ISO 3166-2:JE", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "Channel Islands", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "830" }, { "name": "Jordan", "alpha_2": "JO", "alpha_3": "JOR", "country_code": "400", "iso_3166_2": "ISO 3166-2:JO", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Kazakhstan", "alpha_2": "KZ", "alpha_3": "KAZ", "country_code": "398", "iso_3166_2": "ISO 3166-2:KZ", "region": "Asia", "sub_region": "Central Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "143", "intermediate_region_code": "" }, { "name": "Kenya", "alpha_2": "KE", "alpha_3": "KEN", "country_code": "404", "iso_3166_2": "ISO 3166-2:KE", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Kiribati", "alpha_2": "KI", "alpha_3": "KIR", "country_code": "296", "iso_3166_2": "ISO 3166-2:KI", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Korea (Democratic People's Republic of)", "alpha_2": "KP", "alpha_3": "PRK", "country_code": "408", "iso_3166_2": "ISO 3166-2:KP", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Korea, Republic of", "alpha_2": "KR", "alpha_3": "KOR", "country_code": "410", "iso_3166_2": "ISO 3166-2:KR", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Kuwait", "alpha_2": "KW", "alpha_3": "KWT", "country_code": "414", "iso_3166_2": "ISO 3166-2:KW", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Kyrgyzstan", "alpha_2": "KG", "alpha_3": "KGZ", "country_code": "417", "iso_3166_2": "ISO 3166-2:KG", "region": "Asia", "sub_region": "Central Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "143", "intermediate_region_code": "" }, { "name": "Lao People's Democratic Republic", "alpha_2": "LA", "alpha_3": "LAO", "country_code": "418", "iso_3166_2": "ISO 3166-2:LA", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Latvia", "alpha_2": "LV", "alpha_3": "LVA", "country_code": "428", "iso_3166_2": "ISO 3166-2:LV", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Lebanon", "alpha_2": "LB", "alpha_3": "LBN", "country_code": "422", "iso_3166_2": "ISO 3166-2:LB", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Lesotho", "alpha_2": "LS", "alpha_3": "LSO", "country_code": "426", "iso_3166_2": "ISO 3166-2:LS", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Southern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "018" }, { "name": "Liberia", "alpha_2": "LR", "alpha_3": "LBR", "country_code": "430", "iso_3166_2": "ISO 3166-2:LR", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Libya", "alpha_2": "LY", "alpha_3": "LBY", "country_code": "434", "iso_3166_2": "ISO 3166-2:LY", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "Liechtenstein", "alpha_2": "LI", "alpha_3": "LIE", "country_code": "438", "iso_3166_2": "ISO 3166-2:LI", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Lithuania", "alpha_2": "LT", "alpha_3": "LTU", "country_code": "440", "iso_3166_2": "ISO 3166-2:LT", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Luxembourg", "alpha_2": "LU", "alpha_3": "LUX", "country_code": "442", "iso_3166_2": "ISO 3166-2:LU", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Macao", "alpha_2": "MO", "alpha_3": "MAC", "country_code": "446", "iso_3166_2": "ISO 3166-2:MO", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Madagascar", "alpha_2": "MG", "alpha_3": "MDG", "country_code": "450", "iso_3166_2": "ISO 3166-2:MG", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Malawi", "alpha_2": "MW", "alpha_3": "MWI", "country_code": "454", "iso_3166_2": "ISO 3166-2:MW", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Malaysia", "alpha_2": "MY", "alpha_3": "MYS", "country_code": "458", "iso_3166_2": "ISO 3166-2:MY", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Maldives", "alpha_2": "MV", "alpha_3": "MDV", "country_code": "462", "iso_3166_2": "ISO 3166-2:MV", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Mali", "alpha_2": "ML", "alpha_3": "MLI", "country_code": "466", "iso_3166_2": "ISO 3166-2:ML", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Malta", "alpha_2": "MT", "alpha_3": "MLT", "country_code": "470", "iso_3166_2": "ISO 3166-2:MT", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Marshall Islands", "alpha_2": "MH", "alpha_3": "MHL", "country_code": "584", "iso_3166_2": "ISO 3166-2:MH", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Martinique", "alpha_2": "MQ", "alpha_3": "MTQ", "country_code": "474", "iso_3166_2": "ISO 3166-2:MQ", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Mauritania", "alpha_2": "MR", "alpha_3": "MRT", "country_code": "478", "iso_3166_2": "ISO 3166-2:MR", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Mauritius", "alpha_2": "MU", "alpha_3": "MUS", "country_code": "480", "iso_3166_2": "ISO 3166-2:MU", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Mayotte", "alpha_2": "YT", "alpha_3": "MYT", "country_code": "175", "iso_3166_2": "ISO 3166-2:YT", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Mexico", "alpha_2": "MX", "alpha_3": "MEX", "country_code": "484", "iso_3166_2": "ISO 3166-2:MX", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Micronesia (Federated States of)", "alpha_2": "FM", "alpha_3": "FSM", "country_code": "583", "iso_3166_2": "ISO 3166-2:FM", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Moldova, Republic of", "alpha_2": "MD", "alpha_3": "MDA", "country_code": "498", "iso_3166_2": "ISO 3166-2:MD", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Monaco", "alpha_2": "MC", "alpha_3": "MCO", "country_code": "492", "iso_3166_2": "ISO 3166-2:MC", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Mongolia", "alpha_2": "MN", "alpha_3": "MNG", "country_code": "496", "iso_3166_2": "ISO 3166-2:MN", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Montenegro", "alpha_2": "ME", "alpha_3": "MNE", "country_code": "499", "iso_3166_2": "ISO 3166-2:ME", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Montserrat", "alpha_2": "MS", "alpha_3": "MSR", "country_code": "500", "iso_3166_2": "ISO 3166-2:MS", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Morocco", "alpha_2": "MA", "alpha_3": "MAR", "country_code": "504", "iso_3166_2": "ISO 3166-2:MA", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "Mozambique", "alpha_2": "MZ", "alpha_3": "MOZ", "country_code": "508", "iso_3166_2": "ISO 3166-2:MZ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Myanmar", "alpha_2": "MM", "alpha_3": "MMR", "country_code": "104", "iso_3166_2": "ISO 3166-2:MM", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Namibia", "alpha_2": "NA", "alpha_3": "NAM", "country_code": "516", "iso_3166_2": "ISO 3166-2:NA", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Southern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "018" }, { "name": "Nauru", "alpha_2": "NR", "alpha_3": "NRU", "country_code": "520", "iso_3166_2": "ISO 3166-2:NR", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Nepal", "alpha_2": "NP", "alpha_3": "NPL", "country_code": "524", "iso_3166_2": "ISO 3166-2:NP", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Netherlands", "alpha_2": "NL", "alpha_3": "NLD", "country_code": "528", "iso_3166_2": "ISO 3166-2:NL", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "New Caledonia", "alpha_2": "NC", "alpha_3": "NCL", "country_code": "540", "iso_3166_2": "ISO 3166-2:NC", "region": "Oceania", "sub_region": "Melanesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "054", "intermediate_region_code": "" }, { "name": "New Zealand", "alpha_2": "NZ", "alpha_3": "NZL", "country_code": "554", "iso_3166_2": "ISO 3166-2:NZ", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "Nicaragua", "alpha_2": "NI", "alpha_3": "NIC", "country_code": "558", "iso_3166_2": "ISO 3166-2:NI", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Niger", "alpha_2": "NE", "alpha_3": "NER", "country_code": "562", "iso_3166_2": "ISO 3166-2:NE", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Nigeria", "alpha_2": "NG", "alpha_3": "NGA", "country_code": "566", "iso_3166_2": "ISO 3166-2:NG", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Niue", "alpha_2": "NU", "alpha_3": "NIU", "country_code": "570", "iso_3166_2": "ISO 3166-2:NU", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Norfolk Island", "alpha_2": "NF", "alpha_3": "NFK", "country_code": "574", "iso_3166_2": "ISO 3166-2:NF", "region": "Oceania", "sub_region": "Australia and New Zealand", "intermediate_region": "", "region_code": "009", "sub_region_code": "053", "intermediate_region_code": "" }, { "name": "North Macedonia", "alpha_2": "MK", "alpha_3": "MKD", "country_code": "807", "iso_3166_2": "ISO 3166-2:MK", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Northern Mariana Islands", "alpha_2": "MP", "alpha_3": "MNP", "country_code": "580", "iso_3166_2": "ISO 3166-2:MP", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Norway", "alpha_2": "NO", "alpha_3": "NOR", "country_code": "578", "iso_3166_2": "ISO 3166-2:NO", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Oman", "alpha_2": "OM", "alpha_3": "OMN", "country_code": "512", "iso_3166_2": "ISO 3166-2:OM", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Pakistan", "alpha_2": "PK", "alpha_3": "PAK", "country_code": "586", "iso_3166_2": "ISO 3166-2:PK", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Palau", "alpha_2": "PW", "alpha_3": "PLW", "country_code": "585", "iso_3166_2": "ISO 3166-2:PW", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Palestine, State of", "alpha_2": "PS", "alpha_3": "PSE", "country_code": "275", "iso_3166_2": "ISO 3166-2:PS", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Panama", "alpha_2": "PA", "alpha_3": "PAN", "country_code": "591", "iso_3166_2": "ISO 3166-2:PA", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Central America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "013" }, { "name": "Papua New Guinea", "alpha_2": "PG", "alpha_3": "PNG", "country_code": "598", "iso_3166_2": "ISO 3166-2:PG", "region": "Oceania", "sub_region": "Melanesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "054", "intermediate_region_code": "" }, { "name": "Paraguay", "alpha_2": "PY", "alpha_3": "PRY", "country_code": "600", "iso_3166_2": "ISO 3166-2:PY", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Peru", "alpha_2": "PE", "alpha_3": "PER", "country_code": "604", "iso_3166_2": "ISO 3166-2:PE", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Philippines", "alpha_2": "PH", "alpha_3": "PHL", "country_code": "608", "iso_3166_2": "ISO 3166-2:PH", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Pitcairn", "alpha_2": "PN", "alpha_3": "PCN", "country_code": "612", "iso_3166_2": "ISO 3166-2:PN", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Poland", "alpha_2": "PL", "alpha_3": "POL", "country_code": "616", "iso_3166_2": "ISO 3166-2:PL", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Portugal", "alpha_2": "PT", "alpha_3": "PRT", "country_code": "620", "iso_3166_2": "ISO 3166-2:PT", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Puerto Rico", "alpha_2": "PR", "alpha_3": "PRI", "country_code": "630", "iso_3166_2": "ISO 3166-2:PR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Qatar", "alpha_2": "QA", "alpha_3": "QAT", "country_code": "634", "iso_3166_2": "ISO 3166-2:QA", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Réunion", "alpha_2": "RE", "alpha_3": "REU", "country_code": "638", "iso_3166_2": "ISO 3166-2:RE", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Romania", "alpha_2": "RO", "alpha_3": "ROU", "country_code": "642", "iso_3166_2": "ISO 3166-2:RO", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Russian Federation", "alpha_2": "RU", "alpha_3": "RUS", "country_code": "643", "iso_3166_2": "ISO 3166-2:RU", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Rwanda", "alpha_2": "RW", "alpha_3": "RWA", "country_code": "646", "iso_3166_2": "ISO 3166-2:RW", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Saint Barthélemy", "alpha_2": "BL", "alpha_3": "BLM", "country_code": "652", "iso_3166_2": "ISO 3166-2:BL", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Saint Helena, Ascension and Tristan da Cunha", "alpha_2": "SH", "alpha_3": "SHN", "country_code": "654", "iso_3166_2": "ISO 3166-2:SH", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Saint Kitts and Nevis", "alpha_2": "KN", "alpha_3": "KNA", "country_code": "659", "iso_3166_2": "ISO 3166-2:KN", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Saint Lucia", "alpha_2": "LC", "alpha_3": "LCA", "country_code": "662", "iso_3166_2": "ISO 3166-2:LC", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Saint Martin (French part)", "alpha_2": "MF", "alpha_3": "MAF", "country_code": "663", "iso_3166_2": "ISO 3166-2:MF", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Saint Pierre and Miquelon", "alpha_2": "PM", "alpha_3": "SPM", "country_code": "666", "iso_3166_2": "ISO 3166-2:PM", "region": "Americas", "sub_region": "Northern America", "intermediate_region": "", "region_code": "019", "sub_region_code": "021", "intermediate_region_code": "" }, { "name": "Saint Vincent and the Grenadines", "alpha_2": "VC", "alpha_3": "VCT", "country_code": "670", "iso_3166_2": "ISO 3166-2:VC", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Samoa", "alpha_2": "WS", "alpha_3": "WSM", "country_code": "882", "iso_3166_2": "ISO 3166-2:WS", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "San Marino", "alpha_2": "SM", "alpha_3": "SMR", "country_code": "674", "iso_3166_2": "ISO 3166-2:SM", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Sao Tome and Principe", "alpha_2": "ST", "alpha_3": "STP", "country_code": "678", "iso_3166_2": "ISO 3166-2:ST", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Middle Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "017" }, { "name": "Saudi Arabia", "alpha_2": "SA", "alpha_3": "SAU", "country_code": "682", "iso_3166_2": "ISO 3166-2:SA", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Senegal", "alpha_2": "SN", "alpha_3": "SEN", "country_code": "686", "iso_3166_2": "ISO 3166-2:SN", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Serbia", "alpha_2": "RS", "alpha_3": "SRB", "country_code": "688", "iso_3166_2": "ISO 3166-2:RS", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Seychelles", "alpha_2": "SC", "alpha_3": "SYC", "country_code": "690", "iso_3166_2": "ISO 3166-2:SC", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Sierra Leone", "alpha_2": "SL", "alpha_3": "SLE", "country_code": "694", "iso_3166_2": "ISO 3166-2:SL", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Singapore", "alpha_2": "SG", "alpha_3": "SGP", "country_code": "702", "iso_3166_2": "ISO 3166-2:SG", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Sint Maarten (Dutch part)", "alpha_2": "SX", "alpha_3": "SXM", "country_code": "534", "iso_3166_2": "ISO 3166-2:SX", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Slovakia", "alpha_2": "SK", "alpha_3": "SVK", "country_code": "703", "iso_3166_2": "ISO 3166-2:SK", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "Slovenia", "alpha_2": "SI", "alpha_3": "SVN", "country_code": "705", "iso_3166_2": "ISO 3166-2:SI", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Solomon Islands", "alpha_2": "SB", "alpha_3": "SLB", "country_code": "090", "iso_3166_2": "ISO 3166-2:SB", "region": "Oceania", "sub_region": "Melanesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "054", "intermediate_region_code": "" }, { "name": "Somalia", "alpha_2": "SO", "alpha_3": "SOM", "country_code": "706", "iso_3166_2": "ISO 3166-2:SO", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "South Africa", "alpha_2": "ZA", "alpha_3": "ZAF", "country_code": "710", "iso_3166_2": "ISO 3166-2:ZA", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Southern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "018" }, { "name": "South Georgia and the South Sandwich Islands", "alpha_2": "GS", "alpha_3": "SGS", "country_code": "239", "iso_3166_2": "ISO 3166-2:GS", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "South Sudan", "alpha_2": "SS", "alpha_3": "SSD", "country_code": "728", "iso_3166_2": "ISO 3166-2:SS", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Spain", "alpha_2": "ES", "alpha_3": "ESP", "country_code": "724", "iso_3166_2": "ISO 3166-2:ES", "region": "Europe", "sub_region": "Southern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "039", "intermediate_region_code": "" }, { "name": "Sri Lanka", "alpha_2": "LK", "alpha_3": "LKA", "country_code": "144", "iso_3166_2": "ISO 3166-2:LK", "region": "Asia", "sub_region": "Southern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "034", "intermediate_region_code": "" }, { "name": "Sudan", "alpha_2": "SD", "alpha_3": "SDN", "country_code": "729", "iso_3166_2": "ISO 3166-2:SD", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "Suriname", "alpha_2": "SR", "alpha_3": "SUR", "country_code": "740", "iso_3166_2": "ISO 3166-2:SR", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Svalbard and Jan Mayen", "alpha_2": "SJ", "alpha_3": "SJM", "country_code": "744", "iso_3166_2": "ISO 3166-2:SJ", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Sweden", "alpha_2": "SE", "alpha_3": "SWE", "country_code": "752", "iso_3166_2": "ISO 3166-2:SE", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "Switzerland", "alpha_2": "CH", "alpha_3": "CHE", "country_code": "756", "iso_3166_2": "ISO 3166-2:CH", "region": "Europe", "sub_region": "Western Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "155", "intermediate_region_code": "" }, { "name": "Syrian Arab Republic", "alpha_2": "SY", "alpha_3": "SYR", "country_code": "760", "iso_3166_2": "ISO 3166-2:SY", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Taiwan, Province of China", "alpha_2": "TW", "alpha_3": "TWN", "country_code": "158", "iso_3166_2": "ISO 3166-2:TW", "region": "Asia", "sub_region": "Eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "030", "intermediate_region_code": "" }, { "name": "Tajikistan", "alpha_2": "TJ", "alpha_3": "TJK", "country_code": "762", "iso_3166_2": "ISO 3166-2:TJ", "region": "Asia", "sub_region": "Central Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "143", "intermediate_region_code": "" }, { "name": "Tanzania, United Republic of", "alpha_2": "TZ", "alpha_3": "TZA", "country_code": "834", "iso_3166_2": "ISO 3166-2:TZ", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Thailand", "alpha_2": "TH", "alpha_3": "THA", "country_code": "764", "iso_3166_2": "ISO 3166-2:TH", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Timor-Leste", "alpha_2": "TL", "alpha_3": "TLS", "country_code": "626", "iso_3166_2": "ISO 3166-2:TL", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Togo", "alpha_2": "TG", "alpha_3": "TGO", "country_code": "768", "iso_3166_2": "ISO 3166-2:TG", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Western Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "011" }, { "name": "Tokelau", "alpha_2": "TK", "alpha_3": "TKL", "country_code": "772", "iso_3166_2": "ISO 3166-2:TK", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Tonga", "alpha_2": "TO", "alpha_3": "TON", "country_code": "776", "iso_3166_2": "ISO 3166-2:TO", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Trinidad and Tobago", "alpha_2": "TT", "alpha_3": "TTO", "country_code": "780", "iso_3166_2": "ISO 3166-2:TT", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Tunisia", "alpha_2": "TN", "alpha_3": "TUN", "country_code": "788", "iso_3166_2": "ISO 3166-2:TN", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "Turkey", "alpha_2": "TR", "alpha_3": "TUR", "country_code": "792", "iso_3166_2": "ISO 3166-2:TR", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Turkmenistan", "alpha_2": "TM", "alpha_3": "TKM", "country_code": "795", "iso_3166_2": "ISO 3166-2:TM", "region": "Asia", "sub_region": "Central Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "143", "intermediate_region_code": "" }, { "name": "Turks and Caicos Islands", "alpha_2": "TC", "alpha_3": "TCA", "country_code": "796", "iso_3166_2": "ISO 3166-2:TC", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Tuvalu", "alpha_2": "TV", "alpha_3": "TUV", "country_code": "798", "iso_3166_2": "ISO 3166-2:TV", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Uganda", "alpha_2": "UG", "alpha_3": "UGA", "country_code": "800", "iso_3166_2": "ISO 3166-2:UG", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Ukraine", "alpha_2": "UA", "alpha_3": "UKR", "country_code": "804", "iso_3166_2": "ISO 3166-2:UA", "region": "Europe", "sub_region": "Eastern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "151", "intermediate_region_code": "" }, { "name": "United Arab Emirates", "alpha_2": "AE", "alpha_3": "ARE", "country_code": "784", "iso_3166_2": "ISO 3166-2:AE", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "United Kingdom of Great Britain and Northern Ireland", "alpha_2": "GB", "alpha_3": "GBR", "country_code": "826", "iso_3166_2": "ISO 3166-2:GB", "region": "Europe", "sub_region": "Northern Europe", "intermediate_region": "", "region_code": "150", "sub_region_code": "154", "intermediate_region_code": "" }, { "name": "United States of America", "alpha_2": "US", "alpha_3": "USA", "country_code": "840", "iso_3166_2": "ISO 3166-2:US", "region": "Americas", "sub_region": "Northern America", "intermediate_region": "", "region_code": "019", "sub_region_code": "021", "intermediate_region_code": "" }, { "name": "United States Minor Outlying Islands", "alpha_2": "UM", "alpha_3": "UMI", "country_code": "581", "iso_3166_2": "ISO 3166-2:UM", "region": "Oceania", "sub_region": "Micronesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "057", "intermediate_region_code": "" }, { "name": "Uruguay", "alpha_2": "UY", "alpha_3": "URY", "country_code": "858", "iso_3166_2": "ISO 3166-2:UY", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Uzbekistan", "alpha_2": "UZ", "alpha_3": "UZB", "country_code": "860", "iso_3166_2": "ISO 3166-2:UZ", "region": "Asia", "sub_region": "Central Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "143", "intermediate_region_code": "" }, { "name": "Vanuatu", "alpha_2": "VU", "alpha_3": "VUT", "country_code": "548", "iso_3166_2": "ISO 3166-2:VU", "region": "Oceania", "sub_region": "Melanesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "054", "intermediate_region_code": "" }, { "name": "Venezuela (Bolivarian Republic of)", "alpha_2": "VE", "alpha_3": "VEN", "country_code": "862", "iso_3166_2": "ISO 3166-2:VE", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "South America", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "005" }, { "name": "Viet Nam", "alpha_2": "VN", "alpha_3": "VNM", "country_code": "704", "iso_3166_2": "ISO 3166-2:VN", "region": "Asia", "sub_region": "South-eastern Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "035", "intermediate_region_code": "" }, { "name": "Virgin Islands (British)", "alpha_2": "VG", "alpha_3": "VGB", "country_code": "092", "iso_3166_2": "ISO 3166-2:VG", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Virgin Islands (U.S.)", "alpha_2": "VI", "alpha_3": "VIR", "country_code": "850", "iso_3166_2": "ISO 3166-2:VI", "region": "Americas", "sub_region": "Latin America and the Caribbean", "intermediate_region": "Caribbean", "region_code": "019", "sub_region_code": "419", "intermediate_region_code": "029" }, { "name": "Wallis and Futuna", "alpha_2": "WF", "alpha_3": "WLF", "country_code": "876", "iso_3166_2": "ISO 3166-2:WF", "region": "Oceania", "sub_region": "Polynesia", "intermediate_region": "", "region_code": "009", "sub_region_code": "061", "intermediate_region_code": "" }, { "name": "Western Sahara", "alpha_2": "EH", "alpha_3": "ESH", "country_code": "732", "iso_3166_2": "ISO 3166-2:EH", "region": "Africa", "sub_region": "Northern Africa", "intermediate_region": "", "region_code": "002", "sub_region_code": "015", "intermediate_region_code": "" }, { "name": "Yemen", "alpha_2": "YE", "alpha_3": "YEM", "country_code": "887", "iso_3166_2": "ISO 3166-2:YE", "region": "Asia", "sub_region": "Western Asia", "intermediate_region": "", "region_code": "142", "sub_region_code": "145", "intermediate_region_code": "" }, { "name": "Zambia", "alpha_2": "ZM", "alpha_3": "ZMB", "country_code": "894", "iso_3166_2": "ISO 3166-2:ZM", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" }, { "name": "Zimbabwe", "alpha_2": "ZW", "alpha_3": "ZWE", "country_code": "716", "iso_3166_2": "ISO 3166-2:ZW", "region": "Africa", "sub_region": "Sub-Saharan Africa", "intermediate_region": "Eastern Africa", "region_code": "002", "sub_region_code": "202", "intermediate_region_code": "014" } ] }
post
/api/v1/card/issue-virtual-card
Issue a new virtual card.
Send token as "Authorization" in your request header.
{ "customer_id": 132, "surname": "Doe", "amount": 100, "name": "John", "address_line1": "No 25, Wall Street", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "network": "Visa", "referral_code": "" }
{ "id": 186, "success": true, "message": "", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 50.0, "balance_update": "20/01/2023 16:00", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4600080590009000", "card_exp_mth": "01", "card_exp_year": "2024", "card_cvv": "715", "pin": "", "status": "Active", "physical": null } }
post
/api/v1/card/load-virtual-card
Add funds to virtual card by USDZ wallet.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 187, "success": true, "message": "Operation was successful. Your new balance: 75.00 USD.", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:10", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4606660590009300", "card_exp_mth": "01", "card_exp_year": "2025", "card_cvv": "745", "pin": "", "status": "Active", "physical": null } }
post
/api/v1/card/unload-virtual-card
Withdraw card balance.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 196, "success": true, "message": "Operation was successful. Your new balance: 75.00 USD.", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:10", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4606660590009300", "card_exp_mth": "01", "card_exp_year": "2025", "card_cvv": "745", "pin": "", "status": "Active", "physical": null } }
get
/api/v1/card/get-balance
Get updated balance of a card.
Send token as "Authorization" in your request header.
?id=1
{ "id": 188, "success": true, "message": "", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:13", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": 10122, "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4601666590009558", "card_exp_mth": "01", "card_exp_year": "2025", "card_cvv": "755", "pin": "", "status": "Active" } }
get
/api/v1/card/transactions
Get card transaction list. month and year are optional and only apply on physical cards.
Send token as "Authorization" in your request header.
?id=1&month=2&year=2022
{ "id": 189, "success": true, "message": "", "value": [ { "date_time": "1/22/2023_8:34:59_AM", "description": "Add50USD", "amount": "50.00", "auth_code": "358284" }, { "date_time": "1/22/2023_8:34:57_AM", "description": "Online_Request", "amount": "0.00", "auth_code": null }, { "date_time": "1/22/2023_8:34:57_AM", "description": null, "amount": "0.00", "auth_code": null }, { "date_time": "1/22/2023_8:34:57_AM", "description": "Embossing_status_change:_Embossing_Pending", "amount": "0.00", "auth_code": null }, { "date_time": "1/22/2023_8:34:57_AM", "description": null, "amount": "0.00", "auth_code": null }, { "date_time": "1/23/2023_3:43:18_AM", "description": null, "amount": "0.00", "auth_code": null }, { "date_time": "1/25/2023_4:06:14_AM", "description": "Add20USD", "amount": "20.00", "auth_code": "775425" }, { "date_time": "1/25/2023_4:06:01_AM", "description": "Add50USD", "amount": "50.00", "auth_code": "331094" }, { "date_time": "1/25/2023_4:07:53_AM", "description": null, "amount": "1.09", "auth_code": "551131" }, { "date_time": "1/25/2023_4:07:52_AM", "description": null, "amount": "104.15", "auth_code": "551119" }, { "date_time": "1/25/2023_4:07:52_AM", "description": null, "amount": "104.15", "auth_code": "551119" } ] }
get
/api/v1/card/list
List cards of specific user.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 190, "success": true, "message": "", "value": [ { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:13", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": 10122, "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4601380555509388", "card_exp_mth": "01", "card_exp_year": "2024", "card_cvv": "658", "pin": "", "status": "Active", "physical": null }, { "id": 2, "date_time": "20/01/2023 10:55", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 70.0, "balance_update": "20/01/2023 11:55", "currency": "USD", "address_line_1": "Number 25, Wall street", "address_line_2": "", "city": "Istanbul", "state": "IS", "country": 840, "zip": 102030, "phone": "79156485599", "email": "it@zedpay.com", "card_type": "Virtual", "network": "Visa", "card_number": "4601365880000932", "card_exp_mth": "01", "card_exp_year": "2024", "card_cvv": "100", "pin": "", "status": "Active", "physical": null }, { "id": 70, "date_time": "31/03/2023", "customer_id": 132, "account_id": 230, "first_name": "Alex", "last_name": "Petrov", "initial_balance": 50.0, "balance": 50.0, "balance_update": "19/04/2023 05:22", "currency": "USD", "address_line_1": "Number 26, Wall Street", "address_line_2": "", "city": "New York", "state": "US", "country": 840, "zip": "54545", "phone": "1234567890", "email": "it@zedpay.com", "card_type": "Physical", "network": "Visa", "card_number": "2000002400615001", "card_exp_mth": "--", "card_exp_year": "--", "card_cvv": "***", "pin": "Card Details", "status": "Active", "physical": { "info": { "phone": "15162154878", "gender_id": 1, "birth_date": "1985-4-11" }, "address": [ { "id": 45, "address_TypeId": 1, "address_IssuedBy": "Police", "address_IssuedDate": "2022-01-16", "address_LangId": 0, "front_side": "/files/upload/20230405-053234-135-70692657ce5-0.png", "back_side": "/files/upload/20230405-053234-135-fb0c84ec2e677d59ba4d-0.png" } ], "id": [ { "id": 45, "idNumber": "Nyh5HHkc4", "idIssuedBy": "TR", "idExpDate": "2024-04-23", "idIssueDate": "2014-04-23", "idType": 0, "idDocLang": 0, "front_side": "/files/upload/20230405-053234-135-70d665e95d3f57-0.jpg", "back_side": "/files/upload/20230405-053234-135-a33bafe9db53d7-0.jpg" } ], "kyc_status": 3, "card_holder_id": 1001, "card_kit_number": 2000002400615001, "delivery_cost": 15.0, "initial_balance_loaded": true, "client_activation": true } } ] }
get
/api/v1/card/get-cvv
Get card's CVV2.
Send token as "Authorization" in your request header.
?id=1
{ "id": 206, "success": true, "message": "", "value": "013" }
post
/api/v1/card/new-holder
Define a new card holder for bank.
Send token as "Authorization" in your request header.
{ "info": { "customer_id": 132, "surname": "Doe", "amount": 100, "name": "John", "address_line1": "No 25, Wall Street", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "1234567890", "email": "it@zedpay.com", "network": "Visa", "referral_code": "" }, "gender": "Male", "birth_date": "2000-12-15" }
{ "id": 191, "success": true, "message": "", "value": null }
post
/api/v1/card/submit-kyc
Send holder's document to bank for verification.
Send token as "Authorization" in your request header.
{ "id": { "id": 1, "idNumber": "H10203040", "idExpDate": "2025-12-16", "idIssueDate": "2018-12-19", "idIssuedBy": "TR", "idType": "National_ID", "idDocLang": "English", "front_side": "/files/upload/front.jpg", "back_side": "/files/upload/back.jpg" }, "address": { "id": 1, "address_TypeId": "Bank_Statement", "address_IssuedDate": "2021-12-15", "address_IssuedBy": "Police", "address_LangId": "English", "front_side": "/files/upload/front.jpg", "back_side": "/files/upload/back.jpg" } }
{ "id": 192, "success": true, "message": "Document has been uploaded successfully. One of our team will review your application in 24 hours.", "value": null }
post
/api/v1/card/activate
Active an assigned physical card.
Send token as "Authorization" in your request header.
{ "id": 126, "otp_code": "123456" }
{ "id": 209, "success": true, "message": "Card has been activated successfully.", "value": null }
post
/api/v1/card/set-pin
Set PIN code of a physical card.
Send token as "Authorization" in your request header.
{ "id": 1, "PIN": "1234", "otp_code": 123456 }
{ "id": 193, "success": true, "message": "New PIN saved successfully.", "value": "Pin changed" }
get
/api/v1/card/get-pin
Get PIN code of a physical card.
Send token as "Authorization" in your request header.
?id=1
{ "id": 194, "success": true, "message": "", "value": "1234" }
post
/api/v1/card/load-physical-card
Add funds to physical card by USDZ wallet.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 20.5, "otp_code": 123456 }
{ "id": 195, "success": true, "message": "Operation was successful. Your new balance: 75.00 USD. It can take up to 10 minutes to update your card balance.", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:10", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Physical", "network": "Visa", "card_number": "4606660590009300", "card_exp_mth": "01", "card_exp_year": "2025", "card_cvv": "745", "pin": "", "status": "Active", "physical": { "info": { "phone": "15162154878", "gender_id": 1, "birth_date": "1985-4-11" }, "address": [ { "id": 45, "address_TypeId": 1, "address_IssuedBy": "Police", "address_IssuedDate": "2022-01-16", "address_LangId": 0, "front_side": "/files/upload/20230405-053234-135-70692657ce5-0.png", "back_side": "/files/upload/20230405-053234-135-fb0c84ec2e677d59ba4d-0.png" } ], "id": [ { "id": 45, "idNumber": "Nyh5HHkc4", "idIssuedBy": "TR", "idExpDate": "2024-04-23", "idIssueDate": "2014-04-23", "idType": 0, "idDocLang": 0, "front_side": "/files/upload/20230405-053234-135-70d665e95d3f57-0.jpg", "back_side": "/files/upload/20230405-053234-135-a33bafe9db53d7-0.jpg" } ], "kyc_status": 3, "card_holder_id": 1001, "card_kit_number": 2000002400615001, "delivery_cost": 15.0, "initial_balance_loaded": true, "client_activation": true } } }
post
/api/v1/card/unload-physical-card
Withdraw card balance.
Send token as "Authorization" in your request header.
{ "id": 4, "amount": 100, "otp_code": 123456 }
{ "id": 197, "success": true, "message": "Operation was successful. Your new balance: 75.00 USD.", "value": { "id": 4, "date_time": "20/01/2023 16:00", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 75.0, "balance_update": "20/01/2023 16:10", "currency": "USD", "address_line_1": "No 25, Wall Street", "address_line_2": "", "city": "London", "state": "LN", "country": 840, "zip": "10122", "phone": "441234567890", "email": "it@zedpay.com", "card_type": "Physical", "network": "Visa", "card_number": "4606660590009300", "card_exp_mth": "01", "card_exp_year": "2025", "card_cvv": "745", "pin": "", "status": "Active", "physical": { "info": { "phone": "15162154878", "gender_id": 1, "birth_date": "1985-4-11" }, "address": [ { "id": 45, "address_TypeId": 1, "address_IssuedBy": "Police", "address_IssuedDate": "2022-01-16", "address_LangId": 0, "front_side": "/files/upload/20230405-053234-135-70692657ce5-0.png", "back_side": "/files/upload/20230405-053234-135-fb0c84ec2e677d59ba4d-0.png" } ], "id": [ { "id": 45, "idNumber": "Nyh5HHkc4", "idIssuedBy": "TR", "idExpDate": "2024-04-23", "idIssueDate": "2014-04-23", "idType": 0, "idDocLang": 0, "front_side": "/files/upload/20230405-053234-135-70d665e95d3f57-0.jpg", "back_side": "/files/upload/20230405-053234-135-a33bafe9db53d7-0.jpg" } ], "kyc_status": 3, "card_holder_id": 1001, "card_kit_number": 2000002400615001, "delivery_cost": 15.0, "initial_balance_loaded": true, "client_activation": true } } }
get
/api/v1/card/features
Get a list of card features.
Send token as "Authorization" in your request header.
{ "id": 198, "success": true, "message": "", "value": { "visa_physical": [ { "Key": "Maintenance Fee", "Value": "Free" }, { "Key": "ATM Withdrawal", "Value": "%2.5" }, { "Key": "Daily Online Limit", "Value": "$10,000" } ], "visa_virtual": [ { "Key": "Maintenance Fee", "Value": "Free" }, { "Key": "ATM Withdrawal", "Value": "$1.5" }, { "Key": "Daily Online Limit", "Value": "$4000" } ], "master_virtual": [ { "Key": "Maintenance Fee", "Value": "Free" }, { "Key": "ATM Withdrawal", "Value": "%1.2" }, { "Key": "Daily Online Limit", "Value": "$3000" } ], "visa_physical_card": "/files/images/visa-card.png", "visa_virtual_card": "/files/images/visa-card.png", "master_virtual_card": "/files/images/master-card.png", "new_card": "/files/images/new-card.png" } }
post
/api/v1/card/card-to-card
Send money from a card to another.
Send token as "Authorization" in your request header.
{ "from_id": 35, "to_card_number": "1234567890123456", "amount": 10.0, "otp_code": 123456 }
{ "id": 199, "success": true, "message": "Transaction has been completed successfully.", "value": { "id": 35, "date_time": "07/02/2023", "customer_id": 132, "account_id": 230, "first_name": "John", "last_name": "Doe", "initial_balance": 50.0, "balance": 40.0, "balance_update": "07/02/2023 16:11", "currency": "USD", "address_line_1": "My address", "address_line_2": "", "city": "London", "state": "IS", "country": 792, "zip": "10203040", "phone": "906522115555", "email": "it@card.com", "card_type": "Virtual", "network": "Visa", "card_number": "4601380590002326", "card_exp_mth": "02", "card_exp_year": "2024", "card_cvv": "***", "pin": "", "status": "Active", "physical": null } }
get
/api/v1/card/commissions
Get a list of commissions on card actions.
Send token as "Authorization" in your request header.
{ "id": 204, "success": true, "message": "", "value": { "virtual_issue": 20.0, "virtual_load": 10.0, "virtual_unload": 11.0, "virtual_maintenance": 3.0, "physical_issue": 15.0, "physical_load": 15.0, "physical_unload": 4.0, "physical_maintenance": 3.0 } }
+ Category
get
/api/v1/category/get-all
Get all Category
get
/api/v1/category/get-by-id
Get by id Category
post
/api/v1/category/update-category
Update Category
Send token as "Authorization" in your request header.
post
/api/v1/category/add-category
Add category
Send token as "Authorization" in your request header.
get
/api/v1/category/delete-category
Delete category
Send token as "Authorization" in your request header.
+ Currency
post
/api/v1/currency/add
Add a new currency
Send token as "Authorization" in your request header.
{ "name": "Euro", "code": "EUR", "color": "#000000", "currency_type": "Fiat", "country_id": 83, "sell": 1.05, "buy": 1.04, "swift_commission": 10, "withdrawal_commission": 0.4, "swap_commission": 0.5, "referral_bonus": 0, "minimum_input": 0, "maximum_output": 1000000, "status": "Enabled", "details": [] }
{ "id": 69, "success": true, "message": "New record created.", "value": null }
post
/api/v1/currency/edit
Edit currency paramters.
Send token as "Authorization" in your request header.
{ "id": 1, "name": "Euro", "code": "EUR", "color": "#000000", "currency_type": "Fiat", "country_id": 83, "sell": 1.05, "buy": 1.03, "swift_commission": 10, "withdrawal_commission": 0.4, "swap_commission": 0.5, "referral_bonus": 10, "minimum_input": 0, "maximum_output": 1000000, "status": "Enabled", "details": [] }
{ "id": 69, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/currency/delete
Delete a currency
Send token as "Authorization" in your request header.
{ "id": 4 }
{ "id": 71, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/currency/list
Get a list of currencies.
?sort_by_price=true
{ "id": 72, "success": true, "message": "", "value": [ { "id": 1, "name": "Euro", "code": "EUR", "currency_type": "Fiat", "color": "#000000", "country": "Europe", "flag": "/files/flags/EU.png", "sell": 1.05, "buy": 1.03, "swift_commission": 10.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 3, "name": "British Pound", "code": "GBP", "color": "#000000", "currency_type": "Fiat", "country": "United Kingdom", "flag": "/files/flags/UK.png", "sell": 1.25, "buy": 1.23, "swift_commission": 10.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 2, "name": "Ruble", "code": "RUB", "color": "#000000", "currency_type": "Fiat", "country": "Russian Federation", "flag": "/files/flags/RU.png", "sell": 95.0, "buy": 91.0, "swift_commission": 100.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 6, "name": "Tether", "code": "USDT", "color": "#000000", "currency_type": "Crypto", "country": "Global", "flag": "/files/flags/USDT.png", "sell": 1.0, "buy": 1.0, "swift_commission": 0, "withdrawal_commission": 0, "swap_commission": 0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [ { "blockchain": "ethereum", "contract_address": "0x12345678901234567891", "digits": 6, "withdrawal_commission": 5.0, "swap_commission": 0.3, "max_auto_send": 10.0 } ], "status": "Enabled" } ] }
get
/api/v1/currency/rates
Get a list of Exchange Rates.
{ "id": 73, "success": true, "message": "Last Update: 21/05/2022 08:48", "value": [ { "Country": "United States", "Code": "USD", "Value": 1.0 }, { "Country": "Europe", "Code": "EUR", "Value": 0.94715279 }, { "Country": "United Kingdom", "Code": "GBP", "Value": 0.80190718 }, { "Country": "United Arab Emirates", "Code": "AED", "Value": 3.6725 }, { "Country": "Turkey", "Code": "TRY", "Value": 15.92719083 }, { "Country": "Lebanon", "Code": "LBP", "Value": 1507.5 }, { "Country": "Canada", "Code": "CAD", "Value": 1.28180744 }, { "Country": "Hong Kong", "Code": "HKD", "Value": 7.85016603 }, { "Country": "Iceland", "Code": "ISK", "Value": 131.34289245 }, { "Country": "Philippine", "Code": "PHP", "Value": 52.22376062 }, { "Country": "Denmark", "Code": "DKK", "Value": 7.06630636 }, { "Country": "Hungary", "Code": "HUF", "Value": 362.78575891 }, { "Country": "Czech Republic", "Code": "CZK", "Value": 23.30523917 }, { "Country": "Australia", "Code": "AUD", "Value": 1.41891016 }, { "Country": "Romania", "Code": "RON", "Value": 4.67400996 }, { "Country": "Sweden", "Code": "SEK", "Value": 9.94444207 }, { "Country": "Indonesia", "Code": "IDR", "Value": 14588.69190376 }, { "Country": "India", "Code": "INR", "Value": 77.8078918 }, { "Country": "Iran", "Code": "IRR", "Value": 42036.76611846 }, { "Country": "Brazil", "Code": "BRL", "Value": 4.90707449 }, { "Country": "Russian Federation", "Code": "RUB", "Value": 61.28008518 }, { "Country": "Croatia", "Code": "HRK", "Value": 7.13651118 }, { "Country": "Japan", "Code": "JPY", "Value": 128.06369443 }, { "Country": "Thailand", "Code": "THB", "Value": 34.43291112 }, { "Country": "Switzerland", "Code": "CHF", "Value": 0.97416826 }, { "Country": "Singapore", "Code": "SGD", "Value": 1.37837946 }, { "Country": "Poland", "Code": "PLN", "Value": 4.37375423 }, { "Country": "Bulgaria", "Code": "BGN", "Value": 1.85221729 }, { "Country": "China", "Code": "CNY", "Value": 6.70408412 }, { "Country": "Norway", "Code": "NOK", "Value": 9.74358502 }, { "Country": "New Zealand", "Code": "NZD", "Value": 1.56409731 }, { "Country": "South Africa", "Code": "ZAR", "Value": 15.83655929 }, { "Country": "Mexico", "Code": "MXN", "Value": 19.87000743 }, { "Country": "Israel", "Code": "ILS", "Value": 3.36644969 }, { "Country": "South Korea", "Code": "KRW", "Value": 1270.83973336 }, { "Country": "Malaysia", "Code": "MYR", "Value": 4.38543877 } ] }
post
/api/v1/currency/convert
Convert currency.
Send token as "Authorization" in your request header.
{ "from_currency_id": 1, "to_currency_id": 3, "from_amount": 100.0 }
{ "id": 88, "success": true, "message": "", "value": { "from_currency_id": 1, "from_currency": "EUR", "to_currency_id": 3, "to_currency": "GBP", "from_amount": 100.0, "to_amount": 86.170212765957459, "rate": 0.86170212765957455 } }
get
/api/v1/currency/list-to-open
Get a list of currencies that a customer can open a wallet on.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 133, "success": true, "message": "", "value": [ { "id": 1, "name": "Euro", "code": "EUR", "currency_type": "Fiat", "color": "#000000", "country": "Europe", "flag": "/files/flags/EU.png", "sell": 1.05, "buy": 1.03, "swift_commission": 10.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 3, "name": "British Pound", "code": "GBP", "color": "#000000", "currency_type": "Fiat", "country": "United Kingdom", "flag": "/files/flags/UK.png", "sell": 1.25, "buy": 1.23, "swift_commission": 10.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 2, "name": "Ruble", "code": "RUB", "color": "#000000", "currency_type": "Fiat", "country": "Russian Federation", "flag": "/files/flags/RU.png", "sell": 95.0, "buy": 91.0, "swift_commission": 100.0, "withdrawal_commission": 0.5, "swap_commission": 1.0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [], "status": "Enabled" }, { "id": 6, "name": "Tether", "code": "USDT", "color": "#000000", "currency_type": "Crypto", "country": "Global", "flag": "/files/flags/USDT.png", "sell": 1.0, "buy": 1.0, "swift_commission": 0, "withdrawal_commission": 0, "swap_commission": 0, "referral_bonus": 0.0, "minimum_input": 0.0, "maximum_output": 1000000.0, "details": [ { "blockchain": "ethereum", "contract_address": "0x12345678901234567891", "digits": 6, "withdrawal_commission": 5.0, "swap_commission": 0.3, "max_auto_send": 10.0 } ], "status": "Enabled" } ] }
+ Escrow3
post
/api/v1/escrow3/new
Open a new escrow offer.
Send token as "Authorization" in your request header.
{ "title": "Crypto Exchange", "description": "Some details about this transaction.", "partners": [ { "customer_id": 2, "account_id": 1, "role": "Seller", "will_pay": 100000.0, "will_receive": 0.0, "commission": 0.0 }, { "customer_id": 4, "account_id": 3, "role": "Seller", "will_pay": 200000.0, "will_receive": 0.0, "commission": 0.05 }, { "customer_id": 5, "account_id": 5, "role": "Buyer", "will_pay": 0.0, "will_receive": 300000.0, "commission": 0.02 } ] }
{ "id": 120, "success": true, "message": "New escrow transaction has been submitted successfully.", "value": null }
post
/api/v1/escrow3/edit
Edit escrow parameters when its status is still pending.
Send token as "Authorization" in your request header.
{ "id": 1, "title": "Crypto Exchange", "description": "Some details about this transaction.", "partners": [ { "customer_id": 132, "account_id": 87, "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.0 }, { "customer_id": 141, "account_id": 104, "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.05 }, { "customer_id": 144, "account_id": 134, "role": "Buyer", "will_pay": 0.0, "will_receive": 200.0, "commission": 0.02 } ] }
{ "id": 121, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/escrow3/delete
Delete pending escrow by user. Admin can delete escrows in any status.
Send token as "Authorization" in your request header.
{ "id": 3 }
{ "id": 122, "success": true, "message": "Selected item has been deleted.", "value": null }
post
/api/v1/escrow3/change
Update new status of an escrow.
Send token as "Authorization" in your request header.
{ "id": 1, "type": "Transaction", "new_status": { "status": "Cancelled" }, "new_partner_status": { "customer_id": 144, "status": "Agreed" }, "new_file": { "title": "Contract", "file": "/files/upload/contract.jpg" }, "new_transaction": { "account_id": 87, "debit": 0, "credit": 100.0 } }
{ "id": 123, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/escrow3/list
Get a list of recent transactions.
Send token as "Authorization" in your request header.
?customer_id=1&id=2
{ "id": 124, "success": true, "message": "", "value": [ { "id": 2, "date_time": "24/07/2022 09:53", "transfer_id": 101610, "title": "Crypto Exchange", "description": "More details about this transaction.", "partners": [ { "customer_id": 132, "customer_email": "it@zed-pay.com", "customer_name": "John Doe", "account_id": 134, "currency_code": "EUR", "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.0, "total_paid": 0.0, "total_received": 0.0, "status": "AGREED" }, { "customer_id": 141, "customer_email": "boris@zed-pay.com", "customer_name": "Boris Tras", "account_id": 135, "currency_code": "AED", "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.05, "total_paid": 0.0, "total_received": 0.0, "status": "PENDING" }, { "customer_id": 144, "customer_email": "igor@zed-pay.com", "customer_name": "Igor Alison", "account_id": 136, "currency_code": "USDT", "role": "Buyer", "will_pay": 0.0, "will_receive": 200.0, "commission": 0.02, "total_paid": 0.0, "total_received": 0.0, "status": "PENDING" } ], "files": [ { "Key": "Contract", "Value": "/files/upload/contract.jpg" } ], "logs": [ { "date_time": "24/07/2022 09:53", "text": "Transaction created by Makan M." } ], "status": "Pending" }, { "id": 1, "date_time": "24/07/2022 09:44", "transfer_id": 101609, "title": "Crypto Exchange", "description": "More details about this transaction.", "partners": [ { "customer_id": 132, "customer_email": "it@zed-pay.com", "customer_name": "John Doe", "account_id": 137, "currency_code": "EUR", "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.0, "total_paid": 0.0, "total_received": 0.0, "status": "AGREED" }, { "customer_id": 141, "customer_email": "boris@zed-pay.com", "customer_name": "Boris Tras", "account_id": 139, "currency_code": "AED", "role": "Seller", "will_pay": 100.0, "will_receive": 0.0, "commission": 0.05, "total_paid": 0.0, "total_received": 0.0, "status": "PENDING" }, { "customer_id": 144, "customer_email": "boris@zed-pay.com", "customer_name": "Igor Alison", "account_id": 140, "currency_code": "USDT", "role": "Buyer", "will_pay": 0.0, "will_receive": 200.0, "commission": 0.02, "total_paid": 0.0, "total_received": 0.0, "status": "PENDING" } ], "files": [ { "Key": "Contract", "Value": "/files/upload/contract.jpg" } ], "logs": [ { "date_time": "24/07/2022 09:44", "text": "Transaction created by Makan M." }, { "date_time": "24/07/2022 09:50", "text": "Item updated by Makan M." } ], "status": "Pending" } ] }
+ ESIM
get
/api/v1/esim/list-countries
Get a list of available countries and packages to order a phone number.
Send token as "Authorization" in your request header.
{ "id": 217, "success": true, "message": "", "value": [ { "Prices": [ { "Period": 1, "Price": 40.0 }, { "Period": 3, "Price": 140.0 }, { "Period": 6, "Price": 260.0 }, { "Period": 12, "Price": 480.0 } ], "country_code": "CA", "country_name": "Canada", "country_flag": "https://numeroimages.s3.amazonaws.com/flags/canada.png" } ] }
post
/api/v1/esim/new-number
Order a number from an allowed country list for a specific period of time.
Send token as "Authorization" in your request header.
{ "customer_id": 1, "country_code": "CA", "period": 3 }
{ "id": 212, "success": true, "message": "Purchase successfully done, and Phone Numbers will be added shortly once the order completed.", "value": [] }
get
/api/v1/esim/list-numbers
Get a list of purchased number for a specific user. Filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&id=2
{ "id": 216, "success": true, "message": "", "value": [ { "id": 3, "date_time": "03/10/2023 09:38", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Male", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/r20221130-084620-132-8cc47bb2b12b40b9a424e915792df20a-0.jpg", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***", "agent_id": 132 }, "country": "CA", "period": "Quarterly", "expiry": "02/01/2024 09:38", "number": "12345678XXX", "number_info": { "id": 311, "number": "12345678XXX", "country_code": "CA", "purchase_date": "2023-09-18 00:00", "expiration_date": "2023-12-13 00:00", "free_receiving_seconds": 1000, "auto_renew_enabled": false, "renew": 0, "blocked": false, "terminated": false }, "number_status": "Enabled", "number_assigned": "", "call_forwarding": "+901234567890", "history": [ { "date_time": "2023-10-03T09:38:32.9713959-04:00", "type": 1, "success": true, "transfer_id": 103320, "data_package": null, "phone_number": { "country_code": "CA", "qty": 1, "period": 3 }, "top_up": null }, { "date_time": "2023-10-03T09:42:00.3004692-04:00", "type": 3, "success": true, "transfer_id": 103321, "data_package": null, "phone_number": null, "top_up": { "amount": 20, "client_number": "12345678XXX" } }, { "date_time": "2023-10-03T10:50:06.0812985-04:00", "type": 3, "success": true, "transfer_id": 103324, "data_package": null, "phone_number": null, "top_up": { "amount": 20, "client_number": "12345678XXX" } } ], "status": "Active" }, { "id": 4, "date_time": "03/10/2023 10:47", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Male", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/r20221130-084620-132-8cc47bb2b12b40b9a424e915792df20a-0.jpg", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***", "agent_id": 132 }, "country": "CA", "period": "Quarterly", "expiry": "02/01/2024 10:47", "number": "", "number_info": { "id": 0, "number": null, "country_code": null, "purchase_date": null, "expiration_date": null, "free_receiving_seconds": 0, "auto_renew_enabled": false, "renew": 0, "blocked": false, "terminated": false }, "number_status": "Disabled", "number_assigned": "", "call_forwarding": "", "history": [ { "date_time": "2023-10-03T10:47:05.5033103-04:00", "type": 1, "success": true, "transfer_id": 103322, "data_package": null, "phone_number": { "country_code": "CA", "qty": 1, "period": 3 }, "top_up": null } ], "status": "Pending" } ] }
post
/api/v1/esim/assign-number
Assign a phone number to the ESIM number.
Send token as "Authorization" in your request header.
{ "id": 1, "client_number": "901234567890" }
{ "id": 219, "success": true, "message": "Phone number assigned successfully", "value": "Phone number assigned successfully" }
post
/api/v1/esim/unassign-number
Unassign client number from the ESIM number.
Send token as "Authorization" in your request header.
{ "id": 1 }
{ "id": 222, "success": true, "message": "Number unassigned successfully", "value": "Number unassigned successfully" }
post
/api/v1/esim/send-code
Send a verification to client's mobile number.
Send token as "Authorization" in your request header.
{ "id": 1 }
{ "id": 220, "success": true, "message": "Message have been sent Successfully", "value": "[]" }
post
/api/v1/esim/verify-code
Confirm client's mobile number by providing the verification code.
Send token as "Authorization" in your request header.
{ "id": 1, "code": "123456" }
{ "id": 221, "success": true, "message": "Client have been verified Successfully", "value": "[]" }
get
/api/v1/esim/get-sms
Get a list of received SMS by a phone number.
Send token as "Authorization" in your request header.
?id=1
{ "id": 218, "success": true, "message": "", "value": [ { "from_number": "12345678XXX", "to_number": "87654321XXX", "delivery_time": "2023-09-18 08:36:40", "sms_text": "This is sandbox account." } ] }
post
/api/v1/esim/change-renew-status
Change renew status on the expiry time.
Send token as "Authorization" in your request header.
{ "id": 1, "status": "Enabled" }
{ "id": 214, "success": true, "message": "Auto renew updated successfully", "value": "Auto renew updated successfully" }
post
/api/v1/esim/change-call-forwarding
Forward incoming call to another number.
Send token as "Authorization" in your request header.
{ "id": 1 }
{ "id": 213, "success": true, "message": "Call forwarding has been enabled to +901234567890.", "value": "Call forwarding enabled successfully!" }
post
/api/v1/esim/top-up
Recharge your phone number credit.
Send token as "Authorization" in your request header.
{ "id": 1, "amount": 20, "otp_code": "123456" }
{ "id": 215, "success": true, "message": "Balance Added Successfully", "value": [] }
+ IBAN
post
/api/v1/iban/confirm-mobile
Send OTP code to the client.
Send token as "Authorization" in your request header.
{ "mobile": "+901234567890" }
{ "id": 232, "success": true, "message": "Verification Code Sent", "value": null }
post
/api/v1/iban/apply
Apply for a TR-IBAN.
Send token as "Authorization" in your request header.
{ "customer_id": 100, "first_name": "John", "last_name": "Doe", "birth_date": "1990-12-15", "mobile": "+901234567890", "mobile_otp": "123456", "email": "dev@zedpay.com", "tckn": "00049238440", "userAddress": { "city": "Istanbul", "county": "Turkey", "district": "Taksim", "addressDetail": "Number 26, First Street" }, "employmentStatus": { "workStatus": "Kamu Sektör Ücretli", "profiency": "Antrenör", "monthlyIncome": "100000", "incomeResource": "MaaÅŸ" }, "estimatedMonthlyTransactions": { "productType": "Dijital Cüzdan", "estimatedMonthlyTransactionNumber": "0 - 199", "estimatedMontlyTransactionVolume": "0 - 49.000" } }
{ "id": 233, "success": true, "message": "Application has been sent successfully.", "value": null }
get
/api/v1/iban/list
Get a list of TR-IBAN wallets.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 234, "success": true, "message": "", "value": [ { "id": 1, "date_time": "23/02/2024 15:54", "customer_id": 132, "customer_email": "harry@zedpay.com", "first_name": "John", "last_name": "Doe", "birth_date": "15/12/1990", "mobile": "+901234567890", "email": "harry@zedpay.com", "tckn": "00049238440", "info_profile": { "person": { "id": 10, "actorCode": "VP1204030577", "firstName": "John", "lastName": "Doe", "phone": "901234567890", "email": "harry@zedpay.com", "profilePictureUrl": null, "birthDate": "1990-12-15T00:00:00Z", "active": false }, "clientData": null, "actorCode": "DZED1204030001" }, "info_wallet": { "wallets": [ { "walletId": 12, "actorType": "person", "actorId": 10, "totalTxCount": 7, "totalAmount": 5800.0, "totalCurrency": "TRY", "uiLedgerId": 67, "uiLedgerCode": "L-B096A14584464F459C7282DFE0210886", "uiAmount": 5800.0, "uiCurrency": "TRY", "uiTxCount": 7, "debitAmount": 3000.0, "creditAmount": 2800.0, "bufferAmount": 0.0, "debitTxCount": 3, "creditTxCount": 4, "bufferTxCount": 0, "debitLedgerId": 68, "debitLedgerCode": "L-E0F3EF00DED64DB0AEE8DD6DA4F05C43", "debitCurrency": "TRY", "creditLedgerID": 69, "creditLedgerCode": "L-BDA8B7D1FED44740B6070C52CD711C3A", "creditCurrency": "TRY", "bufferLedgerID": 72, "bufferLedgerCode": "L-8D8FF23E48934F139C10CE5B740E77A3", "bufferCurrency": "TRY", "walletCode": "W-0951B2F59C81421DB5038231E6050298", "transactions": [ { "id": 27, "type": "deposit", "externalId": null, "walletId": 12, "actorType": "person", "actorId": 10, "balanceBeforeTx": 4800.0, "balanceAfterTx": 5800.0, "currency": "TRY", "sign": "+", "amount": 1000.0, "ledgerOfOwner": "UI", "ledgerOfSender": null, "ledgerOfReceiver": "UI", "ledgerOfOwnerId": 67, "ledgerOfReceiverId": 67, "ledgerOfSenderId": null, "daysToProcess": null, "receiptNumber": null, "description": "DZED4537363803", "date": "2024-02-23T12:43:25.9414120Z", "symmTransactionId": null, "sourceTransactionId": 27, "code": "tx-dd582e43b51142fda6c0a1c3d1e45c12", "walletCode": "W-0951B2F59C81421DB5038231E6050298", "summarySender": "", "summaryReceiver": "person[10] > wallet[12] 0TRY > UI[67] 5800TRY", "summaryOwner": "person[10] > wallet[12] 0TRY > UI[67] 5800TRY", "state": "done" }, { "id": 25, "type": "deposit", "externalId": null, "walletId": 12, "actorType": "person", "actorId": 10, "balanceBeforeTx": 3800.0, "balanceAfterTx": 4800.0, "currency": "TRY", "sign": "+", "amount": 1000.0, "ledgerOfOwner": "UI", "ledgerOfSender": null, "ledgerOfReceiver": "UI", "ledgerOfOwnerId": 67, "ledgerOfReceiverId": 67, "ledgerOfSenderId": null, "daysToProcess": null, "receiptNumber": null, "description": "DZED4537363803", "date": "2024-02-23T12:43:21.5914270Z", "symmTransactionId": null, "sourceTransactionId": 25, "code": "tx-56c98033649a495e85c6e574c28f9180", "walletCode": "W-0951B2F59C81421DB5038231E6050298", "summarySender": "", "summaryReceiver": "person[10] > wallet[12] 0TRY > UI[67] 5800TRY", "summaryOwner": "person[10] > wallet[12] 0TRY > UI[67] 5800TRY", "state": "done" } ], "cardCount": 0 } ], "actorId": 10, "actorCode": "DZED1204030555" }, "upgrade_data": { "personId": 10, "tckn": "00049238440", "day": 15, "month": 12, "year": 1990, "userAddress": { "city": "Istanbul", "county": "Turkey", "district": "Taksim", "addressDetail": "Number 1, Main Street" }, "employmentStatus": { "workStatus": "Kamu Sektör Ücretli", "profiency": "Antrenör", "monthlyIncome": "100000", "incomeResource": "MaaÅŸ" }, "estimatedMonthlyTransactions": { "productType": "Dijital Cüzdan", "estimatedMonthlyTransactionNumber": "0 - 199", "estimatedMontlyTransactionVolume": "0 - 49.000" } }, "KYC": {}, "cards": [ { "issued_on": "14/03/2024 13:24", "type": "Virtual", "number": "5632863403104575", "name": "John Doe", "expity":"3/2029", "CVV": "123", "PIN": "1234", "Activated": true, "Frozen": false, "status": "Active", "deliverCountry": "TR", "deliverCity": "ISTANBUL", "deliverTown": "USKUDAR", "deliverAddress": "Number 27, Central" }, { "issued_on": "14/03/2024 13:24", "type": "Physical", "number": "5632863403104576", "name": "John Doe", "expity":"3/2029", "CVV": "123", "PIN": "1234", "Activated": true, "Frozen": false, "status": "Active", "deliverCountry": "TR", "deliverCity": "ISTANBUL", "deliverTown": "USKUDAR", "deliverAddress": "Number 27, Central" } ], "details": {}, "status": "Upgraded" } ] }
get
/api/v1/iban/get-agreement
Show TR-IBAN Wallet agreement to the customer.
Send token as "Authorization" in your request header.
?id=1
{ "id": 235, "success": true, "message": "", "value": { "docs": [ { "fileType": "DOCS", "base64Content": "UEsDBBQABgAIAAAAIQAXqy8sZgEAAFQFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0lMtuwjAQRfeV+g+Wt1Vi6KKqKgKLPpYtUukHGHsCVv2SbV5/3zGBqKqASAU2kZKZe++ZJJ7BaG00WUKIytmK9sseJWCFk8rOKvo1eSseKYmJW8m1s1DRDUQ6Gt7eDCYbD5Gg2saKzlPyT4xFMQfDY+k8WKzULhie8DbMmOfim8+A3fd6D0w4m8CmImUPOhy8QM0XOpHXNT5uSMDUlDw3fTmqospk/brIFXZQE0DHPyLuvVaCJ6yzpZV/yIodVYnKbU+cKx/vsOFIQq4cD9jpPvB1BiWBjHlI79xgF1u5IJl0YmFQWZ62OcDp6loJaPXZzQcnIEb8TkaXbcVwZff8Rzli2miIl6dofLvjISUUXANg59yJsILp59Uofpl3gtSYO+FTDZfHaK07IRKeWmiu/bM5tjanIrFzHJyPuAXCP8beH9msLnBgDyGp039dm4jWZ88HeRtIkAey2XYnDn8AAAD//wMAUEsDBBQABgAIAAAAIQBLIEW4/gAAAN4CAAALAAgCX3JlbHMvLnJlbHMgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJLbSgMxEEDfBf8hzHs32yoi0mxfROibyPoBYzK7G9xcSKba/r1BvC2sRbCPczucSWa92btRvFDKNngFy6oGQV4HY32v4LG9W1yDyIze4Bg8KThQhk1zfrZ+oBG5DOXBxiwKxWcFA3O8kTLrgRzmKkTypdKF5JBLmHoZUT9jT3JV11cy/WRAM2GKrVGQtuYCRHuI9D+2dMRokFHqkGgRU5lObMsuosXUEyswQd+XdH7vqAoZ5LzQ6rRCPOzck0c7zqh81Spy3W8+y7/7hK6zmm6D3jnyPKc17fhWeg3JSPORPvY6l6e0oT2TN2SOfxjG+GkkJ1fZvAEAAP//AwBQSwMEFAAGAAgAAAAhAL8EZlVJBgAA2RoAABEAAAB3b3JkL2RvY3VtZW50LnhtbOxZy27bRhTdF+g/DLRKANsUJVkvRA5ky0mDIoGRpN2PyJE01TyImaFkapWvKFAgrZdee5NVdpJ/JF/SO0NSlCM3oOXmVTQwRPLO3HPPfXKkPHp8zhmaEaWpFL2Kf1CtICICGVIx7lV+ef1kv11B2mARYiYF6VUSoiuPj3784dG8G8og5kQYBBBCd+dR0KtMjIm6nqeDCeFYH3AaKKnlyBwEkntyNKIB8eZShV6t6lfdXaRkQLQGeydYzLCuZHDBeTm0UOE5KFvAhhdMsDLkvMDw7wxy6HW89jZQbQcg8LDmb0PV7wzV9CyrLaDGTkDAagvpcDekW5xr7oZU20Zq7YZU30Zq74a0VU58u8BlRAQsjqTi2MCjGnscq2kc7QNwhA0dUkZNApjVZg6DqZjuwAi01gi8Ht4ZoeVxGRJWD3MU2avESnQz/f21vqXeTfWzy1qDsHJmwVzHI+eGaZPrqjKxS9UH2WBxUfMUYRBHKfSERuvpwHdFg8VJDjL7VABmnOX75pFfstX+abQN0jQUgGXoZ7njLGX+aUS/WiKbFmKtUYbCTZs5Ew4VXBjeKTQbwfVLDp8coLYF0AxIyZdFjtHOMLyg6G6LQ0u2VY6TZsXi0CKwfskZ+DGZDQAdmnByJ5RaHlfP6mKDJ1ivC90ikruROlzDJXwjRtH4fo3wVMk4KtDo/dCeFSNxbg8nd8DKGmqzyfX9yLya4AgmJQ+6z8ZCKjxkwAjaA0GFI5cB+wmFYi/ulpw7uc01sjOmcgSnqqEME3uNYK3RjbDCz6Ao663jVu20AaczK4V3krHSVvYPpF04wYUve5Vq9Umj2jlpr0Vn6hbhgIxwzMz2ytmGyLE4U/byWwDrMwzTP4BJSlTFs1KVLqonUhgNG7AOKGT0NeVEoxdkjl5KjoWFnvSFvn0l0NtiBz5MP0+0u+pFTqDWSNf14sTa3JB5GSNvTVvdGoRvmPq8607TXR3hAKonUkQTNSOVo1+JrQR0ysjUKCnoFJ3Z5xlBy99Dwgn6iS44MYwoivoCNnB0/RdVU2IosugmtZEGZ7u8qp1W0/c7tpD+L6//dHkd/RwzhsXqKlhdof7ycnU1RS9XVwuMnhMjaIla8f32oNWoNb9SrXzjVXF7zFr9/qBdazy5GbNGrd889U/9L9hfQwnH38/fXd9VP921g/pJuLoS8KWEZ02D4gQrEAV4D91nUD/48ObtjQb8TkdM5tC34cq/8vr98ObPh8hAIkeQ5hCLPGcf3vxBBTJkahONmUlwtLoKMZpmQxY+kI5FHMTMVQhKYmUQlM/1hQNCksE5EyYx1EcGD0U1cSXiFLNlzDHM64Thm4aHMYtNvh1nezUZkiFNGEFTen1BNXG/71FbcZx+xAAjPDWWWaoroICXb9XyvbCEUtxUbwFwlI0po2iKeYRFgjOPJIuvL0ysMqoAcIkjhRdIY2OtIBeTfHFCQjICYgCLhoRRxYiApNE9FMrVhYptbMF08WADlMA1wgusGMRhL3UrgYZ6twDfHCKDztor9qARxgy2OPLCOr18D16Z5XuWGnM7EQQcqK+u4Puuc2bvZnQL/y1E7g6wK+xowCXLy3xPBPmGv3VK4etD6vYNXMhrGK8u4sIAxAKvLhiEyb6OP4ooAHkzkkCqlLFk82CWNA75ijTmabllKTS2NgGL74EEJg/EE24VmYJTG2Hcy53eWyfdZpdZURYyYUtgTNTyEpQJ0KZQaTbGlsEwzoyD5bx53FHD0ADD/CPFkHQ00Hj5ToS2Vh0CMADvrBVb+FPKGWx8gEOkZYJDoM4X+KHzNPcBPTCAOZICiZjjLPZkP5LagDM4hH5+iGBnVnSCIJyegJSjZdskkSrmB2XOzM1Bc1A9GfS/0jnoi7/TP9fZqHrcqVeb/Z2/exy2Gu1Tm4XPF0eCtelril9PYM70KjBGpTrNZKkGNN54Y2Ovspjsn7woH4TD41O/3mwNSgWhddzu3O6vW0mzQQJztn7lbqw62+NXNn1ze5jv2B+moSDgvtmut1PtaPwcW2UjI5A3/JQBHU9M8QjhMpIXz9B4G6sTgqGTwYWqS8BISrPxOI6Ne6ym5gLJbJiz167d48ShDJ4q+3tJl0GvnlETAMt60yl5uYvuNv3RxCv+T+robwAAAP//AwBQSwMEFAAGAAgAAAAhANZks1H0AAAAMQMAABwACAF3b3JkL19yZWxzL2RvY3VtZW50LnhtbC5yZWxzIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJLLasMwEEX3hf6DmH0tO31QQuRsSiHb1v0ARR4/qCwJzfThv69ISevQYLrwcq6Yc8+ANtvPwYp3jNR7p6DIchDojK971yp4qR6v7kEQa1dr6x0qGJFgW15ebJ7Qak5L1PWBRKI4UtAxh7WUZDocNGU+oEsvjY+D5jTGVgZtXnWLcpXndzJOGVCeMMWuVhB39TWIagz4H7Zvmt7ggzdvAzo+UyE/cP+MzOk4SlgdW2QFkzBLRJDnRVZLitAfi2Myp1AsqsCjxanAYZ6rv12yntMu/rYfxu+wmHO4WdKh8Y4rvbcTj5/oKCFPPnr5BQAA//8DAFBLAwQUAAYACAAAACEAK1N7+9UGAADPIAAAFQAAAHdvcmQvdGhlbWUvdGhlbWUxLnhtbOxZzYsbNxS/F/o/iLk7Ho+/l3iDP7NNdpMl66TkqLXlGa01o0GSd9eEQElOvRQKaeml0FsPpTSlgYZeeul/spDQpn9EJY3tGdmabj42NJRdw3ok/d7TT+89PT1rrl47DQk4RoxjGrWc0hXXASga0TGO/JZzdzgoNBzABYzGkNAItZw54s617Y8/ugq3RIBCBKR8xLdgywmEiLeKRT6S3ZBfoTGK5NiEshAK2WR+cczgidQbkqLnurViCHHkgAiGUu3tyQSPEBgq0T9+draX6vtE/osEVx0jwg6UcmTIaOx4WlJffM67hIFjSFqOnGlMT4boVDiAQC7kQMtx9Z9T3L5aXAkRkSObkRvov4XcQmA89bQc8w9Xgm7fa1RKK/0aQMQmrt9Qn5U+DYCjkVxpwiWLLVVrbsNbYDOg5NGiu1kvlU18Rn95U3+z1vEqBl6DksfK5hoHzX6vauA1KHmsbuDbrtdplg28BiWPtQ18pd+ue30Dr0EBwdF0E12rNxq1BXoFmVCyY4U3azW33lvAU1QxE12JfCTyYi2ER5QNJEA7FwocATGP0QSOJK4dC8pBD/OYwLkDYhhRLrtdr1SSgVdxvdVHWxxuIZiRTrpGfKNL8QF8xHAsWs4NqdXJQF48f3726NnZo1/PHj8+e/QT2MV+ICxyOzDys3Kvvv/y728/A3/98t2rJ1/Z8TyLf/nj5y9/+/3f1AuD1tdPXz57+uKbL/784YkF3mbwMAsf4hBxcAudgDs0lAu0TIAO2ZtJDAOIsxLtyOcwgkrGgu6LwEDfmkMCLbgOMu14j8l0YQNenx0ZhA8CNhPYArwZhAZwj1LSocy6pptqrqwVZpFvn5zNsrg7EB7b5u6uebk/i2XcY5vKboAMmvtEuhz6KEICqDE6Rcgidh9jw657eMQopxMB7mPQgdhqkiE+NKIpFdrBofTL3EZQ+tuwzd490KHEpr6Hjk2k3BuQ2FQiYpjxOpwJGFoZw5BkkbtQBDaSB3M2MgzOhfS0jwgF/THi3CZzm80NujehzFtWt++ReWgimcBTG3IXUppF9ui0G8AwtnLGUZDFfsKnMkQh2KfCSoKaO0S1pR9glOvuexgZ7j5/b9+VacgeIGpkxmxbAlFzP87JBCKb8jYLjRTbZtgaHZ2Zb4T2LkIEnsAxQuDuJzY8jQ2bp6RvBDKr7CCbbW5AM1ZVO0JcVUuntkS8i7kRsgfIpzl89uZriWcOoxCyPM23pmbI9A+Z3Iy2eCWjqZFKMVOb1k7iNg+N9eVq3Q+gEVaqze3xOmeG/15nj0mZo7eQQW8sIxP7a9tmCIkxQRowQ4jBri3dShHD/amI2k5abGaVm5ibNnVDca3oCXF0TgX031Q+FomLqXnswHepdvISynqNk4dbr2y6lI3xh1/Y9OAs2kfyLLFAL+uay7rmf1/X5O3ny2rmspq5rGbsIu+hmkkLGH0NtLzs0VrC3JufCSbkQMwJ2uW69OFy748HslM3tNDqoikO5ONiOgPnM6ifAaPiUyyCgwDGcpqSnsHnC9U+BzHlsnzS3VbdaoDMwj06XtzjqTpL321KASjSfre66pelmkh6a/X0InSlXrd8fdm6JKBk34REZjKTRNlCor7sPIeEXtmFsGhaWDSU+lwW+mvhFXk4AaguxquVhJEMNxnSY+WnRH7p3Qv3dJ4xzWV7luU1FdeL8bRBIhNuJolMGAby8FjvvmBfN1OXGvSUKTZp1Bvvw9cqiazlBhKZLXAi91y5KtWMYNxyJvJnk3wMY6mPq0wFiR+1nJFYGPptMkvMuOhBHiQwPZSsP8QCMUBwKGM96wYSpdxKXl2t8QMl13Q/PMvpr6yT0WSCRiKnJ23KsUSJdfQdwapBZ5L0QTA+AYdkxu5AaahqvaQMOMZcrKw5xiwT3KkV19LVYisab4DSLQpJHMDFiZJN5glcP6/oZNahma6vymwvFnPoKye986l7vpAayCTNnANEnZr2/PH+DvkMqzTvG6yS1L2e65rLXJd3Srz7gZChlk5mUFOMLdTSXpPaBRYEmelWoZl3Rlz0abAeteqAWNaVurXxcpseHsnI78lqdUYE11TlrxYGu8vXkkkm0L3L7HIqwIzhlvPArbYrXa/aLbiNar9QKVfcQqPaLhfa1Wq51K+W3F7HeyiNIoKwVE3mHsgf+2S+eHuv+zfe4IfLUvvKiIZFquvgohbWb/BLnvUNvhp3AJaWeVDzBs1ys1MrNMvtQaHS6zQKzW6tU+jVuvXeoNetNpqDhw441uBKu9yt1PqNQq3U7RYqNVfRbzQL9YrntSv1dqNfaT9c2FqufPm9NK/mtf0PAAAA//8DAFBLAwQUAAYACAAAACEADzZD7cQRAABoSQAAFgAAAGRvY1Byb3BzL3RodW1ibmFpbC5lbWbsW2+MXFUVvzP7p93S0tIW0y0YHgR0m2xbIQSRQGQjIFDarIUCiaT17c7b7jBvZjczb9rMRuJ+UoxBaQuJGE0UDfKhCX5Qg9UPjWkwARJNUCIJVCTC8sEPTYmNCZ3W87vnnX3n3XlvdrbW+KG87Z137r9zzz3nd879M9OCMSY0yfNMvzEHB5P80G5j+iNjvLt33mNMwUzfZ8yvqFw1sc/8CmNupb6PFoz5vVN3/IsD5k//KhpiYI5eacyPKX35rvu+RE3nTR/x/vzgGbR78kqMMGRM34lVxgyYH9nexNT0FVZS3pjLiigBtbo40b+5D3XbCpvM1fT+uLgxHu93aPV8oVi87sFWIwqqjjjqQf+tJIb0H8ruf35kPUn2y4K5c2VhFVqMv7z1+pWL/Qv2fUrx4Wf5cmTzO3WeWzG//jvN+ofK1aDh7QoOertnqn5tCX7LexdpfGh4CKMVJ+jjplU1c8zcZmuN2dw32f9wMOvXfe/uMKhE9ZlaueKNI38g8N4sBdXAu7c8Vw2iMKiXvbEa1Ve9k+V6JYjK3iqzgrS8kj5XEr/LKCE/YPNDlAO9arEe736zmkpXmDWUBohGD6ZBoX7QtuD+aywP5sptBtRs1sSzmSyyjnk2nh1V2ixfRzdark+ZmwvDiuuOZhj6tfZk2xtbaFe83e0539sZRLWylbbfzo4lhYyr7Rt5niFmv9bOAGXuDJ4y78coyZtBWkLuddTsNfm90lh7mma6HKwVM99pKb5jIMWrJMUeJcVYq9SuhX5UjdXjNVt+vV2b9Ee9C4eZxRAjiDUM/Q6Zyy3N5fhjhODN5UAnl6Jk1aIlBha5DcW4Qj2jdLV9gz8+0YNtCYq5owX3ZymYH2oHCLu9Ii9bwxfq5b1Z7HJrsZNkMa5li40cwfzzuCe9N8a9H6dZJr3ZRGkfzZYn4fTdmNMR84ji9MwWLyI8TLVrJb8Wm/5wueZFQQVY8cOo5c+2S75XYVek5DWateZkMwTCvFazHnml9jn092bCqt9oA1uxfdl+YkO2tbYe3hKhUMf4GIxtryPYYFwraOK3lEvLBIsoA416fMr4nAeGUMY8dGzotN8PrN5Ok/32Kb2x0sjfpq3/WJ3w7P2qP9luhb5S5kQzbEbS0udmjWAimCi3wsCrlM+VG0FIaquX4YdV6pHSHEvL82O/GFycdzIXtGYPEo8dzNC06FE8MuHJ9hJuGEG8U/hxe65lKcT7RfNrDGIt6Hx9zll9Dhb2mvuVPhMc+Z5fIe22rZpqFMHerp+tAVOsP9bQHOmtHO4vh2Wv4ldn/VrLZzzOhFmWx5w0QpJ5sm4QXzg+SVTRmpFeHJnY5xif+BQUcQxjlKWRqPG1JZ79HeTZyeyb56JmnfEz6i34s3V/zoOtwIFlEXkl0qKcP5fG7nAhjd2GH7XPefDreMTpoBRMEQ5Jud5EEJbrYVCjBas86pVmTtWbiAyk/0Uabt6i96w/59dDwvuoxXAr8M7MEY4X/RdxWTSgZ8C4YT33KS0KUhmrvC5IH9Ysa0PHBfTvLOfROM9c8cdcBe0aHaJVaHNpfW519GnVF9JiOpqoxJvy/ZBUYvFaI49una2fjc6GrFbbzKMQci5q16sWuqMqXiRIR0+lrUR+LknPStZUQYleP3ndFU0lOhJMJdxgPfDhGtlVid9g7XZjCkcU11uwL1oqFoxbfY6RPrcpfTI+CXGJNhtn68GCKGSWFiH6F681CdqSCO9qhuOeaMfViawpGnGys0nv/sYKh509o24js3muoGdTnqxbJ0vMS2tFqXmqmZiZvM4/FbZD2uJK3Be7ZGlbYj//pVcG6Z+cD9iKQ9Yb8y2Bc+JNq/aQJXwl+0yoIhPpevuBoEXxuR4RbDl4dLOMx1OnCD3b8Kt2hxDH7Ih2ElG7Ogps86rUGekkkiboFwyyJnTLPOsmdk1bV9Z9rW2JSsATIr2gKR3phRv+sNp11+r3rVbLpNW9Squ0ykcUL2n69aBC8FZhY9Sz4B9dXNVoNQjb5zhE1Gh92x/UF6hTcC4q024B0QSKnmjGSiYVi5wc3XjN4rWCUSIzdSMir/jSjzGn17QktuCs6Gpat+GRJH5oSzEqub3Yh/XNkambLj9jdfkE6XK90mW8ecXBMCpP+nSKkfmKbCIRUzzjhOt8zPUVs0txDZLTkjWWt/9MrYTtmVU42WkB9sAmr1KuhtRqxC95jZmWXxr1ytU5f4tFf2xmL0FNcgYSifTaJjE+vTuRPZ2eEfeHLZkX21d2hTwWW19ieoLlBPd8A5Cvcd6rHCKNb1S6GYlIO1MzNa/WrPoc2gLWKnNNIhRG1ytJZzw9VHgndZremsLA7rjNe2a7ajM704jIT/xSPWhs8crn4r1KLfB83BHUAQVspVsz9WZ1GyIMxxfGOO8IIBNGYi2l4z7vFRml3IZ1KNaRNZQ9qXNGa5x7kSwd8+ms27mPub1UWPq24SP3tuG6sXrZ1/eR7sOj9WW+s+48XuuQojtuuNcHXXux7OuoDI+9lTO45etNduCJ3+C40fYGtaE42Z9Qm/uYwvhCce1GshFLvKE40Z9Qw3G7gkkort1YLBo+TW8o+v0JtSluVzQJVcSFLD1XUFpNCbecl1FaZ/huuDlIWnDyuBJFXh6p30ysJqjNp2JemyjBL2YLuOcluVQfPKzJ+MbUtEzDRCYwXa5Ne3h+do0xjx07PfyLB9/DkIsPhvreP79efDecbiIhj3YoK9H7yecnmmiHurvictApJurJK9d14AHtPk38ror548HYKEf67LXXTvyVxjFmuon869R24SdJ2+OUBz+0kaT58HvLY6UD1nTmBsO6Rx/RPdpB93zbzc/F1X13+S813aNuJKa1Hf73PjDd/PA3p4cfvv3AQV36t7Wrbp1/4y93XIo+0ItNTp0/H69L/IhN7G24KZM1ArKLR7uuwByk924zQ2W+6bwbz3pybfKFS90m/y29XtFYa0Bj2Ifo40Uq3EDpKaK/SRN4IW730aE3xp799Rtjx4iG/W6j9IDhtVoerGNYm48T/TDZfJZsXafkmbtNSPkK+WidMFAjbFSodHyx/gDVeuZNU7I+DPpeajNn6cj2rVPeM2PUl/tXKbe3UKbyim2DWqyv2GsgXkN5oOXbR6zNeEv9gKpHHnVSDj5uf8mDhr7QFnnsg/BGP5TLGLpcyqQ/vhMWHnp89BE5tKyaD96uzZBgK9jsSIbNJotsM5Tl2WycaC8eT/O/mNj6B6U/UMVv6f06yfTnuJ3IeXOMu2GTL+c80TtMkzAR2khyY2GSEpCxQG+gaje95yyqdlpkAC2JvsFT7Kn1LLpFO8lLvbar4GFtnEcfaZdlF8wT830rY77vx/O9ELt00zMSvkP8kBJuJ2jjnhp3L9FH477dx8VZJM1f4j9imxv/nwbDixb/O+P77XEcRzy/1OI/eOXR3bDwQJGxcCVVriO7bs/AwquU9qCtycbCv4keoz1WiTyrZv0usnbUHuaRT7ZsPEebSaJGqez/sQoEi/Fbx27t5+LjwDa+uZVy3V6Sjr2S1+1lzdFtpQ3q3LiBelc2yKHjvPTXaxBklrzIL7SMoWOXlGnZhYceX+tCyyd9kbBeaVwtZ03ohtvlri0Xa9xu/vKoYX+5iSpxX/5Ahr+cRGPUmfzYOWKu9sSWvcjtyjFL6YeG5XiL3jscOR43LAdskycH5qK9I29f0YvOOvRUZLkg35r+Tj0dMSzfIyZfvrNEf9rbQj4bxTFgykaPkl0j0p497JVtGU55lcXY4VNUiGzcmaWe6OdRud4d8NujdahJ7yZFJtRKnPKob5PoiChEt30FGd+jCBPaKNew+wuOTWkf1T7m+pr23Tz/kryOLTpe6BgBO2vf1vx1Hu10Xzf+6Lzb3uXpzknLJeXSX2h3/roe+JEyVw7kNca6+eiT8Zo2TpXrqePjGT56mtI+k4+91dRBo47Xs2m13iSY0TjwLY09Z8viKBulE7ZX03JJ8wRiE24NKp2wqWzADxirEL2PeKIuNIw8rHuy/lUNjxHk4k/rWdtSysVWru2zbCS8pVz6a75o2wu+XWzKW/pkyal9zZVN5qBx5PIWvbgY1f4kcmkd6r6gcTYDLXGzV6yujLFapcpdhL1vZWB1kAruN/lYfZforDgF9Pl2P8XxLEEW6rD/epvKz1q0cPzSWNR4mouxB5Ttt5/YSVUs2rF/q9kYq+MmomOvsUBslhdbsmyrMQQa9WJHGVPbLA8/7liokzJ5u+dCoaVexkFfjTMtox7DxaKLiROGsQBMrO3vxAQut4CJjSYfExHRTYoTkcWFjlGw+4JdERHb5ignvieyaX25etfyyxzEB4XuFfsSp78dz/OnGdjHYWipON0wOHEA9Vivea1Pz3ea0ItTw1QcPxndiMOIoYjPyNfiE2nZ+kaJMHxNAbqT/Qb7SGe57AQwNvLwCNwwgCuvB+AncbtluZyhFhy/O9du5DV+Neay7KHjk8Y89mVZeHVjMJJgU3hkjaNxrXHiyil5Gb+X9npuul7LKknL6q4FwisvTmgeF4LVFwq8pziegVV8e7sUVhMkAnHAG7DRiRiPWvg2pjJikniMvS3vTM/a6B1RAv4S5CbcEP/h5YgDNxJmwVmiNFpm7U2y1gAZMxtnWbbQbbrZTcqFFqy5+NT9NW7kjlRjJQtTbvzKkk38UOTRfVDmzk+vT3JG1zjUuNTjimyuzly+ct+83D3F1wqM1RP0/grh9mQGVseoYJvJx+qLJh1XOfZl4bRhcRjQmuKiZTY+ZfFn+qyUFfO0XXRM64YftJG2Lo6Wwoy0cemsvYbI4uoaCTqGrr+aoevDBdY1yvJ0PU60l8Mftnws5r+uv5P/czH/pWxZpjMJIoGsiFmez+eZEn1eU2hmRgJeM32qD+0ayzfqWtdZvtarX7jnDZ303rGb3+At9tW2lST+BH69+tMzcez/e2yDjzP8aQ8V+CbfBuuoHvuE7D0Z+8R2+4ldBMftyHpfeud+of6GvXuCAN67z1oPry7eqbj7e5wbcEcCKap2ZXniDu1Hve4Ztf9IXmyj7abjqcZHHs/l+n2Wr2vaHUPLmIUzfVbU/CW2gZ87f9c39Hy1/G6dnC+Xg9v5GLfnC7y/xpciLm7LVIB3Hm5XFhA7gDTcnmP/ykgAAivxKpC9g0FpsoLwDjh9XuRzCKLIPnu/kpwf+Qy53+J7IR4psJ6DqAV5ZL8j6MaNShrVjGhXt2IvwZRrUzfGuPaVlLfvQdustQ1vHf/QR2PG9QW3f97eQ+M7j4+ek7unEdrFvo6hmr/QWViXNuDbK0ZfNozRqwmb11ODWzIw+kSB7+TzMDpr0nd1wA9/wwu84Lsm/l7ItbWrQ1dfukzb252DF8uOOVzR3zmHVwzPYZfJn8OHROM82Pn9V+J98IgzdoWWG7/EC9jnsCawD8ntI06dVRvPwWuEykrWL2esB5asl6IF9IWbdlkr0h7vpbAn+hE8uxjUutO0xqjGaR4Gta9on8iznR5ffFfLpX1c/FTLIn11fND213FA+5E7T7SV33f06gcnDPvBbYSde6jBQxl+cKiw9J3PiP0GBNabshjy7A01sKF3f0EKz1pu0YfWjegha38nZe58kDAPzGdnxnzeMTwflOXNZ5zorfEYLv9p+FPMf0VfJ//3Yv7bu/A/ahA7Zgx+G8jrFTwCK1vD+gLQn74XqlnvgJ/xzheexpFGbuFbxA97uyrtyD2T1qfWt8RNjUuUgRbbuPuQPP8QXsJbeGoba/u6/iPtZQwZO8um0DV0fkWGztcUe7OpBz4Of+0bN/RAZ8kG/5kq8m9avpHhPy/1KFveb1rQ56P837RcN2YRgH3MhT+f/KYlsTP0nUd3i6WChcPE/Fl6/zwDC69dBJzmjXssHvePGeN+cIHjCgbhp+vienni39Xy/534BIMXFYPQt6avMun/o3GLysN+khd76rzbHo/wg2xIUg8a/+dD8sN9nXm3PZLww5yQpB60r/pv6uvMu+2RZO6Et3mh6Zn/XEyvVeW055nfEffHA32NxHWQTWjwFRpqERr+IDT64rdXG2Ne4An6PwAAAP//AwBQSwMEFAAGAAgAAAAhAO9hKkA2BAAAIgwAABEAAAB3b3JkL3NldHRpbmdzLnhtbLRW227jNhB9L9B/MPRcR5dIjq2us/AlbrKIu0HsokDfKIm2iPAikJQd76L/3iElWk6TLpIUeUmoOTNnRqPDGX/6/Mhob4elIoKPvfAs8HqY56IgfDv2/lgv+kOvpzTiBaKC47F3wMr7fPnzT5/2qcJag5vqAQVXKcvHXql1lfq+ykvMkDoTFeYAboRkSMOj3PoMyYe66ueCVUiTjFCiD34UBAOvpRFjr5Y8bSn6jORSKLHRJiQVmw3JcfvPRcjX5G1C5iKvGebaZvQlplCD4KoklXJs7L1sAJaOZPejl9gx6vz2YfCK190LWRwjXlOeCaikyLFS8IEYdQUS3iWOnxEdc59B7vYVLRWEh4E9nVaevI0gekYwyPHj2ziGLYcPkac8pHgbz+DIQ7rGhoP3FXNCoApdlG9iiVxffROLNCqROqrIMOK3FZUc6Q6s65Gir1FNA92STCLZ3MlWMixPb7ZcSJRRKAek04Ov37PVmb/QRPPPHvGjtZs+eJcwI74JwXr7tMIyh4sCAyYIPN8ABd6gmuo1ylZaVOCyQ1DkRTBs4PJQlZjb2/kXzB2Hx1HS4HmJJMo1lqsK5aDxmeBaCur8CvG70DOYMRKuQBOh0A7fSbwjeH9Hcl1L3BDZQdSdVs1QAyKOGLztk0G1FAVMnX1aS/L6z2ICbFGhq/3FRAKGsCQFXpsur/SB4gW804p8wxNefKmVJsBoG/I/KvhRAdBuyPwVdLE+VHiBkemR+qBk9gMtKKmWREohb3gB8viwZGSzwRISEKTxElRHpNjbPl9jVMDu+6C8tcJ/gjNcy/M1qPVhKrQW7LqT9vvz2lvkn8oXNnih3OFeCH10DRZxMJq1F8ugHRKN4tkifgkZXgwmk+lLyPQqGi5eRP47zyK+mA5Hbc1tpSw1G/NOupORe481ETPEMklQb2l2qm88MvkwJdzhGYbBhU+RVZ05sN9vAMUQpQtovANs01haEFXN8cae6RLJbcfbesgXrTCyvhy5zDjD8jcp6qpB9xJVjYydSxjHbSTh+pYwZ1d1tnJRHEbtCVTz4utO2j517dmnGmRhx8EtsvKyvlr21/et/KhcGengJaqqRoHZNhx7lGxLHRrRaHgq4KeXfci2UYtFFosazD6g3LwZeLeHzhY524nfubOdd7bY2eLOljhb0tkGzjYwNhj4WFLCH+AyuKOxbwSlYo+L6w5/ZmoHfIkqPG/WCshLNIZ2z6jeLsWPsIBwQTT8oq1IwdCj2UfRwIS33hQdRK2f+BrMOFdPGcyubq+//yTYSvxftZh1lxOQ4+rAsm5L/dIUTomC0VHBQtNCOuxXi4VxWoj8xuzXuNViFCaj6PyqgRO7CLWdLvDd7/FmihQuWsyFJk3o92E8mkeT0aA/nwfTfpxMJv3pIIn7URLOpuezxWB0Nf27vaTux/3lPwAAAP//AwBQSwMEFAAGAAgAAAAhABa2A75SEAAAqaYAAA8AAAB3b3JkL3N0eWxlcy54bWzcXUtz20YSvm/V/gcUT7sHWy+Kkl1RUpJs2a7YjmPJSeU4BIYiIhDDxcOy/Gdy3HPuucX7v3ZeIEE2BkQPWozicpVFguhvHl9/jenG65vvPs2S4CPP8likJ4O9x7uDgKehiOL0+mTw4eri0fEgyAuWRiwRKT8Z3PF88N23//zHN7dP8+Iu4XkgAdL86Sw8GUyLYv50ZycPp3zG8sdizlP540RkM1bIr9n1zoxlN+X8UShmc1bE4ziJi7ud/d3d0cDCZF1QxGQSh/yZCMsZTwttv5PxRCKKNJ/G87xCu+2CdiuyaJ6JkOe5HPQsMXgzFqcLmL0hAJrFYSZyMSkey8HYHmkoab63qz/NkiXAIQ5gHwCMQv4Jh3FsMXakZR0njnA4owVOHNVw/DpTA8ijIpqiUPared1RtqxgU5ZP64gc16nDBdzdTM3RLHz66joVGRsnEkmyHkjiAg2s/pfjV3/0R/5Jb1dDGHwrtRCJ8BmfsDIpcvU1e5fZr/ab/nMh0iIPbp+yPIzjK9lB2coslg2+PE3zeCB/4SwvTvOYNf44VR8afwnzorb5LI7iwY5q8YZnqfz5I0tOBvtmU/55sWGx5Vx1amVbwtLraluRPbp6X+/cyYCnjz5cqk1j2dTJgGWPLk+14d7waRJfs6LMZGBQ3zSCiR9ZdC7Hzz8VJUvUzjt2Yszf2nTN17/pXs5ZGOtOsUnBZZjYG+2qHiSxikr7h0+qL+9LRR4rC2Eb0QDm7wJ2BzAmo4eMJZcmpMlf+eS1CG94dFnIH04Gui258cOrd1ksMhm2TgZPdJty4yWfxS/jKOJpbcd0Gkf85ylPP+Q8Wm7/8UKHHrshFGUqPx8cjbQXJXn0/FPI5yqQyV9Tpjh9qwwStXcZLxvX5v+pwPYsbU32U85UNA/21iF091EQ+8oir422GbNcG7veC9XQwbYaGm6rocNtNTTaVkNH22roeFsNaZj7bChOI3ng0PvDZgDqJhyHGtE4DrGhcRxaQuM4pILGcSgBjeNwdDSOw4/ROA43ReAUInR5Yc3ZDxze3o67+Rjhh7v5kOCHu/kI4Ie7OeD74W6O7364m8O5H+7m6O2HuzlY43HNUit4JWWWFr1VNhGiSEXBA7Xo7Y3GUomlU1waPHXQ4xnJIAlgTGSzB+LeaCHT3zd7iBap//G8UJliICbBJL5WKU/vjvP0I0/EnAcsiiQeIWDGZVLmmBEfn874hGc8DTmlY9OBqkwwSMvZmMA35+yaDIunEfH0VYgkQWHh0DJ/niqRxAROPWNhJvp3TTCy+PA6zvvPlQIJzsok4URYb2lcTGP1zw00TP/UQMP0zww0TP/EoMYZ1RRZNKKZsmhEE2bRiObN+CfVvFk0onmzaETzZtH6z9tVXCQ6xNdXHXvda3fniVAnJXr34zK+TnVVtjeSrZkG71jGrjM2nwaqqt0MWx8ztp0zEd0FVxTHtAUS1bpeu4iqZcdp2X9CV9CoxLXAI5LXAo9IYAu8/hJ7I5fJaoH2kiafuSzHRaNoNVIn0V6ypDQL2v5qY0V/D1sK4CLOcjIZNMMSePBbtZxVdFJEvmUv+3dsidVfVutRibR7FpKgl4kIb2jC8Mu7Oc9kWnbTG+lCJIm45REd4mWRCeNrdcnva0o6Sf75bD5leaxzpRWI7of66nKG4A2b9x7Qu4TFKQ1vzx/NWJwEdCuIl1dvXgdXYq7STDUxNIBnoijEjAzTVgL/9TMf/5umg6cyCU7viEZ7SlQe0mDnMcFBxiCJiAhJLjPjNCY5hmq87/ndWLAsokF7l3FzBVHBiRAv2WxuFh0E2pJx8VbGH4LVkMb7iWWxqgtRieqKBKxWNszL8a887B/q3oqApDL0Q1no+qNe6mprOrj+y4QVuP5LBM2mPDwo/yUY7Apc/8GuwFEN9jxheR47T6F641ENt8KjHm//5M/iiURkkzKhm8AKkGwGK0CyKRRJOUtzyhFrPMIBazzq8RK6jMYjKMlpvBdZHJGRocGomNBgVDRoMCoONBgpAf2v0KmB9b9MpwbW/1odA0a0BKiBUfkZ6eGf6CxPDYzKzzQYlZ9pMCo/02BUfnbwLOCTiVwE0x1iapBUPleDpDvQpAWfzUXGsjsiyOcJv2YEBVKD9i4TE3VriUjNRdwEkKpGnRAutg0cFck/8zFZ1xQWZb8IKqIsSYQgqq0tDzjacvXatU1m+k6Q3l14l7CQT0US8cwxJretzJcvzW0Z693X3ehU9nwdX0+L4HK6qPbXYUa7Gy2rhH3FbHODTXM+qm5+aTJ7w6O4nFUdhTdTjA66G2uPXjEebjZeriRWLA87WsI2R5stl6vkFcujjpawzeOOllqnK5ZtenjGsptGRzhq859FjudwvqM2L1oYNzbb5kgLyyYXPGrzohWpBKdhqM4WQHa6acZt3008bnuMitwoGDm5UTrryg3RJrD3/GOsjuyYoKnbW1w9AeK+XkR3ipw/lsLU7VdOOHW/qeuVXDilOQ8acQ66n7haiTLueewcbtwQneOOG6JzAHJDdIpETnNUSHKjdI5NbojOQcoNgY5W8IiAi1bQHhetoL1PtIIoPtGqxyrADdF5OeCGQAsVQqCF2mOl4IZACRWYewkVoqCFCiHQQoUQaKHCBRhOqNAeJ1Ro7yNUiOIjVIiCFiqEQAsVQqCFCiHQQoUQaKF6ru2d5l5ChShooUIItFAhBFqoer3YQ6jQHidUaO8jVIjiI1SIghYqhEALFUKghQoh0EKFEGihQgiUUIG5l1AhClqoEAItVAiBFqq51dBfqNAeJ1Ro7yNUiOIjVIiCFiqEQAsVQqCFCiHQQoUQaKFCCJRQgbmXUCEKWqgQAi1UCIEWqj5Z2EOo0B4nVGjvI1SI4iNUiIIWKoRACxVCoIUKIdBChRBooUIIlFCBuZdQIQpaqBACLVQI0eaf9hSl6zL7PXzV03nFfvdTV7ZT7+u3ctehDrpDVb1yY3W/F+FMiJug8cbDA51vdAOJx0ksdInacVq9jqsviUCd+PzhvP0Onzp6z4cu2Xsh9DlTAD7saglqKsM2l69bgiRv2ObpdUuw6hy2Rd+6JTgMDtuCrtZldVGKPBwB47YwUzPec5i3ReuaOZzithhdM4Qz3BaZa4Zwgtvicc3wMFDBed36sOM8jRbXlwKENnesIRy5EdrcEnJVhWMojK6kuRG6sudG6EqjGwHFpxMGT6wbCs2wG8qPaigzLNX+QnUjYKmGCF5UAxh/qiGUN9UQyo9qGBixVEMELNX+wdmN4EU1gPGnGkJ5Uw2h/KiGhzIs1RABSzVEwFLd84DshPGnGkJ5Uw2h/KiGizss1RABSzVEwFINEbyoBjD+VEMob6ohlB/VIEtGUw0RsFRDBCzVEMGLagDjTzWE8qYaQrVRrasoK1SjGK6Z4xZhNUPcAblmiAvONUOPbKlm7Zkt1RA8syXIVcU5Lluqk+ZG6MqeG6ErjW4EFJ9OGDyxbig0w24oP6px2VIT1f5CdSNgqcZlS06qcdlSK9W4bKmValy25KYaly01UY3Llpqo9g/ObgQvqnHZUivVuGyplWpctuSmGpctNVGNy5aaqMZlS01U9zwgO2H8qcZlS61U47IlN9W4bKmJaly21EQ1LltqohqXLTmpxmVLrVTjsqVWqnHZkptqXLbURDUuW2qiGpctNVGNy5acVOOypVaqcdlSK9W4bOmNNIkJHgF1OWNZEdA9L+4ly6cF6/9wwg9pxnORfORRQDvU16hR7tyuvP5KYet3+8n9Czln6gnotduVIvMEWAuod3wVLV5TpYxVTwL79jC7WXfYnq7Vn7Nc5tR2n93di+Huk3MrlMa3pZ0MTrPY3ECtX4NW+x7m1RdtXnvBmXX4lRec6W21V4/p/m8Y8WKMZyy52QNDXL5gSzc3ZnJmf1CMgAlI1cMZG7Yrp6y26zbOpywzPy21Uu1go0G3ybRvT7vhfP5WNq63qS/SQXhuZmfxYrWxeqiZHPuBebOafc/asZ1FYR4b9fpjsmjJTqVto/Utd+zXlrfcqR+f220Lhhstly+6U5vPFi+6C1WYWfTrYng00s6pd9Yh6GTAdABablZXxUigs4t1t6nOdtfdxmzr4zb7TrexAZDAbfY7uM0yIpj9VuLBPTuWfWXfRseqgtJX5lgHlum6Y5ltfRzrwOlY9jITAsc6+Eocq5psh2Ntcp9tOMm+nYaVg5be1sdJhk4nsVcUETjJ8IE7yXHdR6ogD31Eq4beR2Lz/7npXV+P6eMLh05fsNeIEfjC4dfhC1ocDy9e9GHfvGi2iX2bKxOwP3rg7A/r7DvJ12rYaiA4fKL+rbuCerHT0hGuYvXC4FNNVh8/OHL6ga14EPjB0VfhB9VU32cQ2Cbzx07m7VQSMH/8QJnfxLX2/a1qfv9I/evC/LPeq8AnTuYtJQTMP/mbMl9N7n2qnJ7rUE42C+2T3h2FuZ9YlrO7hKX2oUOTX9jnq3geA2dwvNrJwaWtdm3i0t33QpWIW/ptvEwVkgXo6sqT5F3O1tnbinFi6JYfXqXK2W6Vpyx6Gn1iBkr+fs6T5A0ze4u5e9eET5Re5K97u/ohn2u/j837Kpz2mT6x4QTYWe2M+druK+YNlvaOG8ecq9o9/0XcNEy4vgGs71x39OSwzOXkXKod1nu4LI+ud/GM/e+35MvvN8FesIxBaxHNqYXGWGZd3BnHkDXsxsLTwy5Z9amFYhg1lUsno/tUjNoKXNcj09dPcJ+aJIZgU0F0EnxARbCtedIT/Ffl+nWy+tQGMWSZSp6TrCEVWbb2+HDI2naRDkOKKak5STmkIsUWAb8eBdHSYGpbThpGVDTYatzfQhv01QsMI6bK5GTkiIoRWxd7oML4azkw9R4nB8dUHNgZ/Fuo4p6z/Q2MmDqMk5EnVIzYiX+gqthWde17kZZnDVc/mcdwNM0ytrZmW1iy1lCRsckaqngGKmTm1JiqjsnpMxVy9eV9qfyMlYWopjlV01iyxL4CwMzeA7hkYzkiPepH1bTc8Gwx+8uVdLXl0B5w62trs41Ol3UO1z1F/RZYeX757cvvFPqsvHKDvzzMLHf7NDZL+zQp7thnwNfiPeEU4jZttGrb1qJQ2k7LmfkQJ/DiKvvjPZe8scsSwPuezUe2mwXXCFkn3vxEI1DrWxs4f+AryXumzKXKtADUmDcZ0AgyLdrkuG9XN56H2vp1a3qPX8PKUiWyXLcLlNmy1hzuqn9dOKPOiRczBXXy5fe0oNKJ+zxURcVGlWx1+pq9Vp9eqUYLZkzfOLF8M8gmP4ZTcWALaiivjPUJL3W6Sj3Gz/pj2+quo88sBv0i+anMrsuEzRgYMngaH95PGjwCdazc7B1bvELrRdIY2FZf1bLJMboEONNQW4g78Mkm5meR/mtOjer9cuk99nXfn9UVdeqD9CkVSLTi9FR7lsYXJ1HvuSXl+nZkm26XUN+MK9V0dTzSvdHndM03vUvfqP+XFkNrHrTuri/+/OPP/yZ//hFQHgOsNDZ464PTuSsmnrGPZVY6lb58EChFRKzO8qEi4ti0bGcql2EkOWdzmnkDa8bqYsu12aw+5d/+HwAA//8DAFBLAwQUAAYACAAAACEA7wopTk4BAAB+AwAAFAAAAHdvcmQvd2ViU2V0dGluZ3MueG1snNNfa8IwEADw98G+Q8m7psoUKVZhDMdexmDbB4jp1YYluZKLq+7T79qpc/hi95L/9+MuIfPlztnkEwIZ9LkYDVORgNdYGL/JxfvbajATCUXlC2XRQy72QGK5uL2ZN1kD61eIkU9SwoqnzOlcVDHWmZSkK3CKhliD580Sg1ORp2EjnQof23qg0dUqmrWxJu7lOE2n4sCEaxQsS6PhAfXWgY9dvAxgWURPlanpqDXXaA2Gog6ogYjrcfbHc8r4EzO6u4Cc0QEJyzjkYg4ZdRSHj9Ju5OwvMOkHjC+AqYZdP2N2MCRHnjum6OdMT44pzpz/JXMGUBGLqpcyPt6rbGNVVJWi6lyEfklNTtzetXfkdPa08RjU2rLEr57wwyUd3LZcf9t1Q9h1620JYsEfAutonPmCFYb7gA1BkO2yshabl+dHnsg/v2bxDQAA//8DAFBLAwQUAAYACAAAACEA2ZZEQgACAAAuBwAAEgAAAHdvcmQvZm9udFRhYmxlLnhtbNyTXW+bMBSG7yftPyDfNxjy0RSVVOnaSLvZxdT9AMeYYM0fyMcJ4d/PNoSmy6aG3kxaUIJ5T86j87429w9HKaIDM8C1ylEywShiiuqCq12OfrxsbpYoAktUQYRWLEctA/Sw+vzpvslKrSxErl9BJmmOKmvrLI6BVkwSmOiaKVcstZHEukeziyUxP/f1DdWyJpZvueC2jVOMF6jHmGsouiw5ZU+a7iVTNvTHhglH1AoqXsOJ1lxDa7QpaqMpA3Cepeh4knA1YJLZBUhyajTo0k6cmX6igHLtCQ4rKV4B83GA9AKwoOw4jrHsGbHrPOfwYhxnMXB4ccb52DBnAChsUY2ipKdcY99LLKkIVOdENm6o+YBrpc9I0uzrTmlDtsKR3K5HbuOiAPa/zr+/hSU7Bt1bQKv+VYiaTBHpOte11RBkWhEDzFcOROQIYxSHfxPJRXtSoeEAXaHmllYn/UAM96N0JeA7V9jDFufInVCM0+Ut6pTEk8Nn2ivpoOBemb5VaOCEx+Ru0yuvnDBn3Nm6sPfCJYPoG2ui71oSFYzWRGlgyWDUb9YCT/Ecz9w3datZZ+O3RNbpnxIxgTsmkWcfyPMmOOkS+eKU2+X88SKRu/cT6TjXJ7J2Y4m/5PDocpiFPLprTA7jT8Y/zsEf/OiJQy1I+x+9AP0CVr8AAAD//wMAUEsDBBQABgAIAAAAIQAOeCEtdQEAAPECAAARAAgBZG9jUHJvcHMvY29yZS54bWwgogQBKKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACMkt9OgzAUxu9NfAfSeygwZwwBFv9kVy4xcUbjXW3PtjpamrYb8jK+je9lgcFEd+HdOf1+5+PwtensQxTeHrThpcxQFITIA0lLxuU6Q0/LuX+FPGOJZKQoJWSoBoNm+flZSlVCSw0PulSgLQfjOSdpEqoytLFWJRgbugFBTOAI6cRVqQWxrtVrrAjdkjXgOAwvsQBLGLEEN4a+GhzRwZLRwVLtdNEaMIqhAAHSGhwFET6yFrQwJwda5QcpuK0VnER7caA/DB/AqqqCatKibv8IvyzuH9tf9blssqKA8pTRxHJbQJ7iY+kqs3t7B2q746FxNdVAbKnzr0+oBfGutSmIbKleaTLfQl2Vmhk3P+ocxsBQzZV1N9m5jw4cXRBjF+5qVxzYTf37Q3+BZkbDnjdvI49bYmjTQ9DdcsA8F1DSxdkrz5Pbu+Uc5XEYX/hh5EfTZTRNwjgJw9dmv9H80VAcFvi/43Ts2Bt0EY0faf4NAAD//wMAUEsDBBQABgAIAAAAIQADYIqrdAEAAMcCAAAQAAgBZG9jUHJvcHMvYXBwLnhtbCCiBAEooAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJxSy07DMBC8I/EPUe7UgfKsNq5QEeLAo1JTeracTWLh2JZtEP171gRCEDdy2pn1jmcnhuV7r7M39EFZU+bHsyLP0EhbK9OW+ba6PbrMsxCFqYW2Bst8jyFf8sMDWHvr0EeFISMJE8q8i9EtGAuyw16EGbUNdRrrexEJ+pbZplESb6x87dFEdlIU5wzfI5oa6yM3CuaD4uIt/le0tjL5C8/V3pEehwp7p0VE/pgmNbCRgMpGoSvVIz8megSwFi2GxA0F7KyvCZ/PgQ0lrDrhhYwUHr+anwKbYLh2TispIsXKH5T0NtgmZk+fXrM0D2x6BMj/BuWrV3HPC2BTCPfKkIELYENBzrxovXBd4CfJ3ohgI4XGFW3OG6EDAvshYGV7JwzJsbEivZewdZW9SUl8jfwmJ0vuVOw2TsiUSnF1Nt130oINsVjTAqOHkYA7+h1epwto1rRYf5/520gJPg/vkkKfFfR9RvbN0eLjg+EfAAAA//8DAFBLAQItABQABgAIAAAAIQAXqy8sZgEAAFQFAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhAEsgRbj+AAAA3gIAAAsAAAAAAAAAAAAAAAAAnwMAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAL8EZlVJBgAA2RoAABEAAAAAAAAAAAAAAAAAzgYAAHdvcmQvZG9jdW1lbnQueG1sUEsBAi0AFAAGAAgAAAAhANZks1H0AAAAMQMAABwAAAAAAAAAAAAAAAAARg0AAHdvcmQvX3JlbHMvZG9jdW1lbnQueG1sLnJlbHNQSwECLQAUAAYACAAAACEAK1N7+9UGAADPIAAAFQAAAAAAAAAAAAAAAAB8DwAAd29yZC90aGVtZS90aGVtZTEueG1sUEsBAi0AFAAGAAgAAAAhAA82Q+3EEQAAaEkAABYAAAAAAAAAAAAAAAAAhBYAAGRvY1Byb3BzL3RodW1ibmFpbC5lbWZQSwECLQAUAAYACAAAACEA72EqQDYEAAAiDAAAEQAAAAAAAAAAAAAAAAB8KAAAd29yZC9zZXR0aW5ncy54bWxQSwECLQAUAAYACAAAACEAFrYDvlIQAACppgAADwAAAAAAAAAAAAAAAADhLAAAd29yZC9zdHlsZXMueG1sUEsBAi0AFAAGAAgAAAAhAO8KKU5OAQAAfgMAABQAAAAAAAAAAAAAAAAAYD0AAHdvcmQvd2ViU2V0dGluZ3MueG1sUEsBAi0AFAAGAAgAAAAhANmWREIAAgAALgcAABIAAAAAAAAAAAAAAAAA4D4AAHdvcmQvZm9udFRhYmxlLnhtbFBLAQItABQABgAIAAAAIQAOeCEtdQEAAPECAAARAAAAAAAAAAAAAAAAABBBAABkb2NQcm9wcy9jb3JlLnhtbFBLAQItABQABgAIAAAAIQADYIqrdAEAAMcCAAAQAAAAAAAAAAAAAAAAALxDAABkb2NQcm9wcy9hcHAueG1sUEsFBgAAAAAMAAwABQMAAGZGAAAAAA==", "mimeType": "base64", "fileName": "express consent text" }, { "fileType": "DOCS", "base64Content": "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", "mimeType": "base64", "fileName": "application information text" } ] } }
post
/api/v1/iban/deposit
Deposit wallet by balance of TRY wallet.
Send token as "Authorization" in your request header.
{ "id": 1, "amount": 100.5, "sender_iban": "TR1234567890", "otp_code": "123456" }
{ "id": 236, "success": true, "message": "Request completed successfully.", "value": { "transactionId": 27, "transactionCode": "tx-dd582e43b51142fda6c0a1c3d1e45c12", "amount": 1000.0, "fee": 0.0, "balanceUi": 5800.0, "balanceDebit": 3000.0, "balanceCredit": 2800.0, "trackId": null, "transferFee": { "ledgerId": 0, "transactionCode": null, "transactionId": 0 }, "txs": [ { "id": 27, "type": "deposit", "externalId": null, "walletId": 12, "actorType": "person", "actorId": 10, "balanceBeforeTx": 4800.0, "balanceAfterTx": 5800.0, "currency": "TRY", "sign": "+", "amount": 1000.0, "ledgerOfOwner": "UI", "ledgerOfSender": null, "ledgerOfReceiver": null, "ledgerOfOwnerId": 67, "ledgerOfReceiverId": 67, "ledgerOfSenderId": null, "daysToProcess": null, "receiptNumber": null, "description": "DZED4537363001", "date": "2024-02-23T12:43:25.9414120Z", "symmTransactionId": null, "sourceTransactionId": 27, "code": "tx-dd582e43b51142fda6c0a1c3d1e45c12", "walletCode": "W-0951B2F59C81421DB5038231E6050298", "summarySender": "", "summaryReceiver": "", "summaryOwner": "person[10] > wallet[12] 0TRY > UI[67] 5800TRY", "state": "done" }, { "id": 28, "type": "deposit", "externalId": null, "walletId": 12, "actorType": "person", "actorId": 10, "balanceBeforeTx": 2000.0, "balanceAfterTx": 3000.0, "currency": "TRY", "sign": "+", "amount": 1000.0, "ledgerOfOwner": "DEBIT", "ledgerOfSender": null, "ledgerOfReceiver": null, "ledgerOfOwnerId": 68, "ledgerOfReceiverId": 68, "ledgerOfSenderId": null, "daysToProcess": null, "receiptNumber": null, "description": "DZED4537363005", "date": "2024-02-23T12:43:25.9423530Z", "symmTransactionId": null, "sourceTransactionId": 27, "code": "tx-0e2d402f690c4c14af1cde8449d443dd", "walletCode": "W-0951B2F59C81421DB5038231E6050298", "summarySender": "", "summaryReceiver": "", "summaryOwner": "person[10] > wallet[12] 0TRY > DEBIT[68] 3000TRY", "state": "done" } ] } }
post
/api/v1/iban/deposit-by-card
Deposit wallet by a card.
Send token as "Authorization" in your request header.
{ "id": 1, "amount": 1500.16, "card": { "cvv": "000", "holder": "John Doe", "number": "4243424342434243", "month": 12, "year": 2030 }, "otp_code": "123456" }
{ "id": 237, "success": true, "message": "Request completed successfully.", "value": { "transactionCode": "tx-f864cff2380f47f38e36b02d646338fd", "transactionId": 17, "trackId": "D058CA17DA2341EA9CE32EC5CA48E426", "fee": null } }
post
/api/v1/iban/withdraw
Send money to another account or bank.
Send token as "Authorization" in your request header.
{ "id": 1, "amount": 100.36, "targetIBAN": "TR1234567890", "targetIBANFullName": "John Doe", "targetTCKNorVKN": "0001234567890", "targetIBANIsMine": false, "otp_code": "123456" }
{ "id": 238, "success": true, "message": "Request sent successfully.", "value": { "uid": "026969c0-e51f-4f68-8ea4-8c3f6773b33a" } }
post
/api/v1/iban/transfer
Send money to a friend.
Send token as "Authorization" in your request header.
{ "id": 1, "amount": 300.36, "to_email": "it@zedpay.com", "otp_code": "123456" }
{ "id": 239, "success": true, "message": "Request completed successfully.", "value": { "transactionCodes": [ "tx-0e88134c346f49f29ba9259a3be022e7", "tx-e88ec9c622f94e3db39f16879ab4623b" ], "transactionIds": [ 19, 20 ], "transferFee": null } }
get
/api/v1/iban/get-static-data
Get a list of KYC options.
Send token as "Authorization" in your request header.
{ "id": 240, "success": true, "message": "", "value": [ { "title": "Working_Status", "data": [ "Kamu Sektör Ücretli", "Özel Sektör Ücretli", "Part time", "Çalışmıyor", "ÖÄŸrenci", "Serbest Meslek" ] }, { "title": "Job", "data": [ "Antrenör", "Asker/Polis/Güvenlik", "AÅŸçı", "Avukat/Hakim", "Ayakkabıcı", "Berber", "Çiftçi", "Danışman", "Denetçi", "Devlet Memuru", "DiÄŸer", "Diyetisyen", "Doktor", "Eczacı", "Emekli", "Emlakçı", "Esnaf", "Ev Hanımı", "Finans/Bankacı/Sigortacı", "Garson", "Gazeteci", "Güzellik Uzmanı", "Hakem", "HemÅŸire", "Hostes/Host", "Ä°nsan Kaynakları Uzmanı/Müdürü", "Ä°ÅŸçi", "Ä°ÅŸletmeci", "Ä°tfaiyeci", "Kameraman", "Kasap", "Kaptan", "Kuaför", "Kurye", "Kuyumcu", "Menajer", "Mimar", "Muhasebeci", "Mühendis", "Müzisyen", "Noter", "Operasyon Uzmanı/Müdürü", "Operatör", "ÖÄŸrenci", "ÖÄŸretmen/ÖÄŸretim Üyesi/EÄŸitmen", "Pazarlama Temsilcisi", "Pilot", "Psikolog/Psikiyatr", "SaÄŸlık Çalışanı", "Sanatçı", "Satış Temsilcisi/Müdürü", "Sekreter/Yönetici Asistanı", "Sigortacı", "Sporcu", "Åžoför", "Tamirci", "Teknisyen", "Tercüman", "Terzi", "Tezgahtar", "Veteriner", "Yönetici/Yönetmen" ] }, { "title": "Income_source", "data": [ "MaaÅŸ", "Kira", "Miras", "Yatırım", "DiÄŸer" ] }, { "title": "Requested_Products", "data": [ "Dijital Cüzdan", "Ön Ödemeli Kart" ] }, { "title": "Estimated_Number_of_Transactions_per_Month", "data": [ "0 - 199", "200 - 499", "500 ve üzeri" ] }, { "title": "Monthly_Estimated_Transaction_Volume", "data": [ "0 - 49.000", "50.000 - 99.999", "100.000 ve üzeri" ] } ] }
post
/api/v1/iban/create-card
Order a new card.
Send token as "Authorization" in your request header.
{ "customer_id": 1, "card_type": 1, "Name": "John Doe", "deliverCity": "Istanbul", "deliverTown": "Uskudar", "deliverAddress": "Number 29, Central" }
{ "id": 242, "success": true, "message": "New card has been issued.", "value": null }
get
/api/v1/iban/get-cvv
Get card CVV from the issuer.
Send token as "Authorization" in your request header.
?id=5&card_number=5632863403104575
{ "id": 243, "success": true, "message": "", "value": 383 }
post
/api/v1/iban/activate
Activate physical card.
Send token as "Authorization" in your request header.
{ "id": 5, "card_number": "5632863403104575" }
{ "id": 244, "success": true, "message": "Card has been activated.", "value": null }
post
/api/v1/iban/set-pin
Set a new card PIN.
Send token as "Authorization" in your request header.
{ "id": 5, "card_number": "5632863403104575", "new_pin": "1234", "otp_code": "123456" }
{ "id": 245, "success": true, "message": "New PIN saved successfully.", "value": null }
post
/api/v1/iban/freeze
Freeze your card.
Send token as "Authorization" in your request header.
{ "id": 5, "card_number": "5632863403104575" }
{ "id": 246, "success": true, "message": "Card has been frozen.", "value": null }
post
/api/v1/iban/unfreeze
Unfreeze your card.
Send token as "Authorization" in your request header.
{ "id": 5, "card_number": "5632863403104575" }
{ "id": 247, "success": true, "message": "Card has been unfrozen.", "value": null }
get
/api/v1/iban/card-transaction
Get a list of transaction.
Send token as "Authorization" in your request header.
?id=5&card_number=5632863403104575&from=2024-01-01&to=2024-01-31
{ "id": 248, "success": true, "message": "", "value": { "txs": [ { "id": 0, "type": "string", "externalId": "string", "walletId": 0, "actorType": "string", "actorId": 0, "balanceBeforeTx": 0, "balanceAfterTx": 0, "currency": "string", "sign": "string", "amount": 0, "ledgerOfOwner": "string", "ledgerOfSender": "string", "ledgerOfReceiver": "string", "ledgerOfOwnerId": 0, "ledgerOfReceiverId": 0, "ledgerOfSenderId": 0, "daysToProcess": 0, "receiptNumber": "string", "description": "string", "date": "string", "symmTransactionId": 0, "sourceTransactionId": 0, "code": "string", "walletCode": "string", "summarySender": "string", "summaryReceiver": "string", "summaryOwner": "string", "state": "string", "nameOfReceiver": "string", "nameOfSender": "string" } ], "total": 0 } }
+ News
get
/api/v1/news/get-all
Get all News
get
/api/v1/news/get-by-id
Get by id News
post
/api/v1/news/update-news
Update News
Send token as "Authorization" in your request header.
post
/api/v1/news/add-news
Add News
Send token as "Authorization" in your request header.
get
/api/v1/news/delete-news
Delete News
Send token as "Authorization" in your request header.
+ Newsletter
post
/api/v1/newsletter/subscribe
Subscribe in newsletter.
{ "email": "me@msn.com" }
{ "id": 28, "success": true, "message": "Thank you!", "value": null }
get
/api/v1/newsletter/list
Get a list of email subscribers.
Send token as "Authorization" in your request header.
{ "id": 29, "success": true, "message": "", "value": [ { "id": 5, "date_time": "12/05/2022 08:43", "email": "me@msn.com", "ip": "::1" }, { "id": 4, "date_time": "10/05/2022 09:10", "email": "it@zedpay.com", "ip": "127.0.0.1" }, { "id": 1, "date_time": "10/05/2022 09:07", "email": "Alex@google.com", "ip": "4.2.2.4" } ] }
post
/api/v1/newsletter/delete
Delete an email from newsletter list.
Send token as "Authorization" in your request header.
{ "id": 2 }
{ "id": 30, "success": true, "message": "Selected item has been deleted.", "value": null }
+ NFT
post
/api/v1/nft/register
Create an NFT user. email, verification_code and password is not necessary when you are a customer and have a token.
{ "primary_wallet_type": "Metamask", "metamask": { "blockchain": "ethereum", "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": {}, "token": "", "email": "someone@example.com", "verification_code": "123456", "password": "12345678" }
{ "id": 145, "success": true, "message": "User has been created. .", "value": null }
post
/api/v1/nft/edit-user
Edit NFT profile of a user. Trend and badge parameters are for Admin usage only, logo and banner are optional.
Send token as "Authorization" in your request header.
{ "id": 5, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://zed-pay.com" }, { "platform": "YouTube", "url": "https://zed-pay.com" } ], "trend": true, "badge": true, "status": "Enabled" }
{ "id": 146, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/delete-profile
Delete NFT user profile.
Send token as "Authorization" in your request header.
{ "id": 6 }
{ "id": 162, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/nft/list-users
Get a list of NFT users. Filter is optional.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 147, "success": true, "message": "", "value": [ { "id": 2, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 167, "reg_date": "02/10/2022", "first_name": "Alex", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Individual", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 44, "name": "Chile", "phone_prefix": "56", "alpha_2": "CL", "alpha_3": "CHL" }, "city": "***", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "it@zed-pay.com", "Bio": "", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [], "followers": 0, "plans": [ { "order": 1, "title": "Basic", "max_nft_items": 5, "max_collections": 1, "tag_limit": 4, "royalty_limit": "10%", "auction_length": 30, "transfer_commission": "2.5%", "package_duration": 365, "start_date": "03/11/2022", "end_date": "03/11/2023", "price": 0.0, "currency_id": 20, "currency_code": "ETH", "status": "Active" } ], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "nftjohn", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://zed-pay.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ], "followers": 0, "plans": [ { "order": 1, "title": "Basic", "max_nft_items": 5, "max_collections": 1, "tag_limit": 4, "royalty_limit": "10%", "auction_length": 30, "transfer_commission": "2.5%", "package_duration": 365, "start_date": "03/11/2022", "end_date": "03/11/2023", "price": 0.0, "currency_id": 20, "currency_code": "ETH", "status": "Active" } ], "trend": true, "badge": true, "status": "Enabled", "followed_by_me": false } ] }
post
/api/v1/nft/change-follow-status
Follow or unfollow an NFT user.
Send token as "Authorization" in your request header.
{ "id": 22, "followed_by_me": true }
{ "id": 164, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/create-contract
Create a new smart contract.
Send token as "Authorization" in your request header.
{ "account_id": 170, "blockchain": "ethereum", "name": "ZedPay NFT", "symbol": "ZPNFT" }
{ "id": 148, "success": true, "message": "New record created.", "value": null }
post
/api/v1/nft/change-contract-status
Change status of an NFT contract. Admin usage only.
Send token as "Authorization" in your request header.
{ "id": 1, "status": "Disabled" }
{ "id": 149, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/delete-contract
Delete an NFT smart contract.
Send token as "Authorization" in your request header.
{ "id": 6 }
{ "id": 161, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/nft/list-contracts
Get a list of NFT contracts. Filter is optional.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 150, "success": true, "message": "", "value": [ { "id": 2, "created_at": "02/10/2022 14:02", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "account_id": 147, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay NFT", "symbol": "ZPNFT", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": [], "status": "Ready" }, { "id": 1, "created_at": "02/10/2022 13:57", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": true, "badge": true, "status": "Enabled", "followed_by_me": false }, "account_id": 147, "blockchain": "ETHEREUM", "address_index": 0, "name": "New NFT", "symbol": "NWNFT", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": [], "status": "Ready" } ] }
post
/api/v1/nft/save-categories
Set a list of NFT categories.
Send token as "Authorization" in your request header.
[ { "order": 1, "title": "Art" }, { "order": 2, "title": "Animations" }, { "order": 3, "title": "Collectibles" }, { "order": 4, "title": "Diamond" }, { "order": 5, "title": "Game" }, { "order": 6, "title": "Logo" }, { "order": 7, "title": "Memes" }, { "order": 8, "title": "Metaverses" }, { "order": 9, "title": "Music" }, { "order": 10, "title": "Photography" }, { "order": 11, "title": "Sport" }, { "order": 12, "title": "Trading Cards" }, { "order": 13, "title": "Utility" }, { "order": 14, "title": "Videos" } ]
{ "id": 151, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/nft/list-categories
Get a list of NFT categories to be registered with NFT Collections.
Send token as "Authorization" in your request header.
{ "id": 152, "success": true, "message": "", "value": [ { "order": 1, "title": "Art" }, { "order": 2, "title": "Animations" }, { "order": 3, "title": "Collectibles" }, { "order": 4, "title": "Diamond" }, { "order": 5, "title": "Game" }, { "order": 6, "title": "Logo" }, { "order": 7, "title": "Memes" }, { "order": 8, "title": "Metaverses" }, { "order": 9, "title": "Music" }, { "order": 10, "title": "Photography" }, { "order": 11, "title": "Sport" }, { "order": 12, "title": "Trading Cards" }, { "order": 13, "title": "Utility" }, { "order": 14, "title": "Videos" } ] }
post
/api/v1/nft/create-collection
Create a new collection.
Send token as "Authorization" in your request header.
{ "nft_user_id": 37, "category": "Art", "title": "Collection Name", "description": "Sample description text.", "logo": "/files/upload/logo.jpg", "cover": "/files/upload/cover.jpg", "banner": "/files/upload/banner.jpg", "links": [ { "platform": "TikTok", "url": "https://tiktok.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ] }
{ "id": 153, "success": true, "message": "New record created.", "value": null }
post
/api/v1/nft/edit-collection
Edit collection parameters.
Send token as "Authorization" in your request header.
{ "id": 2, "category": "Music", "title": "Collection 11", "description": "Sample description text.", "logo": "/files//upload/logo.jpg", "cover": "/files//upload/cover.jpg", "banner": "/files/upload/banner.jpg", "links": [ { "platform": "TikTok", "url": "https://tiktok.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ], "status": "Enabled" }
{ "id": 154, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/delete-collection
Delete a collection.
Send token as "Authorization" in your request header.
{ "id": 6 }
{ "id": 160, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/nft/list-collections
Get a list of NFT collections. Filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&id=2
{ "id": 155, "success": true, "message": "", "value": [ { "id": 2, "created_at": "03/10/2022 07:38", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "category": "Music", "title": "Collection 2", "description": "Sample description text.", "logo": "/files//upload/logo.jpg", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/banner.jpg", "links": [ { "platform": "TikTok", "url": "https://tiktok.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ], "status": "Enabled", "items": 15 }, { "id": 1, "created_at": "03/10/2022 07:35", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": true, "status": "Enabled", "followed_by_me": false }, "category": "Art", "title": "Collection 255", "description": "Sample description text.", "logo": "/files//upload/logo.jpg", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/banner.jpg", "links": [ { "platform": "TikTok", "url": "https://tiktok.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ], "status": "Disabled", "items": 0 } ] }
post
/api/v1/nft/create
Create a new NFT. new_contract_name and new_contract_symbol is mandatory if contract_id is 0.
Send token as "Authorization" in your request header.
{ "nft_user_id": 197, "collection_id": 47, "contract_id": 101, "title": "Monkey", "description": "Some text about the art.", "category": "Art", "link": "", "nft_file": "/files/upload/nft.jpg", "nft_poster": "/files/upload/poster.jpg", "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "tags": [ { "tag": "Animal" }, { "tag": "GIF" }, { "tag": "Color" } ], "blockchain": "ethereum", "account_id": 148, "currency_id": 20, "price": 10.0, "instant_sale": true, "allow_bid": false, "bid_expiry": "2122-10-03", "unlock_on_purchase": false, "royalties": 0, "new_contract_name": "", "new_contract_symbol": "" }
{ "id": 156, "success": true, "message": "New record created.", "value": null }
post
/api/v1/nft/edit
Edit NFT parameters.
Send token as "Authorization" in your request header.
{ "id": 60, "collection_id": 47, "title": "Monkey Portrait", "description": "Some text about the art.", "category": "Art", "link": "", "nft_poster": "/files/upload/poster.jpg", "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "tags": [ { "tag": "Animal" }, { "tag": "GIF" }, { "tag": "Color" } ], "currency_id": 20, "price": 12.0, "instant_sale": true, "allow_bid": false, "bid_expiry": "2122-10-03", "unlock_on_purchase": false, "royalties": 10, "status": "Invisible" }
{ "id": 157, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/delete
Delete an NFT.
Send token as "Authorization" in your request header.
{ "id": 6 }
{ "id": 159, "success": true, "message": "Selected item has been deleted.", "value": null }
get
/api/v1/nft/list
Get a list of NFTs. Filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&collection_id=2
{ "id": 158, "success": true, "message": "", "value": [ { "id": 4, "created_at": "03/10/2022 16:35", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": true, "status": "Enabled", "followed_by_me": false }, "collection": { "id": 28, "created_at": "09/10/2022 17:02", "nft_user": null, "category": "Sport", "title": "Lois Di Nominator", "description": "Some info about Lois Di Nominator.", "logo": "/files/upload/nft-300.png", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://google.com" }, { "platform": "TikTok", "url": "https://yahoo.com" } ], "status": "Enabled", "items": 2 }, "smart_contract": { "id": 105, "created_at": "09/10/2022 17:15", "nft_user": null, "account_id": 189, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay Contract 188", "symbol": "ZEDPAY188", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": null, "status": "Ready" }, "token_id": "20221003163541", "metadata_json": { "title": "Asset Metadata", "type": "object", "properties": { "name": { "type": "string", "description": "Monkey" }, "description": { "type": "string", "description": "Some text about the art." }, "image": { "type": "string", "description": "http://localhost:54407/files/upload/nft.jpg" } } }, "metadata_url": "http://localhost:54407/files/upload/nft-metadata-102043.txt", "title": "Monkey", "description": "Some text about the art.", "category": "Art", "link": "", "file_type": "JPG", "nft_file": "/files/upload/nft.jpg", "nft_poster": "/files/upload/nft.jpg", "supply": { "items": 1, "creator_user_id": 1, "created_at": "2022-10-09T17:24:24", "owners": [ { "nft_user_id": 1, "since": "2022-10-09T17:24:24" } ] }, "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "tags": [ { "tag": "Animal" }, { "tag": "GIF" }, { "tag": "Color" } ], "blockchain": "ETHEREUM", "account_id": 148, "currency_id": 35, "currency_code": "ETH", "price": 10.0, "instant_sale": true, "allow_bid": true, "bid_expiry": "2022-11-17T18:00:00", "unlock_on_purchase": false, "royalties": 0, "likes": 0, "gallery": [], "bids": [ { "date_time": "4 hours ago", "nft_user_id": 174, "nft_username": "@josephine.alexander", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/174", "offer": "18.5", "currency_code": "ETH", "status": "Offered" }, { "date_time": "5 hours ago", "nft_user_id": 173, "nft_username": "@haylie.burke", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/173", "offer": "16", "currency_code": "ETH", "status": "Offered" }, { "date_time": "22 days ago", "nft_user_id": 172, "nft_username": "@bronson.west", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/172", "offer": "13", "currency_code": "ETH", "status": "Offered" }, { "date_time": "2 months ago", "nft_user_id": 171, "nft_username": "@zariah.velazquez", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/171", "offer": "12", "currency_code": "ETH", "status": "Offered" } ], "history": [ { "date_time": "4 hours ago", "action": "Burned", "nft_username": "@aniyah.vaughn", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/179", "description": "NFT Burned" }, { "date_time": "5 hours ago", "action": "Transferred", "nft_username": "@luke.frederick", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/180", "description": "NFT Transferred" }, { "date_time": "22 days ago", "action": "Transferred", "nft_username": "@london.lowe", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/181", "description": "NFT Transferred" }, { "date_time": "2 months ago", "action": "Minted", "nft_username": "@bethany.herring", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/182", "description": "NFT Minted" } ], "status": "Minted", "liked_by_me": false }, { "id": 5, "created_at": "03/10/2022 16:35", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "collection": { "id": 28, "created_at": "09/10/2022 17:02", "nft_user": null, "category": "Sport", "title": "Lois Di Nominator", "description": "Some info about Lois Di Nominator.", "logo": "/files/upload/nft-300.png", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://google.com" }, { "platform": "TikTok", "url": "https://yahoo.com" } ], "status": "Enabled", "items": 2 }, "smart_contract": { "id": 105, "created_at": "09/10/2022 17:15", "nft_user": null, "account_id": 189, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay Contract 188", "symbol": "ZEDPAY188", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": null, "status": "Ready" }, "token_id": "20221003163543", "metadata_json": { "title": "Asset Metadata", "type": "object", "properties": { "name": { "type": "string", "description": "Monkey" }, "description": { "type": "string", "description": "Some text about the art." }, "image": { "type": "string", "description": "http://localhost:54407/files/upload/nft.jpg" } } }, "metadata_url": "http://localhost:54407/files/upload/nft-metadata-102044.txt", "title": "Monkey", "description": "Some text about the art.", "category": "Art", "link": "", "file_type": "JPG", "nft_file": "/files/upload/nft.jpg", "nft_poster": "/files/upload/nft.jpg", "supply": { "items": 1, "creator_user_id": 1, "created_at": "2022-10-09T17:24:24", "owners": [ { "nft_user_id": 1, "since": "2022-10-09T17:24:24" } ] }, "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "tags": [ { "tag": "Animal" }, { "tag": "GIF" }, { "tag": "Color" } ], "blockchain": "ETHEREUM", "account_id": 148, "currency_id": 35, "currency_code": "ETH", "price": 10.0, "instant_sale": true, "allow_bid": false, "bid_expiry": "2122-01-17T17:24:24", "unlock_on_purchase": false, "royalties": 0, "likes": 0, "gallery": [], "bids": [], "history": [], "status": "Minted", "liked_by_me": true }, { "id": 6, "created_at": "03/10/2022 16:35", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "collection": { "id": 28, "created_at": "09/10/2022 17:02", "nft_user": null, "category": "Sport", "title": "Lois Di Nominator", "description": "Some info about Lois Di Nominator.", "logo": "/files/upload/nft-300.png", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://google.com" }, { "platform": "TikTok", "url": "https://yahoo.com" } ], "status": "Enabled", "items": 2 }, "smart_contract": { "id": 105, "created_at": "09/10/2022 17:15", "nft_user": null, "account_id": 189, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay Contract 188", "symbol": "ZEDPAY188", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": null, "status": "Ready" }, "token_id": "20221003163544", "metadata_json": { "title": "Asset Metadata", "type": "object", "properties": { "name": { "type": "string", "description": "Monkey Portrait" }, "description": { "type": "string", "description": "Some text about the art." }, "image": { "type": "string", "description": "http://localhost:54407/files/upload/nft.jpg" } } }, "metadata_url": "http://localhost:54407/files/upload/nft-metadata-102045.txt", "title": "Monkey Portrait", "description": "Some text about the art.", "category": "Art", "link": "", "file_type": "JPG", "nft_file": "/files/upload/nft.jpg", "nft_poster": "/files/upload/nft", "supply": { "items": 1, "creator_user_id": 1, "created_at": "2022-10-09T17:24:24", "owners": [ { "nft_user_id": 1, "since": "2022-10-09T17:24:24" } ] }, "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "tags": [], "blockchain": "ETHEREUM", "account_id": 148, "currency_id": 35, "currency_code": "ETH", "price": 12.0, "instant_sale": true, "allow_bid": false, "bid_expiry": "2122-10-04T17:24:24", "unlock_on_purchase": false, "royalties": 10, "likes": 0, "gallery": [], "bids": [], "history": [], "status": "Invisible", "liked_by_me": false } ] }
post
/api/v1/nft/change-like-status
Like or dislike an NFT.
Send token as "Authorization" in your request header.
{ "id": 22, "liked_by_me": true }
{ "id": 165, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/transfer
Transfer an NFT to a new owner.
Send token as "Authorization" in your request header.
{ "item_id": 55, "to_nft_user_id": 19, "to_account_id": 181, "price": 50 }
{ "id": 166, "success": true, "message": "NFT has been transferred to new owner.", "value": [ { "id": 1572, "date_time": "02/11/2022 13:41", "transfer_id": 102181, "currency_code": "ETH", "debit": 0.0, "credit": 50.0, "balance": 890.0, "transaction_type": "NFT", "system_remark": "NFT Transfer ID: 102181, 50 ETH.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1573, "date_time": "02/11/2022 13:41", "transfer_id": 102181, "currency_code": "ETH", "debit": 50.0, "credit": 0.0, "balance": 69.6, "transaction_type": "NFT", "system_remark": "NFT Transfer ID: 102181, 50 ETH.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1574, "date_time": "02/11/2022 13:41", "transfer_id": 102181, "currency_code": "ETH", "debit": 0.0, "credit": 1.0, "balance": 68.6, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/nft/quick-transfer
Transfer NFT by default price.
Send token as "Authorization" in your request header.
{ "item_id": 55, "to_customer_id": 19 }
{ "id": 166, "success": true, "message": "NFT has been transferred to new owner.", "value": [ { "id": 1641, "date_time": "07/11/2022 06:29", "transfer_id": 102269, "currency_code": "TRX", "debit": 0.0, "credit": 250.0, "balance": 49.951257355923, "transaction_type": "NFT", "system_remark": "NFT Transfer ID: 102269, 250 TRX.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1642, "date_time": "07/11/2022 06:29", "transfer_id": 102269, "currency_code": "TRX", "debit": 250.0, "credit": 0.0, "balance": 250.0, "transaction_type": "NFT", "system_remark": "NFT Transfer ID: 102269, 250 TRX.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" }, { "id": 1643, "date_time": "07/11/2022 06:29", "transfer_id": 102269, "currency_code": "TRX", "debit": 0.0, "credit": 6.25, "balance": 243.75, "transaction_type": "Commission", "system_remark": "Commission", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
post
/api/v1/nft/transfer-out
Transfer NFT to another address.
Send token as "Authorization" in your request header.
{ "item_id": 89, "to_address": "TSRodJC5jqtsa54yYKZzyC9T59dXu4kpYD", "otp_code": "123456" }
{ "id": 183, "success": true, "message": "NFT has been transferred to new owner.", "value": [ { "id": 1822, "date_time": "20/11/2022 12:54", "transfer_id": 102454, "currency_code": "TRX", "debit": 0.0, "credit": 0.0, "balance": 22401.8420453558, "transaction_type": "NFT", "system_remark": "NFT Transfer ID: 102454 to TSRodJC5jqtsa54yYKZzyC9T59dXu4kpYD.", "customer_remark": "", "status": "Completed", "details": { "bank_transfer": null, "bank_transfer_log": [] }, "details_text": "" } ] }
get
/api/v1/nft/transfers
Get a list of recent transfers.
Send token as "Authorization" in your request header.
?customer_id=100&items=20
{ "id": 167, "success": true, "message": "", "value": [ { "id": 2, "date_time": "18/10/2022 08:47", "transfer_id": 102117, "item": { "id": 4, "created_at": "09/10/2022 17:24", "nft_user": { "id": 15, "reg_date": "09/10/2022", "primary_wallet_type": "ZedPay", "customer": { "id": 176, "reg_date": "09/10/2022", "first_name": "Camila", "last_name": "Nolan", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Individual", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 238, "name": "Uzbekistan", "phone_prefix": "998", "alpha_2": "UZ", "alpha_3": "UZB" }, "city": "***", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": "***" }, "metamask": { "blockchain": 0, "address": null }, "walletconnect": { "blockchain": 0, "address": null }, "username": "camila.nolan", "Bio": "Some bio info should be here!", "logo": "/files/upload/nft-200.png", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Instagram", "url": "https://instagram.com" }, { "platform": "Facebook", "url": "https://facebook.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "collection": { "id": 28, "created_at": "09/10/2022 17:02", "nft_user": null, "category": "Sport", "title": "Lois Di Nominator", "description": "Some info about Lois Di Nominator.", "logo": "/files/upload/nft-300.png", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://google.com" }, { "platform": "TikTok", "url": "https://yahoo.com" } ], "status": "Enabled", "items": 3 }, "smart_contract": { "id": 105, "created_at": "09/10/2022 17:15", "nft_user": null, "account_id": 189, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay Contract 188", "symbol": "ZEDPAY188", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": null, "status": "Ready" }, "token_id": "20221018084755", "metadata_json": { "title": "Asset Metadata", "type": "object", "properties": { "name": { "type": "string", "description": "Anne Teak" }, "description": { "type": "string", "description": "Some descriptin about the item Anne Teak." }, "image": { "type": "string", "description": "http://localhost:54407/files/upload/sample_nft.jpg" } } }, "metadata_url": "http://localhost:54407/files/upload/nft-metadata-102061.txt", "title": "Anne Teak", "description": "Some descriptin about the item Anne Teak.", "link": "https://nft.com", "file_type": "JPG", "nft_file": "/files/upload/portfolio-01.jpg", "nft_poster": "/files/upload/portfolio-01.jpg", "supply": { "items": 1, "creator_user_id": 10, "created_at": "2022-10-09T17:24:23", "owners": [ { "nft_user_id": 15, "since": "2022-10-18T08:47:55.8433968-04:00" } ] }, "properties": [ { "title": "Prperty 1", "value": "Value 1" }, { "title": "Title", "value": "Anne Teak" } ], "blockchain": "ETHEREUM", "account_id": 177, "currency_id": 20, "currency_code": "ETH", "price": 3.5, "instant_sale": false, "allow_bid": false, "bid_expiry": "2023-01-17T17:24:23", "unlock_on_purchase": false, "royalties": 0, "likes": 0, "gallery": [], "bids": [], "history": [ { "date_time": "4 hours ago", "action": "Transferred", "nft_username": "@camila.nolan", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/176", "description": "NFT has been transferred." } ], "status": "Minted", "liked_by_me": false }, "previous_owner": { "id": 10, "reg_date": "09/10/2022", "primary_wallet_type": "ZedPay", "customer": { "id": 171, "reg_date": "09/10/2022", "first_name": "Zariah", "last_name": "Velazquez", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Individual", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 238, "name": "Uzbekistan", "phone_prefix": "998", "alpha_2": "UZ", "alpha_3": "UZB" }, "city": "***", "address": "", "avatar": "/files/upload/user.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": false, "status": "***" }, "metamask": { "blockchain": 0, "address": null }, "walletconnect": { "blockchain": 0, "address": null }, "username": "zariah.velazquez", "Bio": "Some bio info should be here!", "logo": "/files/upload/nft-200.png", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Instagram", "url": "https://instagram.com" }, { "platform": "Facebook", "url": "https://facebook.com" } ], "followers": 0, "plans": [], "trend": false, "badge": true, "status": "Enabled", "followed_by_me": false }, "blockchain": "ETHEREUM", "currency_code": "ETH", "price": 1.0, "remark": "NFT has been transferred by Makan M..", "details": {}, "status": "Completed" }, { "id": 1, "date_time": "18/10/2022 08:04", "transfer_id": 102116, "item": { "id": 4, "created_at": "03/10/2022 16:35", "nft_user": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "ZedPay", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": 6, "url": "https://zed-pay.com" }, { "platform": 4, "url": "https://zed-pay.com" } ], "followers": 0, "plans": [], "trend": false, "badge": false, "status": "Enabled", "followed_by_me": false }, "collection": { "id": 28, "created_at": "09/10/2022 17:02", "nft_user": null, "category": "Sport", "title": "Lois Di Nominator", "description": "Some info about Lois Di Nominator.", "logo": "/files/upload/nft-300.png", "cover": "/files/upload/nft-cover.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://google.com" }, { "platform": "TikTok", "url": "https://yahoo.com" } ], "status": "Enabled", "items": 2 }, "smart_contract": { "id": 105, "created_at": "09/10/2022 17:15", "nft_user": null, "account_id": 189, "blockchain": "ETHEREUM", "address_index": 0, "name": "ZedPay Contract 188", "symbol": "ZEDPAY188", "contract_address": "", "transaction_url": "", "price": 0.0, "currency_code": "ETH", "token_ids": null, "status": "Ready" }, "token_id": "20221003163541", "metadata_json": { "title": "Asset Metadata", "type": "object", "properties": { "name": { "type": "string", "description": "Monkey" }, "description": { "type": "string", "description": "Some text about the art." }, "image": { "type": "string", "description": "http://localhost:54407/files/upload/nft.jpg" } } }, "metadata_url": "http://localhost:54407/files/upload/nft-metadata-102043.txt", "title": "Monkey", "description": "Some text about the art.", "link": "", "file_type": "JPG", "nft_file": "/files/upload/nft.jpg", "nft_poster": "/files/upload/nft.jpg", "supply": { "items": 1, "creator_user_id": 1, "created_at": "2022-10-09T17:24:24", "owners": [ { "nft_user_id": 1, "since": "2022-10-09T17:24:24" } ] }, "properties": [ { "title": "Size", "value": "600*400px" }, { "title": "Color", "value": "Black and White" } ], "blockchain": "ETHEREUM", "account_id": 148, "currency_id": 35, "currency_code": "ETH", "price": 10.0, "instant_sale": true, "allow_bid": true, "bid_expiry": "2022-11-17T18:00:00", "unlock_on_purchase": false, "royalties": 0, "likes": 0, "gallery": [], "bids": [ { "date_time": "4 hours ago", "nft_user_id": 174, "nft_username": "@josephine.alexander", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/174", "offer": "18.5", "currency_code": "ETH", "status": "Offered" }, { "date_time": "5 hours ago", "nft_user_id": 173, "nft_username": "@haylie.burke", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/173", "offer": "16", "currency_code": "ETH", "status": "Offered" }, { "date_time": "22 days ago", "nft_user_id": 172, "nft_username": "@bronson.west", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/172", "offer": "13", "currency_code": "ETH", "status": "Offered" }, { "date_time": "2 months ago", "nft_user_id": 171, "nft_username": "@zariah.velazquez", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/171", "offer": "12", "currency_code": "ETH", "status": "Offered" } ], "history": [ { "date_time": "4 hours ago", "action": "Burned", "nft_username": "@aniyah.vaughn", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/179", "description": "NFT Burned" }, { "date_time": "5 hours ago", "action": "Transferred", "nft_username": "@luke.frederick", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/180", "description": "NFT Transferred" }, { "date_time": "22 days ago", "action": "Transferred", "nft_username": "@london.lowe", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/181", "description": "NFT Transferred" }, { "date_time": "2 months ago", "action": "Minted", "nft_username": "@bethany.herring", "nft_user_logo": "/files/upload/nft-200.png", "nft_user_link": "/nft/user/182", "description": "NFT Minted" } ], "status": "Minted", "liked_by_me": false }, "previous_owner": { "id": 1, "reg_date": "02/10/2022", "primary_wallet_type": "MetaMask", "customer": { "id": 132, "reg_date": "27/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Unknown", "birth_date": "**/**/****", "customer_type": "Organization", "email": "***********", "mobile": "***********", "phone": "***********", "country": { "id": 234, "name": "United Kingdom", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, "city": "***", "address": "", "avatar": "/files/upload/20220609-145616-132-0.png", "remark": "", "documents": [], "business_info": null, "api_key": null, "notification": null, "otp_enabled": true, "status": "***" }, "metamask": { "blockchain": 6, "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": { "blockchain": 0, "address": null }, "username": "nftjohn", "Bio": "Some information about me!", "logo": "/files/upload/nft-logo.jpg", "banner": "/files/upload/nft-banner.jpg", "links": [ { "platform": "Website", "url": "https://zed-pay.com" }, { "platform": "Instagram", "url": "https://instagram.com" } ], "followers": 0, "plans": [], "trend": true, "badge": true, "status": "Enabled", "followed_by_me": false }, "blockchain": "ETHEREUM", "currency_code": "ETH", "price": 100.0, "remark": "NFT has been transferred by Makan M..", "details": {}, "status": "Completed" } ] }
post
/api/v1/nft/login
Login with MetaMask or WalletConnect Address.
{ "primary_wallet_type": "Metamask", "metamask": { "blockchain": "ethereum", "address": "0xe23395d957aeee031c6fd9767ada05d94d633c34" }, "walletconnect": {} }
{ "id": 168, "success": true, "message": "", "value": null }
post
/api/v1/nft/save-plans
Define NFT Plans for subscribers. Admin usage only
Send token as "Authorization" in your request header.
[ { "order": 1, "title": "Basic", "max_nft_items": 5, "max_collections": 1, "tag_limit": 4, "royalty_limit": 10.0, "auction_length": 30, "transfer_commission": 2.5, "package_duration": 365, "start_date": "2022-01-01", "end_date": "2030-01-01", "price": 0.0, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 2, "title": "Silver", "max_nft_items": 50000, "max_collections": 5, "tag_limit": 8, "royalty_limit": 20.0, "auction_length": 60, "transfer_commission": 2.5, "package_duration": 30, "start_date": "2022-01-01", "end_date": "2030-01-01", "price": 0.1, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 3, "title": "Gold", "max_nft_items": 100000, "max_collections": 10, "tag_limit": 8, "royalty_limit": 30.0, "auction_length": 90, "transfer_commission": 2.5, "package_duration": 30, "start_date": "2022-01-01", "end_date": "2030-01-01", "price": 0.15, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 4, "title": "Diamond", "max_nft_items": 1000000, "max_collections": 100, "tag_limit": 10, "royalty_limit": 30.0, "auction_length": 365, "transfer_commission": 2.5, "package_duration": 30, "start_date": "2022-01-01", "end_date": "2030-01-01", "price": 0.2, "currency_id": 20, "currency_code": "ETH", "status": 1 } ]
{ "id": 169, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/nft/get-plans
Get a list of subscription plans.
Send token as "Authorization" in your request header.
{ "id": 170, "success": true, "message": "", "value": [ { "order": 1, "title": "Basic", "max_nft_items": 5, "max_collections": 1, "tag_limit": 4, "royalty_limit": "10%", "auction_length": 30, "transfer_commission": "2.5%", "package_duration": 365, "start_date": "01/01/2022", "end_date": "01/01/2030", "price": 0.0, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 2, "title": "Silver", "max_nft_items": 50000, "max_collections": 5, "tag_limit": 8, "royalty_limit": "20%", "auction_length": 60, "transfer_commission": "2.5%", "package_duration": 30, "start_date": "01/01/2022", "end_date": "01/01/2030", "price": 0.1, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 3, "title": "Gold", "max_nft_items": 100000, "max_collections": 10, "tag_limit": 8, "royalty_limit": "30%", "auction_length": 90, "transfer_commission": "2.5%", "package_duration": 30, "start_date": "01/01/2022", "end_date": "01/01/2030", "price": 0.15, "currency_id": 20, "currency_code": "ETH", "status": "Active" }, { "order": 4, "title": "Diamond", "max_nft_items": 1000000, "max_collections": 100, "tag_limit": 10, "royalty_limit": "30%", "auction_length": 365, "transfer_commission": "2.5%", "package_duration": 30, "start_date": "01/01/2022", "end_date": "01/01/2030", "price": 0.2, "currency_id": 20, "currency_code": "ETH", "status": "Active" } ] }
post
/api/v1/nft/renew-plan
Renew NFT subscription plan. id is the NFT User ID parameter.
Send token as "Authorization" in your request header.
{ "id": 40 }
{ "id": 171, "success": true, "message": "Subscription has been renewed successfully.", "value": null }
post
/api/v1/nft/change-plan
Subscribe to a new NFT plan. id is the NFT User ID parameter.
Send token as "Authorization" in your request header.
{ "id": 37, "plans": [ { "title": "Silver" } ] }
{ "id": 172, "success": true, "message": "Subscription has been changed successfully.", "value": null }
post
/api/v1/nft/bid
Offer to buy an NFT in auction. This method can also be used to edit the offer.
Send token as "Authorization" in your request header.
{ "id": 61, "customer_id": 132, "bids": [ { "offer": 0.05 } ] }
{ "id": 173, "success": true, "message": "Thank you! Your offer has been submitte successfully.", "value": null }
post
/api/v1/nft/cancel-bid
Cancel an active bid.
Send token as "Authorization" in your request header.
{ "id": 61, "customer_id": 132 }
{ "id": 174, "success": true, "message": "Your offer has been cancelled.", "value": null }
post
/api/v1/nft/update-contract-cost
Update the cost of deploying Smart Contracts.
Send token as "Authorization" in your request header.
[ { "blockchain": "ethereum", "currency_code": "ETH", "cost": 0.19 }, { "blockchain": "binance_smart_chain", "currency_code": "BNB", "cost": 0.04 }, { "blockchain": "tron", "currency_code": "TRX", "cost": 1600.0 } ]
{ "id": 176, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/get-contract-cost
Get the cost of deploying Smart Contracts.
Send token as "Authorization" in your request header.
{ "id": 177, "success": true, "message": "", "value": [ { "blockchain": "ETHEREUM", "currency_code": "ETH", "cost": 0.19 }, { "blockchain": "BINANCE SMART CHAIN", "currency_code": "BNB", "cost": 0.04 }, { "blockchain": "TRON", "currency_code": "TRX", "cost": 1600.0 } ] }
post
/api/v1/nft/review-bid
Accept or reject bid offers.
Send token as "Authorization" in your request header.
{ "item_id": 2, "buyer_nft_user_id": 1, "accepted": true }
{ "id": 178, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/nft/register-web3-transaction
Register a client side transaction created by MetaMask or WalletConnect.
Send token as "Authorization" in your request header.
{ "customer_id": 132, "currency_code": "ETH", "debit": 0.1, "details": { "web3_transaction": { "wallet_type": "WalletConnect", "blockchain": "ethereum", "address": "0xd3a576ad3c608a81c5e5beb715421879ce85d539", "transaction_hash": "0x0d07ae6aa5b63ae3266eace2e34a691202bf0895ddd707c792bada5fddecf4b8", "response": { "blockHash": "0x07df342de6dd941e933a8962cea98551c2a5f87e0f20613cc9e089d63a98ce57", "blockNumber": 15949471, "contractAddress": null, "cumulativeGasUsed": 10740360, "effectiveGasPrice": 17822136472, "from": "0xfad5c8bc5a3a98afb777814a636c20f472c7bb8d", "gasUsed": 21064, "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", "status": true, "to": "0xd3a576ad3c608a81c5e5beb715421879ce85d539", "transactionHash": "0x0d07ae6aa5b63ae3266eace2e34a691202bf0895ddd707c792bada5fddecf4b4", "transactionIndex": 109, "type": "0x2", "events": {} } } } }
{ "id": 179, "success": true, "message": "Transaction has been created. Your balance will be credited when we receive your transfer.", "value": null }
get
/api/v1/nft/financial-report
Get NFT financial report for a specific period.
Send token as "Authorization" in your request header.
?from=2022-12-15&to=2022-12-25
{ "id": 184, "success": true, "message": "", "value": { "nft_created": 91, "transfer_in": 12, "transfer_out": 66, "sell": [ { "total": 489.50000000000006, "currency_code": "ETH" }, { "total": 467.60999999999996, "currency_code": "USDT" }, { "total": 311.0, "currency_code": "TRX" } ], "commission_received": [ { "total": 1.4844999999999997, "currency_code": "ETH" }, { "total": 9.0028370588430029, "currency_code": "USDT" }, { "total": 7.5256346880306708, "currency_code": "TRX" } ], "mint_cost": [ { "total": 0.25800000000000012, "currency_code": "ETH" }, { "total": 0.01, "currency_code": "BNB" }, { "total": 330.014, "currency_code": "TRX" } ], "plans": [ { "users": 29, "title": "Basic" }, { "users": 12, "title": "Silver" } ] } }
+ Payment
get
/api/v1/payment/transak-currencies
Get a list of allowed currencies on Transak. customer_id is optional.
Send token as "Authorization" in your request header.
?customer_id=1
{ "id": 136, "success": true, "message": "", "value": [ { "currency_id": 20, "currency_code": "ETH", "account_id": 0, "blochchain": 6, "payment_url": "" }, { "currency_id": 16, "currency_code": "BTC", "account_id": 0, "blochchain": 1, "payment_url": "" }, { "currency_id": 17, "currency_code": "USDT", "account_id": 0, "blochchain": 6, "payment_url": "" } ] }
get
/api/v1/payment/list
Get a list of payments. Filters are optional.
Send token as "Authorization" in your request header.
?customer_id=1&transfer_id=102034&confirmed=true
{ "id": 139, "success": true, "message": "", "value": [ { "id": 4, "date_time": "09/09/2022 17:05", "transfer_id": 101999, "customer_name": "John Doe", "customer_email": "it@zed-pay.com", "account_id": 164, "currency_id": 15, "currency_code": "TRY", "amount": 1000.0, "gateway_currency_code": "TRY", "gateway_amount": 1000.0, "ip": "127.0.0.1", "bank": "PAYTR", "status": "Confirmed" }, { "id": 3, "date_time": "09/09/2022 16:31", "transfer_id": 101995, "customer_name": "John Doe", "customer_email": "it@zed-pay.com", "account_id": 164, "currency_id": 15, "currency_code": "TRY", "amount": 200.555, "gateway_currency_code": "TRY", "gateway_amount": 200.555, "ip": "::1", "bank": "PAYTR", "status": "New" }, { "id": 2, "date_time": "09/09/2022 16:09", "transfer_id": 101994, "customer_name": "John Doe", "customer_email": "it@zed-pay.com", "account_id": 164, "currency_id": 15, "currency_code": "TRY", "amount": 200.555, "gateway_currency_code": "TRY", "gateway_amount": 200.555, "ip": "8.8.8.8", "bank": "PAYTR", "status": "Confirmed" }, { "id": 1, "date_time": "09/09/2022 16:08", "transfer_id": 101993, "customer_name": "John Doe", "customer_email": "it@zed-pay.com", "account_id": 87, "currency_id": 12, "currency_code": "EUR", "amount": 200.555, "gateway_currency_code": "TRY", "gateway_amount": 200.555, "ip": "4.2.2.4", "bank": "PAYTR", "status": "Rejected" } ] }
post
/api/v1/payment/deposit-crypto
Deposit Crypto by Visa / Mastercard / Bank Cards
Send token as "Authorization" in your request header.
{ "customer_id": 1, "fiat": "USD", "fiatAmount": 1000, "crypto": "USDT" }
{ "id": 241, "success": true, "message": "", "value": { "merchantOrderNo": "103658", "fiat": 1, "fiatAmount": 1000, "crypto": 65, "network": 6, "address": "0xcd9f4e889dc64827d6edbc8c6bdf4fb89fccb666", "sign": "MLEC2R%2feW8W9TZxVdqwz5L%2fyqlFAp68caN6aPfQ%2bK8lGZ4unS%2bA6wwuPs1zvb2hZQCbrEtJBLnUzmn5o1o3LZmUk2zj2nZWdKlKH5dFY%3d", "email": "it@zedpay.com", "language": "en-US", "redirectUrl": "https://test.zed-pay.com/dashboard/alpayback.aspx", "callbackUrl": "https://test.zed-pay.com/dashboard/alpayresult.aspx", "merchantName": "ZedPay", "url": "https://ramptest.alchemypay.org/?crypto=USDT&network=ETH&appId=f83Is2y7L425rxl8&sign=MLEC2R%2feW8W9TZxVdqwz5L%2fyqltC8FAp68caN6aPfQ%2bK8lGZ4unS%2bA6wwuPs1zvb2hZQCbrEtJBLnUzmn5o1o3LZmUk2zj2nZWdKlKH5dFY%3d&address=0xcd9f4e889dc64827d6c8c6bdf4fb89fccb022&merchantOrderNo=103648&fiat=USD&fiatAmount=1000&email=dev@harryrajani.com&language=en-US&redirectUrl=https://test.zed-pay.com/dashboard/alpayback.aspx&callbackUrl=https://test.zed-pay.com/dashboard/alpayresult.aspx&merchantName=ZedPay" } }
get
/api/v1/payment/eligible-crypto-wallets
Get a list of allowed currencies to deposit crypto by card.
Send token as "Authorization" in your request header.
{ "id": 250, "success": true, "message": "", "value": [ { "Key": "BNB", "Value": "11" }, { "Key": "BTC", "Value": "12" }, { "Key": "ETH", "Value": "28" }, { "Key": "TRX", "Value": "60" }, { "Key": "USDC", "Value": "63" }, { "Key": "USDT", "Value": "65" } ] }
+ Static
post
/api/v1/static/upload-file
Upload file(s) to server. You need to send your request body as form-data. (URLs are temporary)
Send token as "Authorization" in your request header.
{ "id": 11, "success": true, "message": "File(s) uploaded.", "value": [ { "Key": "contract.jpeg", "Value": "/files/upload/20220509-100151-1-0.jpeg" }, { "Key": "tasks.txt", "Value": "/files/upload/20220509-100151-1-1.txt" } ] }
get
/api/v1/static/list-labels
Get a list of all static labels.
{ "id": 12, "success": true, "message": "", "value": [ { "ID": 1, "English": "Access denied." }, { "ID": 2, "English": "Request parameters do not satisfy requirements. Please check your values." }, { "ID": 3, "English": "New record created." }, { "ID": 4, "English": "Changes have been saved!" }, { "ID": 5, "English": "Selected item has been deleted." }, { "ID": 6, "English": "nothing found." }, { "ID": 7, "English": "File(s) uploaded." }, { "ID": 8, "English": "Current and New Passwords can not be same." }, { "ID": 9, "English": "Minimum password length is 6 characters." }, { "ID": 10, "English": "Password is not strong enough!" }, { "ID": 11, "English": "Session(s) has been closed." }, { "ID": 12, "English": "Please specify user_type in your request." }, { "ID": 13, "English": "Mobile or Email already exist." }, { "ID": 14, "English": "User has been created." }, { "ID": 15, "English": "Mobile number is connected to another user." }, { "ID": 16, "English": "Email address is connected to another user." }, { "ID": 17, "English": "Email is not valid." }, { "ID": 18, "English": "User not found." }, { "ID": 19, "English": "Account is disabled." }, { "ID": 20, "English": "Password is not correct." }, { "ID": 21, "English": "Successful login." }, { "ID": 22, "English": "Current password is not correct." }, { "ID": 23, "English": "Password changed." }, { "ID": 24, "English": "Selected item has been deleted." } ] }
post
/api/v1/static/save-labels
Save static lables list.
Send token as "Authorization" in your request header.
[ { "ID": 1, "English": "Access denied." }, { "ID": 2, "English": "Request parameters do not satisfy requirements. Please check your values." }, { "ID": 3, "English": "New record created." }, { "ID": 4, "English": "Changes have been saved!" }, { "ID": 5, "English": "Selected item has been deleted." }, { "ID": 6, "English": "nothing found." }, { "ID": 7, "English": "File(s) uploaded." }, { "ID": 8, "English": "Current and New Passwords can not be same." }, { "ID": 9, "English": "Minimum password length is 6 characters." }, { "ID": 10, "English": "Password is not strong enough!" }, { "ID": 11, "English": "Session(s) has been closed." }, { "ID": 12, "English": "Please specify user_type in your request." }, { "ID": 13, "English": "Mobile or Email already exist." }, { "ID": 14, "English": "User has been created." }, { "ID": 15, "English": "Mobile number is connected to another user." }, { "ID": 16, "English": "Email address is connected to another user." }, { "ID": 17, "English": "Email is not valid." }, { "ID": 18, "English": "User not found." }, { "ID": 19, "English": "Account is disabled." }, { "ID": 20, "English": "Password is not correct." }, { "ID": 21, "English": "Successful login." }, { "ID": 22, "English": "Current password is not correct." }, { "ID": 23, "English": "Password changed." }, { "ID": 24, "English": "Selected item has been deleted." } ]
{ "id": 13, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/static/send-message
Send a message to support.
{ "full_name": "Makan", "email": "someone@example.com", "phone": "+15161234567", "subject": "Visa Card", "message": "How much does it cost to get a Virtual visa card?" }
{ "id": 17, "success": true, "message": "Message has been sent!", "value": null }
get
/api/v1/static/faq
Get a list of FAQs.
?items=50
{ "id": 18, "success": true, "message": "", "value": [ { "question": "How do I locate the nearesty branch or ATM?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What do I do if I lose my card or it gets stolen?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is your customer service number?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I reset my pin?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is required to use Digital Banking?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "Is digital banking secure?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I locate the nearesty branch or ATM?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What do I do if I lose my card or it gets stolen?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is your customer service number?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I reset my pin?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is required to use Digital Banking?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "Is digital banking secure?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." } ] }
get
/api/v1/static/get-api-methods
Get a list of API methods documentation.
{ "id": 22, "success": true, "message": "", "value": [ { "id": 16, "type": "GET", "modules": [ 1, 2, 3 ], "category": "blog", "method": "list", "title": "List Blog", "comment": "Get a list of recent blogs. Use id filter to get a single specific blog.", "request": "?items=50&id=2", "response": { "id": 16, "success": true, "message": "", "value": [ { "id": 15, "date_time": "02/04/2022", "title": "How to convert credit card outstanding into EMIs?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-4.png", "author": "Post ByHans Murazik", "category": "Credit", "url": "/blog/15", "status": "Enabled" }, { "id": 14, "date_time": "11/04/2022", "title": "Personal Loans Are Here To Finance Your Dreams.", "summary": "The secured personal loans are offered based on a collateral security such as car, house...", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-3.png", "author": "Post ByHans Murazik", "category": "Account", "url": "/blog/14", "status": "Enabled" }, { "id": 13, "date_time": "19/04/2022", "title": "How Do Unsecured Homeowner Loans Work?", "summary": "There are usually two kinds of loans: secured loans, and unsecured loans.", "body": "<div>Sample HTML Content</div>", "poster": "blog-post-1.png", "author": "Post ByHans Murazik", "category": "Card", "url": "/blog/13", "status": "Enabled" } ] }, "weight": 160, "need_auth": false }, { "id": 18, "type": "GET", "modules": [ 1, 2, 3 ], "category": "Static", "method": "faq", "title": "FAQ", "comment": "Get a list of FAQs.", "request": "?items=50", "response": { "id": 18, "success": true, "message": "", "value": [ { "question": "How do I locate the nearesty branch or ATM?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What do I do if I lose my card or it gets stolen?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is your customer service number?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I reset my pin?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is required to use Digital Banking?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "Is digital banking secure?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I locate the nearesty branch or ATM?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What do I do if I lose my card or it gets stolen?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is your customer service number?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "How do I reset my pin?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "What is required to use Digital Banking?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." }, { "question": "Is digital banking secure?", "answer": "If your card is missing, let us know immediately. We’ll block your card right away send over a new one on the same day.To report a lost or stolen card, call us at (406) 555-0120." } ] }, "weight": 180, "need_auth": false }, { "id": 13, "type": "POST", "modules": [ 1 ], "category": "Static", "method": "save-labels", "title": "Save Labels", "comment": "Save static lables list.", "request": [ { "ID": 1, "English": "Access denied." }, { "ID": 2, "English": "Request parameters do not satisfy requirements. Please check your values." }, { "ID": 3, "English": "New record created." }, { "ID": 4, "English": "Changes have been saved!" }, { "ID": 5, "English": "Selected item has been deleted." }, { "ID": 6, "English": "nothing found." }, { "ID": 7, "English": "File(s) uploaded." }, { "ID": 8, "English": "Current and New Passwords can not be same." }, { "ID": 9, "English": "Minimum password length is 6 characters." }, { "ID": 10, "English": "Password is not strong enough!" }, { "ID": 11, "English": "Session(s) has been closed." }, { "ID": 12, "English": "Please specify user_type in your request." }, { "ID": 13, "English": "Mobile or Email already exist." }, { "ID": 14, "English": "User has been created." }, { "ID": 15, "English": "Mobile number is connected to another user." }, { "ID": 16, "English": "Email address is connected to another user." }, { "ID": 17, "English": "Email is not valid." }, { "ID": 18, "English": "User not found." }, { "ID": 19, "English": "Account is disabled." }, { "ID": 20, "English": "Password is not correct." }, { "ID": 21, "English": "Successful login." }, { "ID": 22, "English": "Current password is not correct." }, { "ID": 23, "English": "Password changed." }, { "ID": 24, "English": "Selected item has been deleted." } ], "response": { "id": 13, "success": true, "message": "Changes have been saved!", "value": null }, "weight": 130, "need_auth": true }, { "id": 17, "type": "POST", "modules": [ 2, 3 ], "category": "Static", "method": "send-message", "title": "Contact Form", "comment": "Send a message to support.", "request": { "full_name": "Makan", "email": "someone@example.com", "phone": "+15161234567", "subject": "Visa Card", "message": "How much does it cost to get a Virtual visa card?" }, "response": { "id": 17, "success": true, "message": "Message has been sent!", "value": null }, "weight": 170, "need_auth": false } ] }
get
/api/v1/static/list-countries
Get a list of countries.
{ "id": 34, "success": true, "message": "", "value": [ { "id": 1, "name": "Afghanistan", "flag": "/files/flags/AF.png", "phone_prefix": "93", "alpha_2": "AF", "alpha_3": "AFG" }, { "id": 249, "name": "Åland Islands", "flag": "/files/flags/AX.png", "phone_prefix": "358", "alpha_2": "AX", "alpha_3": "ALA" }, { "id": 2, "name": "Albania", "flag": "/files/flags/AL.png", "phone_prefix": "355", "alpha_2": "AL", "alpha_3": "ALB" }, { "id": 3, "name": "Algeria", "flag": "/files/flags/DZ.png", "phone_prefix": "213", "alpha_2": "DZ", "alpha_3": "DZA" }, { "id": 4, "name": "American Samoa", "flag": "/files/flags/AS.png", "phone_prefix": "1", "alpha_2": "AS", "alpha_3": "ASM" }, { "id": 5, "name": "Andorra", "flag": "/files/flags/AD.png", "phone_prefix": "376", "alpha_2": "AD", "alpha_3": "AND" }, { "id": 6, "name": "Angola", "flag": "/files/flags/AO.png", "phone_prefix": "244", "alpha_2": "AO", "alpha_3": "AGO" }, { "id": 7, "name": "Anguilla", "flag": "/files/flags/AI.png", "phone_prefix": "1", "alpha_2": "AI", "alpha_3": "AIA" }, { "id": 8, "name": "Antarctica", "flag": "/files/flags/AQ.png", "phone_prefix": "672", "alpha_2": "AQ", "alpha_3": "ATA" }, { "id": 9, "name": "Antigua and Barbuda", "flag": "/files/flags/AG.png", "phone_prefix": "1", "alpha_2": "AG", "alpha_3": "ATG" }, { "id": 10, "name": "Argentina", "flag": "/files/flags/AR.png", "phone_prefix": "54", "alpha_2": "AR", "alpha_3": "ARG" }, { "id": 11, "name": "Armenia", "flag": "/files/flags/AM.png", "phone_prefix": "374", "alpha_2": "AM", "alpha_3": "ARM" }, { "id": 12, "name": "Aruba", "flag": "/files/flags/AW.png", "phone_prefix": "297", "alpha_2": "AW", "alpha_3": "ABW" }, { "id": 13, "name": "Australia", "flag": "/files/flags/AU.png", "phone_prefix": "61", "alpha_2": "AU", "alpha_3": "AUS" }, { "id": 14, "name": "Austria", "flag": "/files/flags/AT.png", "phone_prefix": "43", "alpha_2": "AT", "alpha_3": "AUT" }, { "id": 15, "name": "Azerbaijan", "flag": "/files/flags/AZ.png", "phone_prefix": "994", "alpha_2": "AZ", "alpha_3": "AZE" }, { "id": 16, "name": "Bahamas", "flag": "/files/flags/BS.png", "phone_prefix": "1", "alpha_2": "BS", "alpha_3": "BHS" }, { "id": 17, "name": "Bahrain", "flag": "/files/flags/BH.png", "phone_prefix": "973", "alpha_2": "BH", "alpha_3": "BHR" }, { "id": 18, "name": "Bangladesh", "flag": "/files/flags/BD.png", "phone_prefix": "880", "alpha_2": "BD", "alpha_3": "BGD" }, { "id": 19, "name": "Barbados", "flag": "/files/flags/BB.png", "phone_prefix": "1", "alpha_2": "BB", "alpha_3": "BRB" }, { "id": 20, "name": "Belarus", "flag": "/files/flags/BY.png", "phone_prefix": "375", "alpha_2": "BY", "alpha_3": "BLR" }, { "id": 21, "name": "Belgium", "flag": "/files/flags/BE.png", "phone_prefix": "32", "alpha_2": "BE", "alpha_3": "BEL" }, { "id": 22, "name": "Belize", "flag": "/files/flags/BZ.png", "phone_prefix": "501", "alpha_2": "BZ", "alpha_3": "BLZ" }, { "id": 23, "name": "Benin", "flag": "/files/flags/BJ.png", "phone_prefix": "229", "alpha_2": "BJ", "alpha_3": "BEN" }, { "id": 24, "name": "Bermuda", "flag": "/files/flags/BM.png", "phone_prefix": "1", "alpha_2": "BM", "alpha_3": "BMU" }, { "id": 25, "name": "Bhutan", "flag": "/files/flags/BT.png", "phone_prefix": "975", "alpha_2": "BT", "alpha_3": "BTN" }, { "id": 26, "name": "Bolivia", "flag": "/files/flags/BO.png", "phone_prefix": "591", "alpha_2": "BO", "alpha_3": "BOL" }, { "id": 27, "name": "Bonaire, Sint Eustatius and Saba", "flag": "/files/flags/BQ.png", "phone_prefix": "599", "alpha_2": "BQ", "alpha_3": "BES" }, { "id": 28, "name": "Bosnia and Herzegovina", "flag": "/files/flags/BA.png", "phone_prefix": "387", "alpha_2": "BA", "alpha_3": "BIH" }, { "id": 29, "name": "Botswana", "flag": "/files/flags/BW.png", "phone_prefix": "267", "alpha_2": "BW", "alpha_3": "BWA" }, { "id": 30, "name": "Bouvet Island", "flag": "/files/flags/BV.png", "phone_prefix": "55", "alpha_2": "BV", "alpha_3": "BVT" }, { "id": 31, "name": "Brazil", "flag": "/files/flags/BR.png", "phone_prefix": "55", "alpha_2": "BR", "alpha_3": "BRA" }, { "id": 32, "name": "British Indian Ocean Territory", "flag": "/files/flags/IO.png", "phone_prefix": "246", "alpha_2": "IO", "alpha_3": "IOT" }, { "id": 33, "name": "Brunei Darussalam", "flag": "/files/flags/BN.png", "phone_prefix": "673", "alpha_2": "BN", "alpha_3": "BRN" }, { "id": 34, "name": "Bulgaria", "flag": "/files/flags/BG.png", "phone_prefix": "359", "alpha_2": "BG", "alpha_3": "BGR" }, { "id": 35, "name": "Burkina Faso", "flag": "/files/flags/BF.png", "phone_prefix": "226", "alpha_2": "BF", "alpha_3": "BFA" }, { "id": 36, "name": "Burundi", "flag": "/files/flags/BI.png", "phone_prefix": "257", "alpha_2": "BI", "alpha_3": "BDI" }, { "id": 37, "name": "Cabo Verde", "flag": "/files/flags/CV.png", "phone_prefix": "238", "alpha_2": "CV", "alpha_3": "CPV" }, { "id": 38, "name": "Cambodia", "flag": "/files/flags/KH.png", "phone_prefix": "855", "alpha_2": "KH", "alpha_3": "KHM" }, { "id": 39, "name": "Cameroon", "flag": "/files/flags/CM.png", "phone_prefix": "237", "alpha_2": "CM", "alpha_3": "CMR" }, { "id": 40, "name": "Canada", "flag": "/files/flags/CA.png", "phone_prefix": "1", "alpha_2": "CA", "alpha_3": "CAN" }, { "id": 41, "name": "Cayman Islands", "flag": "/files/flags/KY.png", "phone_prefix": "1", "alpha_2": "KY", "alpha_3": "CYM" }, { "id": 42, "name": "Central African Republic", "flag": "/files/flags/CF.png", "phone_prefix": "236", "alpha_2": "CF", "alpha_3": "CAF" }, { "id": 43, "name": "Chad", "flag": "/files/flags/TD.png", "phone_prefix": "235", "alpha_2": "TD", "alpha_3": "TCD" }, { "id": 44, "name": "Chile", "flag": "/files/flags/CL.png", "phone_prefix": "56", "alpha_2": "CL", "alpha_3": "CHL" }, { "id": 45, "name": "China", "flag": "/files/flags/CN.png", "phone_prefix": "86", "alpha_2": "CN", "alpha_3": "CHN" }, { "id": 46, "name": "Christmas Island", "flag": "/files/flags/CX.png", "phone_prefix": "61", "alpha_2": "CX", "alpha_3": "CXR" }, { "id": 47, "name": "Cocos Islands", "flag": "/files/flags/CC.png", "phone_prefix": "61", "alpha_2": "CC", "alpha_3": "CCK" }, { "id": 48, "name": "Colombia", "flag": "/files/flags/CO.png", "phone_prefix": "57", "alpha_2": "CO", "alpha_3": "COL" }, { "id": 49, "name": "Comoros", "flag": "/files/flags/KM.png", "phone_prefix": "269", "alpha_2": "KM", "alpha_3": "COM" }, { "id": 51, "name": "Congo", "flag": "/files/flags/CG.png", "phone_prefix": "243", "alpha_2": "CG", "alpha_3": "COG" }, { "id": 50, "name": "Congo, Democratic Republic", "flag": "/files/flags/CD.png", "phone_prefix": "242", "alpha_2": "CD", "alpha_3": "COD" }, { "id": 52, "name": "Cook Islands", "flag": "/files/flags/CK.png", "phone_prefix": "682", "alpha_2": "CK", "alpha_3": "COK" }, { "id": 53, "name": "Costa Rica", "flag": "/files/flags/CR.png", "phone_prefix": "506", "alpha_2": "CR", "alpha_3": "CRI" }, { "id": 59, "name": "Côte d'Ivoire", "flag": "/files/flags/CI.png", "phone_prefix": "225", "alpha_2": "CI", "alpha_3": "CIV" }, { "id": 54, "name": "Croatia", "flag": "/files/flags/HR.png", "phone_prefix": "385", "alpha_2": "HR", "alpha_3": "HRV" }, { "id": 55, "name": "Cuba", "flag": "/files/flags/CU.png", "phone_prefix": "53", "alpha_2": "CU", "alpha_3": "CUB" }, { "id": 56, "name": "Curaçao", "flag": "/files/flags/CW.png", "phone_prefix": "599", "alpha_2": "CW", "alpha_3": "CUW" }, { "id": 57, "name": "Cyprus", "flag": "/files/flags/CY.png", "phone_prefix": "357", "alpha_2": "CY", "alpha_3": "CYP" }, { "id": 58, "name": "Czechia", "flag": "/files/flags/CZ.png", "phone_prefix": "420", "alpha_2": "CZ", "alpha_3": "CZE" }, { "id": 60, "name": "Denmark", "flag": "/files/flags/DK.png", "phone_prefix": "45", "alpha_2": "DK", "alpha_3": "DNK" }, { "id": 61, "name": "Djibouti", "flag": "/files/flags/DJ.png", "phone_prefix": "253", "alpha_2": "DJ", "alpha_3": "DJI" }, { "id": 62, "name": "Dominica", "flag": "/files/flags/DM.png", "phone_prefix": "1", "alpha_2": "DM", "alpha_3": "DMA" }, { "id": 63, "name": "Dominican Republic", "flag": "/files/flags/DO.png", "phone_prefix": "1", "alpha_2": "DO", "alpha_3": "DOM" }, { "id": 64, "name": "Ecuador", "flag": "/files/flags/EC.png", "phone_prefix": "593", "alpha_2": "EC", "alpha_3": "ECU" }, { "id": 65, "name": "Egypt", "flag": "/files/flags/EG.png", "phone_prefix": "20", "alpha_2": "EG", "alpha_3": "EGY" }, { "id": 66, "name": "El Salvador", "flag": "/files/flags/SV.png", "phone_prefix": "503", "alpha_2": "SV", "alpha_3": "SLV" }, { "id": 67, "name": "Equatorial Guinea", "flag": "/files/flags/GQ.png", "phone_prefix": "240", "alpha_2": "GQ", "alpha_3": "GNQ" }, { "id": 68, "name": "Eritrea", "flag": "/files/flags/ER.png", "phone_prefix": "291", "alpha_2": "ER", "alpha_3": "ERI" }, { "id": 69, "name": "Estonia", "flag": "/files/flags/EE.png", "phone_prefix": "372", "alpha_2": "EE", "alpha_3": "EST" }, { "id": 70, "name": "Eswatini", "flag": "/files/flags/SZ.png", "phone_prefix": "268", "alpha_2": "SZ", "alpha_3": "SWZ" }, { "id": 71, "name": "Ethiopia", "flag": "/files/flags/ET.png", "phone_prefix": "251", "alpha_2": "ET", "alpha_3": "ETH" }, { "id": 72, "name": "Falkland Islands", "flag": "/files/flags/FK.png", "phone_prefix": "500", "alpha_2": "FK", "alpha_3": "FLK" }, { "id": 73, "name": "Faroe Islands", "flag": "/files/flags/FO.png", "phone_prefix": "298", "alpha_2": "FO", "alpha_3": "FRO" }, { "id": 74, "name": "Fiji", "flag": "/files/flags/FJ.png", "phone_prefix": "679", "alpha_2": "FJ", "alpha_3": "FJI" }, { "id": 75, "name": "Finland", "flag": "/files/flags/FI.png", "phone_prefix": "358", "alpha_2": "FI", "alpha_3": "FIN" }, { "id": 76, "name": "France", "flag": "/files/flags/FR.png", "phone_prefix": "33", "alpha_2": "FR", "alpha_3": "FRA" }, { "id": 77, "name": "French Guiana", "flag": "/files/flags/GF.png", "phone_prefix": "689", "alpha_2": "GF", "alpha_3": "GUF" }, { "id": 78, "name": "French Polynesia", "flag": "/files/flags/PF.png", "phone_prefix": "689", "alpha_2": "PF", "alpha_3": "PYF" }, { "id": 79, "name": "French Southern Territories", "flag": "/files/flags/TF.png", "phone_prefix": "689", "alpha_2": "TF", "alpha_3": "ATF" }, { "id": 80, "name": "Gabon", "flag": "/files/flags/GA.png", "phone_prefix": "241", "alpha_2": "GA", "alpha_3": "GAB" }, { "id": 81, "name": "Gambia", "flag": "/files/flags/GM.png", "phone_prefix": "220", "alpha_2": "GM", "alpha_3": "GMB" }, { "id": 82, "name": "Georgia", "flag": "/files/flags/GE.png", "phone_prefix": "995", "alpha_2": "GE", "alpha_3": "GEO" }, { "id": 83, "name": "Germany", "flag": "/files/flags/DE.png", "phone_prefix": "49", "alpha_2": "DE", "alpha_3": "DEU" }, { "id": 84, "name": "Ghana", "flag": "/files/flags/GH.png", "phone_prefix": "233", "alpha_2": "GH", "alpha_3": "GHA" }, { "id": 85, "name": "Gibraltar", "flag": "/files/flags/GI.png", "phone_prefix": "350", "alpha_2": "GI", "alpha_3": "GIB" }, { "id": 86, "name": "Greece", "flag": "/files/flags/GR.png", "phone_prefix": "30", "alpha_2": "GR", "alpha_3": "GRC" }, { "id": 87, "name": "Greenland", "flag": "/files/flags/GL.png", "phone_prefix": "299", "alpha_2": "GL", "alpha_3": "GRL" }, { "id": 88, "name": "Grenada", "flag": "/files/flags/GD.png", "phone_prefix": "1", "alpha_2": "GD", "alpha_3": "GRD" }, { "id": 89, "name": "Guadeloupe", "flag": "/files/flags/GP.png", "phone_prefix": "590", "alpha_2": "GP", "alpha_3": "GLP" }, { "id": 90, "name": "Guam", "flag": "/files/flags/GU.png", "phone_prefix": "1", "alpha_2": "GU", "alpha_3": "GUM" }, { "id": 91, "name": "Guatemala", "flag": "/files/flags/GT.png", "phone_prefix": "502", "alpha_2": "GT", "alpha_3": "GTM" }, { "id": 92, "name": "Guernsey", "flag": "/files/flags/GG.png", "phone_prefix": "44", "alpha_2": "GG", "alpha_3": "GGY" }, { "id": 93, "name": "Guinea", "flag": "/files/flags/GN.png", "phone_prefix": "224", "alpha_2": "GN", "alpha_3": "GIN" }, { "id": 94, "name": "Guinea-Bissau", "flag": "/files/flags/GW.png", "phone_prefix": "245", "alpha_2": "GW", "alpha_3": "GNB" }, { "id": 95, "name": "Guyana", "flag": "/files/flags/GY.png", "phone_prefix": "592", "alpha_2": "GY", "alpha_3": "GUY" }, { "id": 96, "name": "Haiti", "flag": "/files/flags/HT.png", "phone_prefix": "509", "alpha_2": "HT", "alpha_3": "HTI" }, { "id": 97, "name": "Heard Island and McDonald Islands", "flag": "/files/flags/HM.png", "phone_prefix": "677", "alpha_2": "HM", "alpha_3": "HMD" }, { "id": 98, "name": "Holy See", "flag": "/files/flags/VA.png", "phone_prefix": "379", "alpha_2": "VA", "alpha_3": "VAT" }, { "id": 99, "name": "Honduras", "flag": "/files/flags/HN.png", "phone_prefix": "504", "alpha_2": "HN", "alpha_3": "HND" }, { "id": 100, "name": "Hong Kong", "flag": "/files/flags/HK.png", "phone_prefix": "852", "alpha_2": "HK", "alpha_3": "HKG" }, { "id": 101, "name": "Hungary", "flag": "/files/flags/HU.png", "phone_prefix": "36", "alpha_2": "HU", "alpha_3": "HUN" }, { "id": 102, "name": "Iceland", "flag": "/files/flags/IS.png", "phone_prefix": "354", "alpha_2": "IS", "alpha_3": "ISL" }, { "id": 103, "name": "India", "flag": "/files/flags/IN.png", "phone_prefix": "91", "alpha_2": "IN", "alpha_3": "IND" }, { "id": 104, "name": "Indonesia", "flag": "/files/flags/ID.png", "phone_prefix": "62", "alpha_2": "ID", "alpha_3": "IDN" }, { "id": 105, "name": "Iran", "flag": "/files/flags/IR.png", "phone_prefix": "98", "alpha_2": "IR", "alpha_3": "IRN" }, { "id": 106, "name": "Iraq", "flag": "/files/flags/IQ.png", "phone_prefix": "964", "alpha_2": "IQ", "alpha_3": "IRQ" }, { "id": 107, "name": "Ireland", "flag": "/files/flags/IE.png", "phone_prefix": "353", "alpha_2": "IE", "alpha_3": "IRL" }, { "id": 108, "name": "Isle of Man", "flag": "/files/flags/IM.png", "phone_prefix": "44", "alpha_2": "IM", "alpha_3": "IMN" }, { "id": 109, "name": "Israel", "flag": "/files/flags/IL.png", "phone_prefix": "972", "alpha_2": "IL", "alpha_3": "ISR" }, { "id": 110, "name": "Italy", "flag": "/files/flags/IT.png", "phone_prefix": "39", "alpha_2": "IT", "alpha_3": "ITA" }, { "id": 111, "name": "Jamaica", "flag": "/files/flags/JM.png", "phone_prefix": "1", "alpha_2": "JM", "alpha_3": "JAM" }, { "id": 112, "name": "Japan", "flag": "/files/flags/JP.png", "phone_prefix": "81", "alpha_2": "JP", "alpha_3": "JPN" }, { "id": 113, "name": "Jersey", "flag": "/files/flags/JE.png", "phone_prefix": "44", "alpha_2": "JE", "alpha_3": "JEY" }, { "id": 114, "name": "Jordan", "flag": "/files/flags/JO.png", "phone_prefix": "962", "alpha_2": "JO", "alpha_3": "JOR" }, { "id": 115, "name": "Kazakhstan", "flag": "/files/flags/KZ.png", "phone_prefix": "7", "alpha_2": "KZ", "alpha_3": "KAZ" }, { "id": 116, "name": "Kenya", "flag": "/files/flags/KE.png", "phone_prefix": "254", "alpha_2": "KE", "alpha_3": "KEN" }, { "id": 117, "name": "Kiribati", "flag": "/files/flags/KI.png", "phone_prefix": "686", "alpha_2": "KI", "alpha_3": "KIR" }, { "id": 120, "name": "Kuwait", "flag": "/files/flags/KW.png", "phone_prefix": "965", "alpha_2": "KW", "alpha_3": "KWT" }, { "id": 121, "name": "Kyrgyzstan", "flag": "/files/flags/KG.png", "phone_prefix": "996", "alpha_2": "KG", "alpha_3": "KGZ" }, { "id": 122, "name": "Lao People's Democratic Republic", "flag": "/files/flags/LA.png", "phone_prefix": "856", "alpha_2": "LA", "alpha_3": "LAO" }, { "id": 123, "name": "Latvia", "flag": "/files/flags/LV.png", "phone_prefix": "371", "alpha_2": "LV", "alpha_3": "LVA" }, { "id": 124, "name": "Lebanon", "flag": "/files/flags/LB.png", "phone_prefix": "961", "alpha_2": "LB", "alpha_3": "LBN" }, { "id": 125, "name": "Lesotho", "flag": "/files/flags/LS.png", "phone_prefix": "266", "alpha_2": "LS", "alpha_3": "LSO" }, { "id": 126, "name": "Liberia", "flag": "/files/flags/LR.png", "phone_prefix": "231", "alpha_2": "LR", "alpha_3": "LBR" }, { "id": 127, "name": "Libya", "flag": "/files/flags/LY.png", "phone_prefix": "218", "alpha_2": "LY", "alpha_3": "LBY" }, { "id": 128, "name": "Liechtenstein", "flag": "/files/flags/LI.png", "phone_prefix": "423", "alpha_2": "LI", "alpha_3": "LIE" }, { "id": 129, "name": "Lithuania", "flag": "/files/flags/LT.png", "phone_prefix": "370", "alpha_2": "LT", "alpha_3": "LTU" }, { "id": 130, "name": "Luxembourg", "flag": "/files/flags/LU.png", "phone_prefix": "352", "alpha_2": "LU", "alpha_3": "LUX" }, { "id": 131, "name": "Macao", "flag": "/files/flags/MO.png", "phone_prefix": "853", "alpha_2": "MO", "alpha_3": "MAC" }, { "id": 132, "name": "Madagascar", "flag": "/files/flags/MG.png", "phone_prefix": "261", "alpha_2": "MG", "alpha_3": "MDG" }, { "id": 133, "name": "Malawi", "flag": "/files/flags/MW.png", "phone_prefix": "265", "alpha_2": "MW", "alpha_3": "MWI" }, { "id": 134, "name": "Malaysia", "flag": "/files/flags/MY.png", "phone_prefix": "60", "alpha_2": "MY", "alpha_3": "MYS" }, { "id": 135, "name": "Maldives", "flag": "/files/flags/MV.png", "phone_prefix": "960", "alpha_2": "MV", "alpha_3": "MDV" }, { "id": 136, "name": "Mali", "flag": "/files/flags/ML.png", "phone_prefix": "223", "alpha_2": "ML", "alpha_3": "MLI" }, { "id": 137, "name": "Malta", "flag": "/files/flags/MT.png", "phone_prefix": "356", "alpha_2": "MT", "alpha_3": "MLT" }, { "id": 138, "name": "Marshall Islands", "flag": "/files/flags/MH.png", "phone_prefix": "692", "alpha_2": "MH", "alpha_3": "MHL" }, { "id": 139, "name": "Martinique", "flag": "/files/flags/MQ.png", "phone_prefix": "596", "alpha_2": "MQ", "alpha_3": "MTQ" }, { "id": 140, "name": "Mauritania", "flag": "/files/flags/MR.png", "phone_prefix": "222", "alpha_2": "MR", "alpha_3": "MRT" }, { "id": 141, "name": "Mauritius", "flag": "/files/flags/MU.png", "phone_prefix": "230", "alpha_2": "MU", "alpha_3": "MUS" }, { "id": 142, "name": "Mayotte", "flag": "/files/flags/YT.png", "phone_prefix": "262", "alpha_2": "YT", "alpha_3": "MYT" }, { "id": 143, "name": "Mexico", "flag": "/files/flags/MX.png", "phone_prefix": "52", "alpha_2": "MX", "alpha_3": "MEX" }, { "id": 144, "name": "Micronesia", "flag": "/files/flags/FM.png", "phone_prefix": "691", "alpha_2": "FM", "alpha_3": "FSM" }, { "id": 145, "name": "Moldova", "flag": "/files/flags/MD.png", "phone_prefix": "373", "alpha_2": "MD", "alpha_3": "MDA" }, { "id": 146, "name": "Monaco", "flag": "/files/flags/MC.png", "phone_prefix": "377", "alpha_2": "MC", "alpha_3": "MCO" }, { "id": 147, "name": "Mongolia", "flag": "/files/flags/MN.png", "phone_prefix": "976", "alpha_2": "MN", "alpha_3": "MNG" }, { "id": 148, "name": "Montenegro", "flag": "/files/flags/ME.png", "phone_prefix": "382", "alpha_2": "ME", "alpha_3": "MNE" }, { "id": 149, "name": "Montserrat", "flag": "/files/flags/MS.png", "phone_prefix": "1", "alpha_2": "MS", "alpha_3": "MSR" }, { "id": 150, "name": "Morocco", "flag": "/files/flags/MA.png", "phone_prefix": "212", "alpha_2": "MA", "alpha_3": "MAR" }, { "id": 151, "name": "Mozambique", "flag": "/files/flags/MZ.png", "phone_prefix": "258", "alpha_2": "MZ", "alpha_3": "MOZ" }, { "id": 152, "name": "Myanmar", "flag": "/files/flags/MM.png", "phone_prefix": "95", "alpha_2": "MM", "alpha_3": "MMR" }, { "id": 153, "name": "Namibia", "flag": "/files/flags/NA.png", "phone_prefix": "264", "alpha_2": "NA", "alpha_3": "NAM" }, { "id": 154, "name": "Nauru", "flag": "/files/flags/NR.png", "phone_prefix": "674", "alpha_2": "NR", "alpha_3": "NRU" }, { "id": 155, "name": "Nepal", "flag": "/files/flags/NP.png", "phone_prefix": "977", "alpha_2": "NP", "alpha_3": "NPL" }, { "id": 156, "name": "Netherlands", "flag": "/files/flags/NL.png", "phone_prefix": "31", "alpha_2": "NL", "alpha_3": "NLD" }, { "id": 157, "name": "New Caledonia", "flag": "/files/flags/NC.png", "phone_prefix": "687", "alpha_2": "NC", "alpha_3": "NCL" }, { "id": 158, "name": "New Zealand", "flag": "/files/flags/NZ.png", "phone_prefix": "64", "alpha_2": "NZ", "alpha_3": "NZL" }, { "id": 159, "name": "Nicaragua", "flag": "/files/flags/NI.png", "phone_prefix": "505", "alpha_2": "NI", "alpha_3": "NIC" }, { "id": 160, "name": "Niger", "flag": "/files/flags/NE.png", "phone_prefix": "227", "alpha_2": "NE", "alpha_3": "NER" }, { "id": 161, "name": "Nigeria", "flag": "/files/flags/NG.png", "phone_prefix": "234", "alpha_2": "NG", "alpha_3": "NGA" }, { "id": 162, "name": "Niue", "flag": "/files/flags/NU.png", "phone_prefix": "683", "alpha_2": "NU", "alpha_3": "NIU" }, { "id": 163, "name": "Norfolk Island", "flag": "/files/flags/NF.png", "phone_prefix": "672", "alpha_2": "NF", "alpha_3": "NFK" }, { "id": 118, "name": "North Korea", "flag": "/files/flags/KP.png", "phone_prefix": "850", "alpha_2": "KP", "alpha_3": "PRK" }, { "id": 164, "name": "Northern Mariana Islands", "flag": "/files/flags/MP.png", "phone_prefix": "1", "alpha_2": "MP", "alpha_3": "MNP" }, { "id": 165, "name": "Norway", "flag": "/files/flags/NO.png", "phone_prefix": "47", "alpha_2": "NO", "alpha_3": "NOR" }, { "id": 166, "name": "Oman", "flag": "/files/flags/OM.png", "phone_prefix": "968", "alpha_2": "OM", "alpha_3": "OMN" }, { "id": 167, "name": "Pakistan", "flag": "/files/flags/PK.png", "phone_prefix": "92", "alpha_2": "PK", "alpha_3": "PAK" }, { "id": 168, "name": "Palau", "flag": "/files/flags/PW.png", "phone_prefix": "680", "alpha_2": "PW", "alpha_3": "PLW" }, { "id": 169, "name": "Palestine", "flag": "/files/flags/PS.png", "phone_prefix": "970", "alpha_2": "PS", "alpha_3": "PSE" }, { "id": 170, "name": "Panama", "flag": "/files/flags/PA.png", "phone_prefix": "507", "alpha_2": "PA", "alpha_3": "PAN" }, { "id": 171, "name": "Papua New Guinea", "flag": "/files/flags/PG.png", "phone_prefix": "675", "alpha_2": "PG", "alpha_3": "PNG" }, { "id": 172, "name": "Paraguay", "flag": "/files/flags/PY.png", "phone_prefix": "595", "alpha_2": "PY", "alpha_3": "PRY" }, { "id": 173, "name": "Peru", "flag": "/files/flags/PE.png", "phone_prefix": "51", "alpha_2": "PE", "alpha_3": "PER" }, { "id": 174, "name": "Philippines", "flag": "/files/flags/PH.png", "phone_prefix": "63", "alpha_2": "PH", "alpha_3": "PHL" }, { "id": 175, "name": "Pitcairn", "flag": "/files/flags/PN.png", "phone_prefix": "64", "alpha_2": "PN", "alpha_3": "PCN" }, { "id": 176, "name": "Poland", "flag": "/files/flags/PL.png", "phone_prefix": "48", "alpha_2": "PL", "alpha_3": "POL" }, { "id": 177, "name": "Portugal", "flag": "/files/flags/PT.png", "phone_prefix": "351", "alpha_2": "PT", "alpha_3": "PRT" }, { "id": 178, "name": "Puerto Rico", "flag": "/files/flags/PR.png", "phone_prefix": "1", "alpha_2": "PR", "alpha_3": "PRI" }, { "id": 179, "name": "Qatar", "flag": "/files/flags/QA.png", "phone_prefix": "974", "alpha_2": "QA", "alpha_3": "QAT" }, { "id": 180, "name": "Republic of North Macedonia", "flag": "/files/flags/MK.png", "phone_prefix": "236", "alpha_2": "MK", "alpha_3": "MKD" }, { "id": 184, "name": "Réunion", "flag": "/files/flags/RE.png", "phone_prefix": "262", "alpha_2": "RE", "alpha_3": "REU" }, { "id": 181, "name": "Romania", "flag": "/files/flags/RO.png", "phone_prefix": "40", "alpha_2": "RO", "alpha_3": "ROU" }, { "id": 182, "name": "Russian Federation", "flag": "/files/flags/RU.png", "phone_prefix": "7", "alpha_2": "RU", "alpha_3": "RUS" }, { "id": 183, "name": "Rwanda", "flag": "/files/flags/RW.png", "phone_prefix": "250", "alpha_2": "RW", "alpha_3": "RWA" }, { "id": 185, "name": "Saint Barthélemy", "flag": "/files/flags/BL.png", "phone_prefix": "590", "alpha_2": "BL", "alpha_3": "BLM" }, { "id": 186, "name": "Saint Helena, Ascension and Tristan da Cunha", "flag": "/files/flags/SH.png", "phone_prefix": "590", "alpha_2": "SH", "alpha_3": "SHN" }, { "id": 187, "name": "Saint Kitts and Nevis", "flag": "/files/flags/KN.png", "phone_prefix": "1", "alpha_2": "KN", "alpha_3": "KNA" }, { "id": 188, "name": "Saint Lucia", "flag": "/files/flags/LC.png", "phone_prefix": "1", "alpha_2": "LC", "alpha_3": "LCA" }, { "id": 189, "name": "Saint Martin", "flag": "/files/flags/MF.png", "phone_prefix": "590", "alpha_2": "MF", "alpha_3": "MAF" }, { "id": 190, "name": "Saint Pierre and Miquelon", "flag": "/files/flags/PM.png", "phone_prefix": "508", "alpha_2": "PM", "alpha_3": "SPM" }, { "id": 191, "name": "Saint Vincent and the Grenadines", "flag": "/files/flags/VC.png", "phone_prefix": "1", "alpha_2": "VC", "alpha_3": "VCT" }, { "id": 192, "name": "Samoa", "flag": "/files/flags/WS.png", "phone_prefix": "685", "alpha_2": "WS", "alpha_3": "WSM" }, { "id": 193, "name": "San Marino", "flag": "/files/flags/SM.png", "phone_prefix": "378", "alpha_2": "SM", "alpha_3": "SMR" }, { "id": 194, "name": "Sao Tome and Principe", "flag": "/files/flags/ST.png", "phone_prefix": "239", "alpha_2": "ST", "alpha_3": "STP" }, { "id": 195, "name": "Saudi Arabia", "flag": "/files/flags/SA.png", "phone_prefix": "966", "alpha_2": "SA", "alpha_3": "SAU" }, { "id": 196, "name": "Senegal", "flag": "/files/flags/SN.png", "phone_prefix": "221", "alpha_2": "SN", "alpha_3": "SEN" }, { "id": 197, "name": "Serbia", "flag": "/files/flags/RS.png", "phone_prefix": "381", "alpha_2": "RS", "alpha_3": "SRB" }, { "id": 198, "name": "Seychelles", "flag": "/files/flags/SC.png", "phone_prefix": "248", "alpha_2": "SC", "alpha_3": "SYC" }, { "id": 199, "name": "Sierra Leone", "flag": "/files/flags/SL.png", "phone_prefix": "232", "alpha_2": "SL", "alpha_3": "SLE" }, { "id": 200, "name": "Singapore", "flag": "/files/flags/SG.png", "phone_prefix": "65", "alpha_2": "SG", "alpha_3": "SGP" }, { "id": 201, "name": "Sint Maarten", "flag": "/files/flags/SX.png", "phone_prefix": "1", "alpha_2": "SX", "alpha_3": "SXM" }, { "id": 202, "name": "Slovakia", "flag": "/files/flags/SK.png", "phone_prefix": "421", "alpha_2": "SK", "alpha_3": "SVK" }, { "id": 203, "name": "Slovenia", "flag": "/files/flags/SI.png", "phone_prefix": "386", "alpha_2": "SI", "alpha_3": "SVN" }, { "id": 204, "name": "Solomon Islands", "flag": "/files/flags/SB.png", "phone_prefix": "677", "alpha_2": "SB", "alpha_3": "SLB" }, { "id": 205, "name": "Somalia", "flag": "/files/flags/SO.png", "phone_prefix": "252", "alpha_2": "SO", "alpha_3": "SOM" }, { "id": 206, "name": "South Africa", "flag": "/files/flags/ZA.png", "phone_prefix": "27", "alpha_2": "ZA", "alpha_3": "ZAF" }, { "id": 207, "name": "South Georgia and the South Sandwich Islands", "flag": "/files/flags/GS.png", "phone_prefix": "27", "alpha_2": "GS", "alpha_3": "SGS" }, { "id": 119, "name": "South Korea", "flag": "/files/flags/KR.png", "phone_prefix": "82", "alpha_2": "KR", "alpha_3": "KOR" }, { "id": 208, "name": "South Sudan", "flag": "/files/flags/SS.png", "phone_prefix": "211", "alpha_2": "SS", "alpha_3": "SSD" }, { "id": 209, "name": "Spain", "flag": "/files/flags/ES.png", "phone_prefix": "34", "alpha_2": "ES", "alpha_3": "ESP" }, { "id": 210, "name": "Sri Lanka", "flag": "/files/flags/LK.png", "phone_prefix": "94", "alpha_2": "LK", "alpha_3": "LKA" }, { "id": 211, "name": "Sudan", "flag": "/files/flags/SD.png", "phone_prefix": "249", "alpha_2": "SD", "alpha_3": "SDN" }, { "id": 212, "name": "Suriname", "flag": "/files/flags/SR.png", "phone_prefix": "597", "alpha_2": "SR", "alpha_3": "SUR" }, { "id": 213, "name": "Svalbard and Jan Mayen", "flag": "/files/flags/SJ.png", "phone_prefix": "47", "alpha_2": "SJ", "alpha_3": "SJM" }, { "id": 214, "name": "Sweden", "flag": "/files/flags/SE.png", "phone_prefix": "46", "alpha_2": "SE", "alpha_3": "SWE" }, { "id": 215, "name": "Switzerland", "flag": "/files/flags/CH.png", "phone_prefix": "41", "alpha_2": "CH", "alpha_3": "CHE" }, { "id": 216, "name": "Syrian Arab Republic", "flag": "/files/flags/SY.png", "phone_prefix": "963", "alpha_2": "SY", "alpha_3": "SYR" }, { "id": 217, "name": "Taiwan", "flag": "/files/flags/TW.png", "phone_prefix": "886", "alpha_2": "TW", "alpha_3": "TWN" }, { "id": 218, "name": "Tajikistan", "flag": "/files/flags/TJ.png", "phone_prefix": "992", "alpha_2": "TJ", "alpha_3": "TJK" }, { "id": 219, "name": "Tanzania", "flag": "/files/flags/TZ.png", "phone_prefix": "255", "alpha_2": "TZ", "alpha_3": "TZA" }, { "id": 220, "name": "Thailand", "flag": "/files/flags/TH.png", "phone_prefix": "66", "alpha_2": "TH", "alpha_3": "THA" }, { "id": 221, "name": "Timor-Leste", "flag": "/files/flags/TL.png", "phone_prefix": "670", "alpha_2": "TL", "alpha_3": "TLS" }, { "id": 222, "name": "Togo", "flag": "/files/flags/TG.png", "phone_prefix": "228", "alpha_2": "TG", "alpha_3": "TGO" }, { "id": 223, "name": "Tokelau", "flag": "/files/flags/TK.png", "phone_prefix": "690", "alpha_2": "TK", "alpha_3": "TKL" }, { "id": 224, "name": "Tonga", "flag": "/files/flags/TO.png", "phone_prefix": "676", "alpha_2": "TO", "alpha_3": "TON" }, { "id": 225, "name": "Trinidad and Tobago", "flag": "/files/flags/TT.png", "phone_prefix": "1", "alpha_2": "TT", "alpha_3": "TTO" }, { "id": 226, "name": "Tunisia", "flag": "/files/flags/TN.png", "phone_prefix": "216", "alpha_2": "TN", "alpha_3": "TUN" }, { "id": 227, "name": "Turkey", "flag": "/files/flags/TR.png", "phone_prefix": "90", "alpha_2": "TR", "alpha_3": "TUR" }, { "id": 228, "name": "Turkmenistan", "flag": "/files/flags/TM.png", "phone_prefix": "993", "alpha_2": "TM", "alpha_3": "TKM" }, { "id": 229, "name": "Turks and Caicos Islands", "flag": "/files/flags/TC.png", "phone_prefix": "1", "alpha_2": "TC", "alpha_3": "TCA" }, { "id": 230, "name": "Tuvalu", "flag": "/files/flags/TV.png", "phone_prefix": "688", "alpha_2": "TV", "alpha_3": "TUV" }, { "id": 231, "name": "Uganda", "flag": "/files/flags/UG.png", "phone_prefix": "256", "alpha_2": "UG", "alpha_3": "UGA" }, { "id": 232, "name": "Ukraine", "flag": "/files/flags/UA.png", "phone_prefix": "380", "alpha_2": "UA", "alpha_3": "UKR" }, { "id": 233, "name": "United Arab Emirates", "flag": "/files/flags/AE.png", "phone_prefix": "971", "alpha_2": "AE", "alpha_3": "ARE" }, { "id": 234, "name": "United Kingdom", "flag": "/files/flags/GB.png", "phone_prefix": "44", "alpha_2": "GB", "alpha_3": "GBR" }, { "id": 236, "name": "United States", "flag": "/files/flags/US.png", "phone_prefix": "1", "alpha_2": "US", "alpha_3": "USA" }, { "id": 235, "name": "United States Minor Outlying Islands", "flag": "/files/flags/UM.png", "phone_prefix": "971", "alpha_2": "UM", "alpha_3": "UMI" }, { "id": 237, "name": "Uruguay", "flag": "/files/flags/UY.png", "phone_prefix": "598", "alpha_2": "UY", "alpha_3": "URY" }, { "id": 238, "name": "Uzbekistan", "flag": "/files/flags/UZ.png", "phone_prefix": "998", "alpha_2": "UZ", "alpha_3": "UZB" }, { "id": 239, "name": "Vanuatu", "flag": "/files/flags/VU.png", "phone_prefix": "678", "alpha_2": "VU", "alpha_3": "VUT" }, { "id": 240, "name": "Venezuela", "flag": "/files/flags/VE.png", "phone_prefix": "58", "alpha_2": "VE", "alpha_3": "VEN" }, { "id": 241, "name": "Viet Nam", "flag": "/files/flags/VN.png", "phone_prefix": "84", "alpha_2": "VN", "alpha_3": "VNM" }, { "id": 242, "name": "Virgin Islands (UK)", "flag": "/files/flags/VG.png", "phone_prefix": "1", "alpha_2": "VG", "alpha_3": "VGB" }, { "id": 243, "name": "Virgin Islands (US)", "flag": "/files/flags/VI.png", "phone_prefix": "1", "alpha_2": "VI", "alpha_3": "VIR" }, { "id": 244, "name": "Wallis and Futuna", "flag": "/files/flags/WF.png", "phone_prefix": "681", "alpha_2": "WF", "alpha_3": "WLF" }, { "id": 245, "name": "Western Sahara", "flag": "/files/flags/EH.png", "phone_prefix": "212", "alpha_2": "EH", "alpha_3": "ESH" }, { "id": 246, "name": "Yemen", "flag": "/files/flags/YE.png", "phone_prefix": "967", "alpha_2": "YE", "alpha_3": "YEM" }, { "id": 247, "name": "Zambia", "flag": "/files/flags/ZM.png", "phone_prefix": "260", "alpha_2": "ZM", "alpha_3": "ZMB" }, { "id": 248, "name": "Zimbabwe", "flag": "/files/flags/ZW.png", "phone_prefix": "263", "alpha_2": "ZW", "alpha_3": "ZWE" } ] }
get
/api/v1/static/list-document-types
Get a list of acceptable document types.
Send token as "Authorization" in your request header.
{ "id": 36, "success": true, "message": "", "value": [ { "mandatory": true, "order": 1, "title": "Passport" }, { "mandatory": false, "order": 2, "title": "National ID" }, { "mandatory": false, "order": 3, "title": "Residence Permit" }, { "mandatory": false, "order": 4, "title": "Driver License" }, { "mandatory": false, "order": 5, "title": "Bank Statement" }, { "mandatory": false, "order": 6, "title": "Birth Certificate" } ] }
get
/api/v1/static/get-commissions
Get a list of service commissions.
?view=true
{ "id": 84, "success": true, "message": "", "value": [ { "transaction_type": 206, "commission_type": 2, "amount": 1.0 } ] }
get
/api/v1/static/get-withdraw-types
Get a list of available withdraw types.
Send token as "Authorization" in your request header.
{ "id": 90, "success": true, "message": "", "value": [ { "order": 1, "title": "Domestic Wires" }, { "order": 2, "title": "Wire Transfer" }, { "order": 3, "title": "E-Wallet" }, { "order": 4, "title": "Cash" } ] }
get
/api/v1/static/get-escrow-types
Get a list of allowed escrow types.
Send token as "Authorization" in your request header.
{ "id": 98, "success": true, "message": "", "value": [ { "order": 1, "title": "Domain Name" }, { "order": 2, "title": "General Merchandise" }, { "order": 3, "title": "Motor Vehicle" } ] }
get
/api/v1/static/get-shipping-methods
Get a list of available shipping methods.
Send token as "Authorization" in your request header.
{ "id": 100, "success": true, "message": "", "value": [ { "order": 1, "title": "Standard Shipping" }, { "order": 2, "title": "Cargo Shipping" }, { "order": 3, "title": "No Shipping" } ] }
get
/api/v1/static/swift-countries
Get a list of swift countries.
Send token as "Authorization" in your request header.
{ "id": 105, "success": true, "message": "", "value": [ { "id": 422, "Country": "Afghanistan", "Country_Code": "AF", "Details": null, "Status": "Enabled" }, { "id": 425, "Country": "Albania", "Country_Code": "AL", "Details": null, "Status": "Enabled" }, { "id": 475, "Country": "Algeria", "Country_Code": "DZ", "Details": null, "Status": "Enabled" }, { "id": 429, "Country": "American Samoa", "Country_Code": "AS", "Details": null, "Status": "Enabled" }, { "id": 420, "Country": "Andorra", "Country_Code": "AD", "Details": null, "Status": "Enabled" }, { "id": 427, "Country": "Angola", "Country_Code": "AO", "Details": null, "Status": "Enabled" }, { "id": 424, "Country": "Anguilla", "Country_Code": "AI", "Details": null, "Status": "Enabled" }, { "id": 423, "Country": "Antigua and Barbuda", "Country_Code": "AG", "Details": null, "Status": "Enabled" }, { "id": 428, "Country": "Argentina", "Country_Code": "AR", "Details": null, "Status": "Enabled" }, { "id": 426, "Country": "Armenia", "Country_Code": "AM", "Details": null, "Status": "Enabled" }, { "id": 432, "Country": "Aruba", "Country_Code": "AW", "Details": null, "Status": "Enabled" }, { "id": 431, "Country": "Australia", "Country_Code": "AU", "Details": null, "Status": "Enabled" }, { "id": 430, "Country": "Austria", "Country_Code": "AT", "Details": null, "Status": "Enabled" }, { "id": 433, "Country": "Azerbaijan", "Country_Code": "AZ", "Details": null, "Status": "Enabled" }, { "id": 448, "Country": "Bahamas", "Country_Code": "BS", "Details": null, "Status": "Enabled" }, { "id": 440, "Country": "Bahrain", "Country_Code": "BH", "Details": null, "Status": "Enabled" }, { "id": 436, "Country": "Bangladesh", "Country_Code": "BD", "Details": null, "Status": "Enabled" }, { "id": 435, "Country": "Barbados", "Country_Code": "BB", "Details": null, "Status": "Enabled" }, { "id": 451, "Country": "Belarus", "Country_Code": "BY", "Details": null, "Status": "Enabled" }, { "id": 437, "Country": "Belgium", "Country_Code": "BE", "Details": null, "Status": "Enabled" }, { "id": 452, "Country": "Belize", "Country_Code": "BZ", "Details": null, "Status": "Enabled" }, { "id": 442, "Country": "Benin", "Country_Code": "BJ", "Details": null, "Status": "Enabled" }, { "id": 443, "Country": "Bermuda", "Country_Code": "BM", "Details": null, "Status": "Enabled" }, { "id": 449, "Country": "Bhutan", "Country_Code": "BT", "Details": null, "Status": "Enabled" }, { "id": 445, "Country": "Bolivia", "Country_Code": "BO", "Details": null, "Status": "Enabled" }, { "id": 446, "Country": "Bonaire", "Country_Code": "BQ", "Details": null, "Status": "Enabled" }, { "id": 434, "Country": "Bosnia and Herzegovina", "Country_Code": "BA", "Details": null, "Status": "Enabled" }, { "id": 450, "Country": "Botswana", "Country_Code": "BW", "Details": null, "Status": "Enabled" }, { "id": 447, "Country": "Brazil", "Country_Code": "BR", "Details": null, "Status": "Enabled" }, { "id": 444, "Country": "Brunei", "Country_Code": "BN", "Details": null, "Status": "Enabled" }, { "id": 439, "Country": "Bulgaria", "Country_Code": "BG", "Details": null, "Status": "Enabled" }, { "id": 438, "Country": "Burkina Faso", "Country_Code": "BF", "Details": null, "Status": "Enabled" }, { "id": 441, "Country": "Burundi", "Country_Code": "BI", "Details": null, "Status": "Enabled" }, { "id": 526, "Country": "Cambodia", "Country_Code": "KH", "Details": null, "Status": "Enabled" }, { "id": 461, "Country": "Cameroon", "Country_Code": "CM", "Details": null, "Status": "Enabled" }, { "id": 453, "Country": "Canada", "Country_Code": "CA", "Details": null, "Status": "Enabled" }, { "id": 466, "Country": "Cape Verde", "Country_Code": "CV", "Details": null, "Status": "Enabled" }, { "id": 533, "Country": "Cayman Islands", "Country_Code": "KY", "Details": null, "Status": "Enabled" }, { "id": 455, "Country": "Central African Republic", "Country_Code": "CF", "Details": null, "Status": "Enabled" }, { "id": 619, "Country": "Chad", "Country_Code": "TD", "Details": null, "Status": "Enabled" }, { "id": 460, "Country": "Chile", "Country_Code": "CL", "Details": null, "Status": "Enabled" }, { "id": 462, "Country": "China", "Country_Code": "CN", "Details": null, "Status": "Enabled" }, { "id": 463, "Country": "Colombia", "Country_Code": "CO", "Details": null, "Status": "Enabled" }, { "id": 528, "Country": "Comoros", "Country_Code": "KM", "Details": null, "Status": "Enabled" }, { "id": 454, "Country": "Congo, Democratic Republic", "Country_Code": "CD", "Details": null, "Status": "Enabled" }, { "id": 456, "Country": "Congo, Republic", "Country_Code": "CG", "Details": null, "Status": "Enabled" }, { "id": 459, "Country": "Cook Islands", "Country_Code": "CK", "Details": null, "Status": "Enabled" }, { "id": 464, "Country": "Costa Rica", "Country_Code": "CR", "Details": null, "Status": "Enabled" }, { "id": 458, "Country": "Côte d’Ivoire", "Country_Code": "CI", "Details": null, "Status": "Enabled" }, { "id": 508, "Country": "Croatia", "Country_Code": "HR", "Details": null, "Status": "Enabled" }, { "id": 465, "Country": "Cuba", "Country_Code": "CU", "Details": null, "Status": "Enabled" }, { "id": 467, "Country": "Curaçao", "Country_Code": "CW", "Details": null, "Status": "Enabled" }, { "id": 468, "Country": "Cyprus", "Country_Code": "CY", "Details": null, "Status": "Enabled" }, { "id": 469, "Country": "Czech Republic", "Country_Code": "CZ", "Details": null, "Status": "Enabled" }, { "id": 472, "Country": "Denmark", "Country_Code": "DK", "Details": null, "Status": "Enabled" }, { "id": 471, "Country": "Djibouti", "Country_Code": "DJ", "Details": null, "Status": "Enabled" }, { "id": 473, "Country": "Dominica", "Country_Code": "DM", "Details": null, "Status": "Enabled" }, { "id": 474, "Country": "Dominican Republic", "Country_Code": "DO", "Details": null, "Status": "Enabled" }, { "id": 476, "Country": "Ecuador", "Country_Code": "EC", "Details": null, "Status": "Enabled" }, { "id": 478, "Country": "Egypt", "Country_Code": "EG", "Details": null, "Status": "Enabled" }, { "id": 614, "Country": "El Salvador", "Country_Code": "SV", "Details": null, "Status": "Enabled" }, { "id": 500, "Country": "Equatorial Guinea", "Country_Code": "GQ", "Details": null, "Status": "Enabled" }, { "id": 479, "Country": "Eritrea", "Country_Code": "ER", "Details": null, "Status": "Enabled" }, { "id": 477, "Country": "Estonia", "Country_Code": "EE", "Details": null, "Status": "Enabled" }, { "id": 481, "Country": "Ethiopia", "Country_Code": "ET", "Details": null, "Status": "Enabled" }, { "id": 484, "Country": "Falkland Islands", "Country_Code": "FK", "Details": null, "Status": "Enabled" }, { "id": 486, "Country": "Faroe Islands", "Country_Code": "FO", "Details": null, "Status": "Enabled" }, { "id": 483, "Country": "Fiji", "Country_Code": "FJ", "Details": null, "Status": "Enabled" }, { "id": 482, "Country": "Finland", "Country_Code": "FI", "Details": null, "Status": "Enabled" }, { "id": 487, "Country": "France", "Country_Code": "FR", "Details": null, "Status": "Enabled" }, { "id": 492, "Country": "French Guiana", "Country_Code": "GF", "Details": null, "Status": "Enabled" }, { "id": 581, "Country": "French Polynesia", "Country_Code": "PF", "Details": null, "Status": "Enabled" }, { "id": 488, "Country": "Gabon", "Country_Code": "GA", "Details": null, "Status": "Enabled" }, { "id": 497, "Country": "Gambia", "Country_Code": "GM", "Details": null, "Status": "Enabled" }, { "id": 491, "Country": "Georgia", "Country_Code": "GE", "Details": null, "Status": "Enabled" }, { "id": 470, "Country": "Germany", "Country_Code": "DE", "Details": null, "Status": "Enabled" }, { "id": 494, "Country": "Ghana", "Country_Code": "GH", "Details": null, "Status": "Enabled" }, { "id": 495, "Country": "Gibraltar", "Country_Code": "GI", "Details": null, "Status": "Enabled" }, { "id": 501, "Country": "Greece", "Country_Code": "GR", "Details": null, "Status": "Enabled" }, { "id": 496, "Country": "Greenland", "Country_Code": "GL", "Details": null, "Status": "Enabled" }, { "id": 490, "Country": "Grenada", "Country_Code": "GD", "Details": null, "Status": "Enabled" }, { "id": 499, "Country": "Guadeloupe", "Country_Code": "GP", "Details": null, "Status": "Enabled" }, { "id": 503, "Country": "Guam", "Country_Code": "GU", "Details": null, "Status": "Enabled" }, { "id": 502, "Country": "Guatemala", "Country_Code": "GT", "Details": null, "Status": "Enabled" }, { "id": 493, "Country": "Guernsey", "Country_Code": "GG", "Details": null, "Status": "Enabled" }, { "id": 498, "Country": "Guinea", "Country_Code": "GN", "Details": null, "Status": "Enabled" }, { "id": 504, "Country": "Guinea Bissau", "Country_Code": "GW", "Details": null, "Status": "Enabled" }, { "id": 505, "Country": "Guyana", "Country_Code": "GY", "Details": null, "Status": "Enabled" }, { "id": 509, "Country": "Haiti", "Country_Code": "HT", "Details": null, "Status": "Enabled" }, { "id": 507, "Country": "Honduras", "Country_Code": "HN", "Details": null, "Status": "Enabled" }, { "id": 506, "Country": "Hong Kong", "Country_Code": "HK", "Details": null, "Status": "Enabled" }, { "id": 510, "Country": "Hungary", "Country_Code": "HU", "Details": null, "Status": "Enabled" }, { "id": 518, "Country": "Iceland", "Country_Code": "IS", "Details": null, "Status": "Enabled" }, { "id": 515, "Country": "India", "Country_Code": "IN", "Details": null, "Status": "Enabled" }, { "id": 511, "Country": "Indonesia", "Country_Code": "ID", "Details": null, "Status": "Enabled" }, { "id": 517, "Country": "Iran", "Country_Code": "IR", "Details": null, "Status": "Enabled" }, { "id": 516, "Country": "Iraq", "Country_Code": "IQ", "Details": null, "Status": "Enabled" }, { "id": 512, "Country": "Ireland", "Country_Code": "IE", "Details": null, "Status": "Enabled" }, { "id": 514, "Country": "Isle of Man", "Country_Code": "IM", "Details": null, "Status": "Enabled" }, { "id": 513, "Country": "Israel", "Country_Code": "IL", "Details": null, "Status": "Enabled" }, { "id": 519, "Country": "Italy", "Country_Code": "IT", "Details": null, "Status": "Enabled" }, { "id": 521, "Country": "Jamaica", "Country_Code": "JM", "Details": null, "Status": "Enabled" }, { "id": 523, "Country": "Japan", "Country_Code": "JP", "Details": null, "Status": "Enabled" }, { "id": 520, "Country": "Jersey", "Country_Code": "JE", "Details": null, "Status": "Enabled" }, { "id": 522, "Country": "Jordan", "Country_Code": "JO", "Details": null, "Status": "Enabled" }, { "id": 534, "Country": "Kazakhstan", "Country_Code": "KZ", "Details": null, "Status": "Enabled" }, { "id": 524, "Country": "Kenya", "Country_Code": "KE", "Details": null, "Status": "Enabled" }, { "id": 527, "Country": "Kiribati", "Country_Code": "KI", "Details": null, "Status": "Enabled" }, { "id": 646, "Country": "Kosovo", "Country_Code": "XK", "Details": null, "Status": "Enabled" }, { "id": 532, "Country": "Kuwait", "Country_Code": "KW", "Details": null, "Status": "Enabled" }, { "id": 525, "Country": "Kyrgyzstan", "Country_Code": "KG", "Details": null, "Status": "Enabled" }, { "id": 535, "Country": "Laos", "Country_Code": "LA", "Details": null, "Status": "Enabled" }, { "id": 544, "Country": "Latvia", "Country_Code": "LV", "Details": null, "Status": "Enabled" }, { "id": 536, "Country": "Lebanon", "Country_Code": "LB", "Details": null, "Status": "Enabled" }, { "id": 541, "Country": "Lesotho", "Country_Code": "LS", "Details": null, "Status": "Enabled" }, { "id": 540, "Country": "Liberia", "Country_Code": "LR", "Details": null, "Status": "Enabled" }, { "id": 545, "Country": "Libya", "Country_Code": "LY", "Details": null, "Status": "Enabled" }, { "id": 538, "Country": "Liechtenstein", "Country_Code": "LI", "Details": null, "Status": "Enabled" }, { "id": 542, "Country": "Lithuania", "Country_Code": "LT", "Details": null, "Status": "Enabled" }, { "id": 543, "Country": "Luxembourg", "Country_Code": "LU", "Details": null, "Status": "Enabled" }, { "id": 556, "Country": "Macao", "Country_Code": "MO", "Details": null, "Status": "Enabled" }, { "id": 552, "Country": "Macedonia", "Country_Code": "MK", "Details": null, "Status": "Enabled" }, { "id": 550, "Country": "Madagascar", "Country_Code": "MG", "Details": null, "Status": "Enabled" }, { "id": 564, "Country": "Malawi", "Country_Code": "MW", "Details": null, "Status": "Enabled" }, { "id": 566, "Country": "Malaysia", "Country_Code": "MY", "Details": null, "Status": "Enabled" }, { "id": 563, "Country": "Maldives", "Country_Code": "MV", "Details": null, "Status": "Enabled" }, { "id": 553, "Country": "Mali", "Country_Code": "ML", "Details": null, "Status": "Enabled" }, { "id": 561, "Country": "Malta", "Country_Code": "MT", "Details": null, "Status": "Enabled" }, { "id": 551, "Country": "Marshall Islands", "Country_Code": "MH", "Details": null, "Status": "Enabled" }, { "id": 558, "Country": "Martinique", "Country_Code": "MQ", "Details": null, "Status": "Enabled" }, { "id": 559, "Country": "Mauritania", "Country_Code": "MR", "Details": null, "Status": "Enabled" }, { "id": 562, "Country": "Mauritius", "Country_Code": "MU", "Details": null, "Status": "Enabled" }, { "id": 648, "Country": "Mayotte", "Country_Code": "YT", "Details": null, "Status": "Enabled" }, { "id": 565, "Country": "Mexico", "Country_Code": "MX", "Details": null, "Status": "Enabled" }, { "id": 485, "Country": "Micronesia", "Country_Code": "FM", "Details": null, "Status": "Enabled" }, { "id": 548, "Country": "Moldova", "Country_Code": "MD", "Details": null, "Status": "Enabled" }, { "id": 547, "Country": "Monaco", "Country_Code": "MC", "Details": null, "Status": "Enabled" }, { "id": 555, "Country": "Mongolia", "Country_Code": "MN", "Details": null, "Status": "Enabled" }, { "id": 549, "Country": "Montenegro", "Country_Code": "ME", "Details": null, "Status": "Enabled" }, { "id": 560, "Country": "Montserrat", "Country_Code": "MS", "Details": null, "Status": "Enabled" }, { "id": 546, "Country": "Morocco", "Country_Code": "MA", "Details": null, "Status": "Enabled" }, { "id": 567, "Country": "Mozambique", "Country_Code": "MZ", "Details": null, "Status": "Enabled" }, { "id": 554, "Country": "Myanmar", "Country_Code": "MM", "Details": null, "Status": "Enabled" }, { "id": 568, "Country": "Namibia", "Country_Code": "NA", "Details": null, "Status": "Enabled" }, { "id": 576, "Country": "Nauru", "Country_Code": "NR", "Details": null, "Status": "Enabled" }, { "id": 575, "Country": "Nepal", "Country_Code": "NP", "Details": null, "Status": "Enabled" }, { "id": 573, "Country": "Netherlands", "Country_Code": "NL", "Details": null, "Status": "Enabled" }, { "id": 569, "Country": "New Caledonia", "Country_Code": "NC", "Details": null, "Status": "Enabled" }, { "id": 577, "Country": "New Zealand", "Country_Code": "NZ", "Details": null, "Status": "Enabled" }, { "id": 572, "Country": "Nicaragua", "Country_Code": "NI", "Details": null, "Status": "Enabled" }, { "id": 570, "Country": "Niger", "Country_Code": "NE", "Details": null, "Status": "Enabled" }, { "id": 571, "Country": "Nigeria", "Country_Code": "NG", "Details": null, "Status": "Enabled" }, { "id": 530, "Country": "North Korea", "Country_Code": "KP", "Details": null, "Status": "Enabled" }, { "id": 557, "Country": "Northern Mariana Islands", "Country_Code": "MP", "Details": null, "Status": "Enabled" }, { "id": 574, "Country": "Norway", "Country_Code": "NO", "Details": null, "Status": "Enabled" }, { "id": 578, "Country": "Oman", "Country_Code": "OM", "Details": null, "Status": "Enabled" }, { "id": 584, "Country": "Pakistan", "Country_Code": "PK", "Details": null, "Status": "Enabled" }, { "id": 590, "Country": "Palau", "Country_Code": "PW", "Details": null, "Status": "Enabled" }, { "id": 588, "Country": "Palestine", "Country_Code": "PS", "Details": null, "Status": "Enabled" }, { "id": 579, "Country": "Panama", "Country_Code": "PA", "Details": null, "Status": "Enabled" }, { "id": 582, "Country": "Papua New Guinea", "Country_Code": "PG", "Details": null, "Status": "Enabled" }, { "id": 591, "Country": "Paraguay", "Country_Code": "PY", "Details": null, "Status": "Enabled" }, { "id": 580, "Country": "Peru", "Country_Code": "PE", "Details": null, "Status": "Enabled" }, { "id": 583, "Country": "Philippines", "Country_Code": "PH", "Details": null, "Status": "Enabled" }, { "id": 585, "Country": "Poland", "Country_Code": "PL", "Details": null, "Status": "Enabled" }, { "id": 589, "Country": "Portugal", "Country_Code": "PT", "Details": null, "Status": "Enabled" }, { "id": 587, "Country": "Puerto Rico", "Country_Code": "PR", "Details": null, "Status": "Enabled" }, { "id": 592, "Country": "Qatar", "Country_Code": "QA", "Details": null, "Status": "Enabled" }, { "id": 593, "Country": "Réunion", "Country_Code": "RE", "Details": null, "Status": "Enabled" }, { "id": 594, "Country": "Romania", "Country_Code": "RO", "Details": null, "Status": "Enabled" }, { "id": 596, "Country": "Russia", "Country_Code": "RU", "Details": null, "Status": "Enabled" }, { "id": 597, "Country": "Rwanda", "Country_Code": "RW", "Details": null, "Status": "Enabled" }, { "id": 604, "Country": "Saint Helena", "Country_Code": "SH", "Details": null, "Status": "Enabled" }, { "id": 529, "Country": "Saint Kitts and Nevis", "Country_Code": "KN", "Details": null, "Status": "Enabled" }, { "id": 537, "Country": "Saint Lucia", "Country_Code": "LC", "Details": null, "Status": "Enabled" }, { "id": 586, "Country": "Saint Pierre and Miquelon", "Country_Code": "PM", "Details": null, "Status": "Enabled" }, { "id": 645, "Country": "Samoa", "Country_Code": "WS", "Details": null, "Status": "Enabled" }, { "id": 608, "Country": "San Marino", "Country_Code": "SM", "Details": null, "Status": "Enabled" }, { "id": 613, "Country": "São Tomé and Príncipe", "Country_Code": "ST", "Details": null, "Status": "Enabled" }, { "id": 598, "Country": "Saudi Arabia", "Country_Code": "SA", "Details": null, "Status": "Enabled" }, { "id": 609, "Country": "Senegal", "Country_Code": "SN", "Details": null, "Status": "Enabled" }, { "id": 595, "Country": "Serbia", "Country_Code": "RS", "Details": null, "Status": "Enabled" }, { "id": 600, "Country": "Seychelles", "Country_Code": "SC", "Details": null, "Status": "Enabled" }, { "id": 607, "Country": "Sierra Leone", "Country_Code": "SL", "Details": null, "Status": "Enabled" }, { "id": 603, "Country": "Singapore", "Country_Code": "SG", "Details": null, "Status": "Enabled" }, { "id": 615, "Country": "Sint Maarten", "Country_Code": "SX", "Details": null, "Status": "Enabled" }, { "id": 606, "Country": "Slovakia", "Country_Code": "SK", "Details": null, "Status": "Enabled" }, { "id": 605, "Country": "Slovenia", "Country_Code": "SI", "Details": null, "Status": "Enabled" }, { "id": 599, "Country": "Solomon Islands", "Country_Code": "SB", "Details": null, "Status": "Enabled" }, { "id": 610, "Country": "Somalia", "Country_Code": "SO", "Details": null, "Status": "Enabled" }, { "id": 649, "Country": "South Africa", "Country_Code": "ZA", "Details": null, "Status": "Enabled" }, { "id": 531, "Country": "South Korea", "Country_Code": "KR", "Details": null, "Status": "Enabled" }, { "id": 612, "Country": "South Sudan", "Country_Code": "SS", "Details": null, "Status": "Enabled" }, { "id": 480, "Country": "Spain", "Country_Code": "ES", "Details": null, "Status": "Enabled" }, { "id": 539, "Country": "Sri Lanka", "Country_Code": "LK", "Details": null, "Status": "Enabled" }, { "id": 638, "Country": "St Vincent and Grenadines", "Country_Code": "VC", "Details": null, "Status": "Enabled" }, { "id": 601, "Country": "Sudan", "Country_Code": "SD", "Details": null, "Status": "Enabled" }, { "id": 611, "Country": "Suriname", "Country_Code": "SR", "Details": null, "Status": "Enabled" }, { "id": 617, "Country": "Swaziland", "Country_Code": "SZ", "Details": null, "Status": "Enabled" }, { "id": 602, "Country": "Sweden", "Country_Code": "SE", "Details": null, "Status": "Enabled" }, { "id": 457, "Country": "Switzerland", "Country_Code": "CH", "Details": null, "Status": "Enabled" }, { "id": 616, "Country": "Syria", "Country_Code": "SY", "Details": null, "Status": "Enabled" }, { "id": 630, "Country": "Taiwan", "Country_Code": "TW", "Details": null, "Status": "Enabled" }, { "id": 622, "Country": "Tajikistan", "Country_Code": "TJ", "Details": null, "Status": "Enabled" }, { "id": 631, "Country": "Tanzania", "Country_Code": "TZ", "Details": null, "Status": "Enabled" }, { "id": 621, "Country": "Thailand", "Country_Code": "TH", "Details": null, "Status": "Enabled" }, { "id": 623, "Country": "Timor Leste", "Country_Code": "TL", "Details": null, "Status": "Enabled" }, { "id": 620, "Country": "Togo", "Country_Code": "TG", "Details": null, "Status": "Enabled" }, { "id": 626, "Country": "Tonga", "Country_Code": "TO", "Details": null, "Status": "Enabled" }, { "id": 628, "Country": "Trinidad and Tobago", "Country_Code": "TT", "Details": null, "Status": "Enabled" }, { "id": 625, "Country": "Tunisia", "Country_Code": "TN", "Details": null, "Status": "Enabled" }, { "id": 627, "Country": "Turkey", "Country_Code": "TR", "Details": null, "Status": "Enabled" }, { "id": 624, "Country": "Turkmenistan", "Country_Code": "TM", "Details": null, "Status": "Enabled" }, { "id": 618, "Country": "Turks and Caicos Islands", "Country_Code": "TC", "Details": null, "Status": "Enabled" }, { "id": 629, "Country": "Tuvalu", "Country_Code": "TV", "Details": null, "Status": "Enabled" }, { "id": 633, "Country": "Uganda", "Country_Code": "UG", "Details": null, "Status": "Enabled" }, { "id": 632, "Country": "Ukraine", "Country_Code": "UA", "Details": null, "Status": "Enabled" }, { "id": 421, "Country": "United Arab Emirates", "Country_Code": "AE", "Details": null, "Status": "Enabled" }, { "id": 489, "Country": "United Kingdom", "Country_Code": "GB", "Details": null, "Status": "Enabled" }, { "id": 634, "Country": "United States", "Country_Code": "US", "Details": null, "Status": "Enabled" }, { "id": 635, "Country": "Uruguay", "Country_Code": "UY", "Details": null, "Status": "Enabled" }, { "id": 636, "Country": "Uzbekistan", "Country_Code": "UZ", "Details": null, "Status": "Enabled" }, { "id": 643, "Country": "Vanuatu", "Country_Code": "VU", "Details": null, "Status": "Enabled" }, { "id": 637, "Country": "Vatican City", "Country_Code": "VA", "Details": null, "Status": "Enabled" }, { "id": 639, "Country": "Venezuela", "Country_Code": "VE", "Details": null, "Status": "Enabled" }, { "id": 642, "Country": "Vietnam", "Country_Code": "VN", "Details": null, "Status": "Enabled" }, { "id": 640, "Country": "Virgin Islands (UK)", "Country_Code": "VG", "Details": null, "Status": "Enabled" }, { "id": 641, "Country": "Virgin Islands (US)", "Country_Code": "VI", "Details": null, "Status": "Enabled" }, { "id": 644, "Country": "Wallis and Futuna Islands", "Country_Code": "WF", "Details": null, "Status": "Enabled" }, { "id": 647, "Country": "Yemen", "Country_Code": "YE", "Details": null, "Status": "Enabled" }, { "id": 650, "Country": "Zambia", "Country_Code": "ZM", "Details": null, "Status": "Enabled" }, { "id": 651, "Country": "Zimbabwe", "Country_Code": "ZW", "Details": null, "Status": "Enabled" } ] }
get
/api/v1/static/search-banks
Get a list of banks from a specific country.
Send token as "Authorization" in your request header.
?swift_country_id=420&query=bank
{ "id": 106, "success": true, "message": "", "value": [ { "id": 20, "bank": "AGRICULTURAL BANK OF CHINA(DUBAI BRANCH)", "city": "DUBAI", "branch": null, "swift_code": "ABOCAEAA", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 25, "bank": "AL AHLI BANK OF KUWAIT K.S.C.P, DUBAI BRANCH", "city": "DUBAI", "branch": null, "swift_code": "ABKKAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 46, "bank": "APEX FUND SERVICES (DUBAI) LTD", "city": "DUBAI", "branch": null, "swift_code": "APFSAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 80, "bank": "BANK ALFALAH LIMITED (DUBAI BRANCH)", "city": "DUBAI", "branch": null, "swift_code": "ALFHAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 96, "bank": "BANK OF CHINA (DUBAI) BRANCH", "city": "DUBAI", "branch": null, "swift_code": "BKCHAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 103, "bank": "BANKMED SAL (DUBAI)", "city": "DUBAI", "branch": null, "swift_code": "MEDLAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 116, "bank": "BNP PARIBAS, DUBAI", "city": "DUBAI", "branch": null, "swift_code": "BNPAAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 124, "bank": "CIMD (DUBAI) LIMITED", "city": "DUBAI", "branch": null, "swift_code": "CIDAAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 141, "bank": "COMMERCIAL BANK OF DUBAI", "city": "ABU DHABI", "branch": "(ABU DHABI BRANCH)", "swift_code": "CBDUAEADADH", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 142, "bank": "COMMERCIAL BANK OF DUBAI", "city": "AJMAN", "branch": null, "swift_code": "CBDUAEADAJM", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 143, "bank": "COMMERCIAL BANK OF DUBAI", "city": "AL AIN", "branch": null, "swift_code": "CBDUAEADAIN", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 144, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(AL GARHOUD BRANCH)", "swift_code": "CBDUAEADGAR", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 145, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(AL MAKTOUM ST. BRANCH)", "swift_code": "CBDUAEADAMS", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 146, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(AL SAFA BRANCH)", "swift_code": "CBDUAEADSAF", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 147, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(DEIRA BRANCH)", "swift_code": "CBDUAEADDER", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 148, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(DUBAI BRANCH)", "swift_code": "CBDUAEADDXB", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 149, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(JEBEL ALI BRANCH)", "swift_code": "CBDUAEADJAL", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 150, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(JUMEIRAH BRANCH)", "swift_code": "CBDUAEADJUM", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 151, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": "(SOUQ AL WASL BRANCH)", "swift_code": "CBDUAEADSAW", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 152, "bank": "COMMERCIAL BANK OF DUBAI", "city": "DUBAI", "branch": null, "swift_code": "CBDUAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 153, "bank": "COMMERCIAL BANK OF DUBAI", "city": "RAS AL KHAIMAH", "branch": "(RAS AL KHAIMAH BRANCH)", "swift_code": "CBDUAEADRAK", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 154, "bank": "COMMERCIAL BANK OF DUBAI", "city": "SHARJAH", "branch": "(SHARJAH BRANCH)", "swift_code": "CBDUAEADSHJ", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 155, "bank": "COMMERZBANK AG DUBAI BRANCH", "city": "DUBAI", "branch": null, "swift_code": "COBAAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 159, "bank": "CREDIT AGRICOLE CIB (DUBAI BRANCH)", "city": "DUBAI", "branch": null, "swift_code": "BSUIAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 160, "bank": "CREDIT EUROPE BANK (DUBAI) LTD", "city": "DUBAI", "branch": null, "swift_code": "FBHLAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 168, "bank": "DUBAI BANK PJSC", "city": "DUBAI", "branch": null, "swift_code": "DBXPAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 169, "bank": "DUBAI EXCHANGE CENTRE L.L.C.", "city": "DUBAI", "branch": null, "swift_code": "DEXEAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 170, "bank": "DUBAI FINANCIAL MARKET, PJSC.", "city": "DUBAI", "branch": null, "swift_code": "DFMTAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 171, "bank": "DUBAI GOLD AND COMMODITIES EXCHANGE DMCC", "city": "DUBAI", "branch": null, "swift_code": "DGCXAEAA", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 172, "bank": "DUBAI ISLAMIC BANK", "city": "DUBAI", "branch": "(DEPARTMENT LETTERS OF CREDIT)", "swift_code": "DUIBAEADLCS", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 173, "bank": "DUBAI ISLAMIC BANK", "city": "DUBAI", "branch": "(DIRECT EQUITIES OPERATIONS)", "swift_code": "DUIBAEADDEO", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 174, "bank": "DUBAI ISLAMIC BANK", "city": "DUBAI", "branch": "(TREASURY DEPARTMENT)", "swift_code": "DUIBAEADTOS", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 175, "bank": "DUBAI ISLAMIC BANK", "city": "DUBAI", "branch": null, "swift_code": "DUIBAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 176, "bank": "DUBAI, FITCH RATINGS LTD (DUBAI BRANCH)", "city": "DUBAI", "branch": null, "swift_code": "FRIPAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 179, "bank": "ED AND F MAN PROFESSIONAL TRADING (DUBAI) LIMITED", "city": "DUBAI", "branch": null, "swift_code": "MPTDAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 323, "bank": "INDUSTRIAL AND COMMERCIAL BANK OF CHINA LIMITED, DUBAI(DIFC) BRANCH", "city": "DUBAI", "branch": null, "swift_code": "ICBKAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 350, "bank": "MARKET SECURITIES DUBAI LIMITED", "city": "DUBAI", "branch": null, "swift_code": "MSDLAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 371, "bank": "NASDAQ DUBAI LIMITED", "city": "DUBAI", "branch": null, "swift_code": "DIFXAEAA", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 387, "bank": "NATIXIS DUBAI", "city": "DUBAI", "branch": null, "swift_code": "NATXAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 409, "bank": "SHINHAN BANK CO LTD. DUBAI BRANCH", "city": "DUBAI", "branch": null, "swift_code": "SHBKAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 437, "bank": "WOORI BANK DUBAI BRANCH", "city": "DUBAI", "branch": null, "swift_code": "HVBKAEAD", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" }, { "id": 438, "bank": "ZFP EQUITY TRADING (DUBAI) LIMITED", "city": "DUBAI", "branch": null, "swift_code": "ZETDAEA1", "TimeZone": 240, "TimeZoneName": "(UTC+04:00) Abu Dhabi, Muscat" } ] }
get
/api/v1/static/get-stat-report
Get website visits reports. Send days=0 to get today's report.
Send token as "Authorization" in your request header.
?type=Summary&days=7
{ "id": 107, "success": true, "message": "", "value": { "@attributes": { "status": "ok" }, "sc_data": [ { "date": "2022-06-01", "page_views": "8970", "unique_visits": "9", "returning_visits": "4", "first_time_visits": "5" }, { "date": "2022-06-02", "page_views": "15", "unique_visits": "3", "returning_visits": "3", "first_time_visits": "0" } ] } }
get
/api/v1/static/generate-qr-code
Generate QR code from a string.
Send token as "Authorization" in your request header.
?text=0xe98dc4e6e924f7156fdfe125f921e4098fce0e54
{ "id": 118, "success": true, "message": "", "value": "/files/upload/qr-e35fa7fd-1250-44ee-a277-a8117909d8bb.png" }
get
/api/v1/static/get-bank-accounts
Get a list of Zed-Pay bank accounts.
Send token as "Authorization" in your request header.
{ "id": 129, "success": true, "message": "", "value": [ { "currency_code": "USD", "account_holder_name": "Zed-Pay", "account_holder_country": "UK", "account_holder_address": "No 21, Sample St, London", "account_holder_email": "info@zed-pay.com", "swift_code": "SWFT1234", "bank_name": "Unibank", "bank_code": "BNK", "branch_code": "", "account_number": "1234567890", "bank_country": "UK", "bank_city": "London", "bank_address": "No 22, Sample St, London", "intermediary_bank_swift_code": "", "intermediary_bank_country": "", "remark": "" }, { "currency_code": "EUR", "account_holder_name": "Zed-Pay", "account_holder_country": "UK", "account_holder_address": "No 21, Sample St, London", "account_holder_email": "info@zed-pay.com", "swift_code": "SWFT1234", "bank_name": "Unibank", "bank_code": "BNK", "branch_code": "", "account_number": "1234567891", "bank_country": "UK", "bank_city": "London", "bank_address": "No 22, Sample St, London", "intermediary_bank_swift_code": "", "intermediary_bank_country": "", "remark": "" } ] }
get
/api/v1/static/static-form-fields
Get field values of static forms.
Send token as "Authorization" in your request header.
{ "id": 163, "success": true, "message": "", "value": { "visa_card": { "plan": [ "Simple", "Preminum", "Golden" ], "type": [ "Rechargeable", "Non Rechargeable" ], "initial_balance": [ 100, 200, 300, 500, 1000, 2000, 5000, 10000 ], "validation_time": [ { "Key": "1 Year", "Value": "1" }, { "Key": "2 Years", "Value": "2" }, { "Key": "3 Years", "Value": "3" }, { "Key": "5 Years", "Value": "4" } ] }, "virtual_card": { "type": [ "Visa", "Master", "American Express" ], "plan": [ "Simple", "Preminum", "Golden" ], "rechargeable": [ "Yes", "No" ], "initial_balance": [ 100, 200, 300, 500, 1000, 2000, 5000, 10000 ], "validation_time": [ { "Key": "1 Year", "Value": "1" }, { "Key": "2 Years", "Value": "2" }, { "Key": "3 Years", "Value": "3" }, { "Key": "5 Years", "Value": "4" } ] } } }
get
/api/v1/static/about
Get contact info of the company.
{ "id": 181, "success": true, "message": "", "value": { "title": "ZedPay", "content": "ZedPay helps over thousands customers achieve their financial goals by helping them save and invest with ease. Put that extra cash to use without putting it at risk with ZedPay.", "contact": [ { "title": "Website", "link": "https://zed-pay.com", "type": 1 }, { "title": "Phone", "link": "+901234567890", "type": 2 }, { "title": "Telegram", "link": "https://t.me", "type": 1 }, { "title": "Twitter", "link": "https://twitter.com", "type": 1 } ] } }
get
/api/v1/static/local-banks-summary
Get a list of available countries and cities.
Send token as "Authorization" in your request header.
{ "id": 205, "success": true, "message": "", "value": [ { "country_id": 31, "country_name": "Brazil", "currency_codes": [ "BRL" ] }, { "country_id": 100, "country_name": "Hong Kong", "currency_codes": [ "HKD" ] }, { "country_id": 112, "country_name": "Japan", "currency_codes": [ "JPY" ] }, { "country_id": 200, "country_name": "Singapore", "currency_codes": [ "SGD" ] } ] }
get
/api/v1/static/get-local-banks
Get a list if local banks. Filter is optional.
Send token as "Authorization" in your request header.
?country_id=176¤cy_code=US
{ "id": 202, "success": true, "message": "", "value": [ { "id": 2, "country_id": 176, "country_name": "Poland", "currency_code": "EUR", "bank_name": "Alfa Bank" }, { "id": 3, "country_id": 176, "country_name": "Poland", "currency_code": "EUR", "bank_name": "Beta Bank" }, { "id": 4, "country_id": 176, "country_name": "Poland", "currency_code": "EUR", "bank_name": "New Bank" } ] }
get
/api/v1/static/get-transaction-by-hash
Get blockchain transaction by hash.
Send token as "Authorization" in your request header.
?blockchain=binance_smart_chain&hash=0xf62100d48511a7ad2137da9aee9ca0a2c61ac347679c4ab35f5b09942b11fede
{ "id": 211, "success": false, "message": "", "value": [ { "chain": "bsc", "hash": "0xf62100d48511a7ad2137da9aee9ca0a2c61ac347679c4ab35f5b09942b11fede", "address": "0x0000000000000000000000000000000000001000", "blockNumber": 30058063, "transactionIndex": 3, "transactionType": "native", "transactionSubtype": "incoming", "amount": "0.011319456", "timestamp": 1684867393000, "counterAddress": "0x35552c16704d214347f29fa77f77da6d75d7c752" }, { "chain": "bsc", "hash": "0xf62100d48511a7ad2137da9aee9ca0a2c61ac347679c4ab35f5b09942b11fede", "address": "0x35552c16704d214347f29fa77f77da6d75d7c752", "blockNumber": 30058063, "transactionIndex": 3, "transactionType": "native", "transactionSubtype": "outgoing", "amount": "-0.011319456", "timestamp": 1684867393000, "counterAddress": "0x0000000000000000000000000000000000001000" } ] }
+ Storie
get
/api/v1/storie/get-all
Get All Stories
?agentid=2
[ { "Id": 1, "ApperDate": "2022-06-02T15:37:02", "Title": "asdasfas", "CategoryId": 1, "Description": "asdasd", "Visible": true, "Category": { "Id": 1, "ApperDate": "2022-06-02T15:37:02", "CategoryType": 2, "Name": "asdasd", "Image": "asdasdasd", "Description": "asasfasdasd" }, "StorieItems": [ { "Id": 1, "StorieId": 1, "Video": "asdasdasd", "Image": "asdasdasd", "Duration": 2, "Position": 2 } ] } ]
get
/api/v1/storie/get-by-id
Get storie by id
?agentid=2&id=1
{ "Id": 1, "ApperDate": "2022-06-02T15:37:02", "Title": "asdasfas", "CategoryId": 1, "Description": "asdasd", "Visible": true, "Category": { "Id": 1, "ApperDate": "2022-06-02T15:37:02", "CategoryType": 2, "Name": "asdasd", "Image": "asdasdasd", "Description": "asasfasdasd" }, "StorieItems": [ { "Id": 1, "StorieId": 1, "Video": "asdasdasd", "Image": "asdasdasd", "Duration": 2, "Position": 2 } ] }
get
/api/v1/storie/delete-storie
Delete Storie
Send token as "Authorization" in your request header.
post
/api/v1/storie/update-storie
Update Storie
Send token as "Authorization" in your request header.
post
/api/v1/storie/add-storie
Add Storie
Send token as "Authorization" in your request header.
+ Ticket
post
/api/v1/ticket/open
Open a new ticket.
Send token as "Authorization" in your request header.
{ "customer_id": 1, "department": "IT", "subject": "Withdrawal", "messages": [ { "message": "My lastest withdrawal request has been rejected. Could you please check that?", "files": [ "/files/upload/ticket.jpg" ] } ] }
{ "id": 53, "success": true, "message": "New ticket created.", "value": null }
post
/api/v1/ticket/reply
Add a new message to ticket.
Send token as "Authorization" in your request header.
{ "id": 3, "messages": [ { "message": "New update: I was able to complete my transaction.", "files": [] } ] }
{ "id": 54, "success": true, "message": "Ticket updated!", "value": null }
post
/api/v1/ticket/change
Change status or delete a ticket.
Send token as "Authorization" in your request header.
{ "id": 3, "status": "Closed" }
{ "id": 55, "success": true, "message": "Ticket updated!", "value": null }
get
/api/v1/ticket/list
Get a list of tickets.
Send token as "Authorization" in your request header.
?items=20&user_id=1&id=2
{ "id": 56, "success": true, "message": "", "value": [ { "id": 5, "date_time": "17/05/2022 13:17", "direction": "ClientToCompany", "customer_id": 2, "customer_email": "someone@example.com", "customer_name": "John Doe", "department": "Billing", "subject": "Invoice #133", "messages": [ { "date_time": "17/05/2022 13:17", "direction": "ClientToCompany", "name": "John Doe", "message": "My bank account has been charged twice!", "files": [ "/files/upload/account.jpg" ] }, { "date_time": "17/05/2022 13:17", "direction": "CompanyToClient", "name": "Makan M.", "message": "Please send a sceenshot frm your account. Thank you.", "files": [] } ], "last_update": "17/05/2022 13:17", "status": "Completed", "response_status": "Waiting For Client" }, { "id": 4, "date_time": "17/05/2022 13:14", "direction": "CompanyToClient", "customer_id": 2, "customer_email": "someone@example.com", "customer_name": "John Doe", "department": "IT", "subject": "Withdrawal", "messages": [ { "date_time": "17/05/2022 13:14", "direction": "CompanyToClient", "name": "Makan M.", "message": "Your lastest deposit has been rejected. Could you please check that?", "files": [ "/files/upload/ticket.jpg" ] }, { "date_time": "17/05/2022 13:14", "direction": "ClientToCompany", "name": "Jogn Doe", "message": "Our billing department is checking the account.", "files": [] } ], "last_update": "17/05/2022 13:14", "status": "In Progress", "response_status": "Waiting For Support" } ] }
get
/api/v1/ticket/list-departments
Get a list of departments for Ticket support
Send token as "Authorization" in your request header.
{ "id": 58, "success": true, "message": "", "value": [ { "order": 1, "title": "Billing" }, { "order": 2, "title": "Support" }, { "order": 3, "title": "Other" } ] }
+ Token
post
/api/v1/token/close-session
Close a list of valid tokens.
Send token as "Authorization" in your request header.
{ "tokens": [ "bc8f3fb26fa07b8ddb326fa80651f6714b6f676b90c57d8c664498a701f8ad4e", "cb8f3fb26fa07b8ddb326fa80651f6714b6f676b90c57d8c664498a701f8ad4d" ] }
{ "id": 14, "success": true, "message": "Session(s) has been closed.", "value": null }
get
/api/v1/token/active-sessions
Get a list of active sessions (tokens). Filter is availble for Admin usage only.
Send token as "Authorization" in your request header.
?user_type=Admin&user_id=2
{ "id": 15, "success": true, "message": "", "value": [ { "id": 1, "date_created": "08/05/2022 16:21", "user_type": "Admin", "user_id": 1, "session_id": "j30qm2l0m5cjj1ttpfx52wdc", "token": "bc8f3fb26fa07b8ddb326fa80651f6714b6f676b90c57d8c664498a701f8ad4e", "ip_address": "::1", "platform": "Web", "expiry": "2022-06-08T16:21:31", "firebase_id": "" }, { "id": 2, "date_created": "08/05/2022 16:33", "user_type": "Client", "user_id": 2, "session_id": "j30qm2l0m5cjj1ttpfx52wd", "token": "bc8f3fb26fa07b8ddb326fa80651f6714b6f676b90c57d8c664498a701f8ad4f", "ip_address": "127.0.0.1", "platform": "iOS", "expiry": "2022-07-08T16:21:31", "firebase_id": "" } ] }
+ User
get
/api/v1/user/recent-logins
Get a list of recent logins. user_type is mandatory. user_id filter is optional and for Admin usage only.
Send token as "Authorization" in your request header.
?user_type=client&user_id=2
{ "id": 10, "success": true, "message": "", "value": [ { "id": 4, "date_time": "10/10/2022 08:41", "user_type": "Admin", "email": "it@zedpay.com", "ip_address": "::1", "status": "Failed" }, { "id": 2, "date_time": "08/10/2022 09:13", "user_type": "Client", "email": "it@zedpay.com", "ip_address": "::1", "status": "Success" }, { "id": 1, "date_time": "08/10/2022 09:09", "user_type": "Admin", "email": "it@zedpay.com", "ip_address": "::1", "status": "Success" } ] }
post
/api/v1/user/register
Register as a new user.
{ "first_name": "John", "last_name": "Doe", "customer_type": 1, "email": "someone@example.com", "password": "p@ssw0rd", "country_id": 236, "agent_id": 0, "referral_code":"" }
{ "id": 37, "success": true, "message": "User has been created.", "value": null }
post
/api/v1/user/edit-profile
Edit user profile. remark and status parameters are for admin usage only.
Send token as "Authorization" in your request header.
{ "id": 1, "first_name": "John", "last_name": "Doe", "gender": "Male", "birth_date": "1997-05-12", "customer_type": "Individual", "email": "someone@example.com", "mobile": "15169271234", "phone": "15161234567", "country_id": 236, "city": "New York", "address": "Times Square", "remark": "Comment by Admin", "status": "Disabled" }
{ "id": 38, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/change-avatar
Change user avatart.
Send token as "Authorization" in your request header.
{ "id": 2, "avatar": "/files/upload/avatar.png" }
{ "id": 39, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/login
Login as user.
{ "email": "someone@example.com", "password": "p@ssw0rd", "otp": "556670", "platform": "iOS", "agent_id": 1 }
{ "id": 40, "success": true, "message": "Successful login.", "value": { "token": "147cf515162d0f517d8be04c11264b6f81f03ac75bfa16bf52fbea888f44afe0", "expiry": "2022-06-11T12:15:06.2476731-04:00", "user_type": 2 } }
post
/api/v1/user/change-password
Password change by user.
Send token as "Authorization" in your request header.
{ "current_password": "102030", "new_password": "302010", "delete_tokens": true, "otp_code": "102030" }
{ "id": 41, "success": true, "message": "Password changed.", "value": null }
get
/api/v1/user/who-am-i
Get current logged in user information.
Send token as "Authorization" in your request header.
{ "id": 42, "success": true, "message": "", "value": { "user_type": 2, "user_id": 1, "first_name": "John", "last_name": "Doe", "gender": "Male", "email": "someone@example.com", "mobile": "", "avatar": "avatar.png", "access": [ 41, 42 ], "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": false, "status": "Verified" } }
post
/api/v1/user/reset-password
Password reset by user.
{ "email": "someone@example.com", "code": "vvi1ivdrgenxbxippnzvwqdn", "new_password": "p@ssw0rd", "delete_tokens": true }
{ "id": 43, "success": true, "message": "Password changed.", "value": null }
post
/api/v1/user/reset-password-admin
User password reset by an Admin.
Send token as "Authorization" in your request header.
{ "id": 1, "new_password": "p@ssw0rd", "delete_tokens": true, "otp_code": "123456" }
{ "id": 44, "success": true, "message": "Password changed.", "value": null }
post
/api/v1/user/delete
Delete customer account.
Send token as "Authorization" in your request header.
{ "id": 183, "password": "102030" }
{ "id": 45, "success": true, "message": "Your account has been deleted successfully.", "value": null }
get
/api/v1/user/list
Get a list of users / return current loggedin user. Filter is optional and for admin usage only.
Send token as "Authorization" in your request header.
?user_id=1&items=20
{ "id": 46, "success": true, "message": "", "value": [ { "id": 1, "reg_date": "12/05/2022", "first_name": "John", "last_name": "Doe", "gender": "Male", "birth_date": "12/05/1997", "customer_type": "Individual", "email": "someone@example.com", "mobile": "", "phone": "15161234567", "country": { "id": 236, "name": "United States", "phone_prefix": "1", "alpha_2": "US", "alpha_3": "USA" }, "city": "New York", "address": "Times Square", "avatar": "/files/upload/avatar.png", "remark": "Comment by Admin", "documents": [], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": false, "status": "Disabled" }, { "id": 2, "reg_date": "12/05/2022", "first_name": "John", "last_name": "Smith", "gender": "Male", "birth_date": "12/05/1995", "customer_type": "Individual", "email": "sample@example.com", "mobile": "165214587541", "phone": "15161234568", "country": { "id": 236, "name": "United States", "phone_prefix": "1", "alpha_2": "US", "alpha_3": "USA" }, "city": "New York", "address": "Times Square", "avatar": "/files/upload/user.png", "remark": "", "documents": [], "business_info": { "entity_name": "", "entity_type": "", "registration_number": "", "date_of_registration": "", "source_of_funds": "", "nature_of_business": "", "application_reason": "", "website": "", "file_certificate_of_incorporation": "", "file_articles_of_association": "", "file_register_of_directors": "", "file_register_of_member": "", "file_sanctions_questionnaire": "", "file_letter_of_authorization": "", "file_current_operating_status": "", "file_Intermediaries": "", "behalf": "", "file_proof_of_address": "", "file_Supplementary": "", "admin_comment": "", "status": 0 }, "api_key": { "active": false, "api_key": "" }, "notification": { "telegram": false, "telegram_id": "", "whatsapp": false, "app": true, "sms": false, "email": false }, "otp_enabled": false, "status": "Enabled" } ] }
post
/api/v1/user/submit-documents
Submit a list of ID documents to get verified.
Send token as "Authorization" in your request header.
{ "id": 2, "documents": [ { "title": "Passport", "file": "/files/upload/passport.jpg" }, { "title": "National ID", "file": "/files/upload/id.jpg" } ] }
{ "id": 47, "success": true, "message": "Document(s) has been submitted.", "value": null }
post
/api/v1/user/review-documents
Review user documents by Admin.
Send token as "Authorization" in your request header.
{ "id": 2, "documents": [ { "title": "Passport", "file": "/files/upload/passport.jpg", "status": "Accepted", "comment": "" }, { "title": "National ID", "file": "/files/upload/id.jpg", "status": "Rejected", "comment": "Expired" } ], "Verified": true }
{ "id": 48, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/remove-documents
Remove a pending document from the list.
Send token as "Authorization" in your request header.
{ "id": 2, "documents": [ { "file": "/files/upload/passport.jpg" }, { "file": "/files/upload/id.jpg" } ] }
{ "id": 49, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/request-reset-password
Request password reset.
{ "email": "someone@example.com" }
{ "id": 50, "success": true, "message": "Verification code sent!", "value": { "code": "4bs40huzxq11c1lqk35zcsvq", "reset_url": "/reset?id=4bs40huzxq11c1lqk35zcsvq" } }
post
/api/v1/user/register-email
Request a verification code on email.
{ "email": "someone@example.com", "platform": "web" }
{ "id": 141, "success": true, "message": "Verification code sent!", "value": null }
post
/api/v1/user/confirm-new-email
Confirm an email before registration.
{ "email": "someone@example.com", "code": "123456" }
{ "id": 142, "success": true, "message": "Thank you!", "value": null }
post
/api/v1/user/verify-email
Request a verification code on email. email is optional.
Send token as "Authorization" in your request header.
{ "id": 126 }
{ "id": 59, "success": true, "message": "Verification code sent!", "value": "562822" }
post
/api/v1/user/confirm-email
Confirm email by received code.
Send token as "Authorization" in your request header.
{ "id": 59, "otp": { "email_code": "123456" } }
{ "id": 60, "success": true, "message": "Thank you!", "value": null }
get
/api/v1/user/get-authenticator-code
Enable two-step verification with Google Authenticator.
Send token as "Authorization" in your request header.
{ "id": 61, "success": true, "message": "", "value": { "AuthenticationCode": "b8e6365590", "AuthenticationBarCodeImage": "data:image/png;base64,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", "AuthenticationManualCode": "MI4GKNRTGY2TKOJQ", "success": true } }
post
/api/v1/user/verify-authenticator-code
Confirm two-step verification setup.
Send token as "Authorization" in your request header.
{ "otp": "567861" }
{ "id": 62, "success": true, "message": "Thank you!", "value": null }
post
/api/v1/user/disable-authenticator-code
Disable two-step verification.
Send token as "Authorization" in your request header.
{ "otp": "567861" }
{ "id": 63, "success": true, "message": "Two-step verification has been disabled.", "value": null }
post
/api/v1/user/verify-mobile
Request a verification code on mobile.
Send token as "Authorization" in your request header.
{ "id": 126 }
{ "id": 101, "success": true, "message": "Verification code sent!", "value": null }
post
/api/v1/user/confirm-mobile
Confirm mobile by received code.
Send token as "Authorization" in your request header.
{ "id": 133, "otp": { "mobile_code": "123456" } }
{ "id": 102, "success": true, "message": "Thank you!", "value": null }
post
/api/v1/user/set-notifications
Set notification types for a user.
Send token as "Authorization" in your request header.
{ "id": 136, "notification": { "telegram": false, "whatsapp": false, "app": true, "sms": false, "email": true } }
{ "id": 108, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/update-business-profile
Update business info of an organization.
Send token as "Authorization" in your request header.
{ "id": 1, "business_info": { "entity_name": "ZedPay", "entity_type": "Incorporation", "registration_number": "1234567890", "date_of_registration": "1998-12-15", "source_of_funds": "Customer Relations", "nature_of_business": "Marketing", "application_reason": "Trading", "website": "https://zed-pay.com", "file_certificate_of_incorporation": "file2.jpg", "file_articles_of_association": "file1.jpg", "file_register_of_directors": "file7.jpg", "file_register_of_member": "file8.jpg", "file_sanctions_questionnaire": "file9.jpg", "file_letter_of_authorization": "file5.jpg", "file_current_operating_status": "file3.jpg", "file_Intermediaries": "file4.jpg", "behalf": "No", "file_proof_of_address": "file6.jpg", "file_Supplementary": "file10.jpg" } }
{ "id": 119, "success": true, "message": "Changes have been saved!", "value": null }
get
/api/v1/user/get-notifications
Get a list of recent notifications.
Send token as "Authorization" in your request header.
customer_id=132&items=10
{ "id": 131, "success": true, "message": "", "value": [ { "id": 2, "date_time": "12/08/2022 18:39", "customer_id": 132, "notification_type": "Info", "title": "Swap 101970", "message": "You have sent 200 EUR to your USD wallet.", "status": "New" }, { "id": 1, "date_time": "12/08/2022 18:39", "customer_id": 132, "notification_type": "Info", "title": "Swap 101971", "message": "You have sent 400 EUR to your USD wallet.", "status": "New" } ] }
post
/api/v1/user/change-notifications-status
Change status of a list of notifications to Read or Deleted.
Send token as "Authorization" in your request header.
[ { "id": 2, "status": "Read" }, { "id": 1, "status": "Deleted" } ]
{ "id": 132, "success": true, "message": "Changes have been saved!", "value": null }
post
/api/v1/user/set-firebase-id
Set Firebase ID to receive app notifications.
Send token as "Authorization" in your request header.
{ "firebase_id": "a92dcac91e00b41b5198" }
{ "id": 143, "success": true, "message": "OK", "value": null }
get
/api/v1/user/agent-info
Get public information of an agent.
?id=1
{ "id": 210, "success": true, "message": "", "value": { "company_name": "ZedPay", "title": "Your ally in achieving ambition beyond borders", "description": "A modern, technology-first payment system built for you and your growing business.", "about": "Preparation of consultancy programs and software for electronic services.\r\nProviding support services by connecting to wallets.\r\nProviding service software between customers and token listing on major and reputable global exchanges.\r\nInvesting and participating in profitable projects with an early return guarantee", "logo": "/files/upload/agent.png", "support_phone": "+901234567890", "support_email": "support@zed-pay.com", "address": "A Blok, Koza Plaza, Esenler, stanbulTurkiye", "bank_account": "IBAN: GB12345678901234567890, Alfa Bank, BIC: ALFA123XX, Branch: Main, London, UK", "visa_image": "/files/images/card.png", "mastercard_image": "/files/images/master.png" } }
get
/api/v1/user/get-agent-settings
Get price setting of ZedPay and Customer's own White Label commissions.
Send token as "Authorization" in your request header.
{ "id": 252, "success": true, "message": "", "value": { "agent_commission": { "fiat_withdrawal": 2.0, "crypto_withdrawal": 3.0, "swap_commission": 4.0, "nft_sale": 10.0, "escrow_commission": 9.0, "gateway_commission": 1.0, "tr_iban_account_commission": 5.0, "tr_iban_card_commission": 6.0, "esim_price_commission": 7.0, "esim_charge_commission": 8.0, "card_commission": { "virtual_issue": 11.0, "virtual_load": 13.0, "virtual_unload": 14.0, "virtual_maintenance": 12.0, "physical_issue": 15.0, "physical_load": 17.0, "physical_unload": 18.0, "physical_maintenance": 16.0 }, "white_label": { "fiat_withdrawal": 0.0, "crypto_withdrawal": 0.0, "swap_commission": 0.0, "nft_sale": 0.0, "escrow_commission": 0.0, "gateway_commission": 0.0, "tr_iban_account_commission": 0.0, "tr_iban_card_commission": 0.0, "esim_price_commission": 0.0, "esim_charge_commission": 0.0, "card_commission": { "virtual_issue": 0.0, "virtual_load": 0.0, "virtual_unload": 0.0, "virtual_maintenance": 0.0, "physical_issue": 0.0, "physical_load": 0.0, "physical_unload": 0.0, "physical_maintenance": 0.0 } } }, "smtp_server": { "email": "", "password": "", "display_name": "", "bcc": "", "smtp_server": "", "port": 0, "SSL": false, "active": false }, "info": { "company_name": "ZedPay", "title": "ZedPay", "description": "Keep this information updated to help customers find you better.\r\n", "about": "Keep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better. Keep this information updated to help customers find you better.\r\n", "logo": "/files/upload/agent.png", "support_phone": "+90 123 456 7890", "support_email": "info@zedpay.com", "address": "Keep this information updated to help customers find you better.", "bank_account": "Keep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better.\r\n", "visa_image": "/files/images/card.png", "mastercard_image": "/files/images/master.png" }, "has_white_label": true } }
post
/api/v1/user/save-agent-price-settings
Save price settings and commissions of the White Label agent.
Send token as "Authorization" in your request header.
{ "fiat_withdrawal": 15.0, "crypto_withdrawal": 20.0, "swap_commission": 0.0, "nft_sale": 0.0, "escrow_commission": 0.0, "gateway_commission": 0.0, "tr_iban_account_commission": 0.0, "tr_iban_card_commission": 0.0, "esim_price_commission": 0.0, "esim_charge_commission": 0.0, "card_commission": { "virtual_issue": 0.0, "virtual_load": 1.0, "virtual_unload": 0.0, "virtual_maintenance": 0.0, "physical_issue": 0.0, "physical_load": 0.5, "physical_unload": 0.0, "physical_maintenance": 0.0 } }
{ "id": 253, "success": true, "message": "Changes saved successfully.", "value": null }
post
/api/v1/user/update-agent-smtp
Define a custom SMTP server for agents an White Label owners.
Send token as "Authorization" in your request header.
{ "id": 132, "agent_settings": { "smtp_server": { "email": "no-reply@zed-pay.com", "password": "p@ss1234", "display_name": "ZedPay", "bcc": "me@zed-pay.com", "smtp_server": "mail.example.com", "port": 25, "SSL": false, "active": true } } }
{ "id": 254, "success": true, "message": "Changes have been saved successfully.", "value": null }
post
/api/v1/user/update-agent-info
Update static data of the White Label
Send token as "Authorization" in your request header.
{ "id": 100, "agent_settings": { "info": { "company_name": "ZedPay", "title": "ZedPay", "description": "Keep this information updated to help customers find you better.", "about": "Keep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better. Keep this information updated to help customers find you better.\r\n", "logo": "/files/upload/agent.png", "support_phone": "+90 123 456 7890", "support_email": "info@zedpay.com", "address": "Keep this information updated to help customers find you better.", "bank_account": "Keep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better.\r\nKeep this information updated to help customers find you better.\r\n", "visa_image": "/files/images/card.png", "mastercard_image": "/files/images/master.png" } } }
{ "id": 254, "success": true, "message": "Changes have been saved successfully.", "value": null }
get
/api/v1/user/agent-reset-password-report
Get a list of recent requests for password reset by the customers of an agent.
Send token as "Authorization" in your request header.
{ "id": 256, "success": true, "message": "", "value": [ { "id": 23, "date_time": "12/03/2024 06:08", "customer_id": 100, "agent_id": 99, "email": "it@zedpay.com", "sid": "d37b72f8666ba73b7ca801bdf1728ae0400b54a4eac5703cf5bb1b482a3cc9e9", "ip": "::1", "status": "Used" }, { "id": 22, "date_time": "08/08/2022 10:09", "customer_id": 100, "agent_id": 99, "email": "it@zedpay.com", "sid": "424k331zwk4n2ve2j4mtwyss", "ip": "127.0.0.1", "status": "Expired" }, { "id": 21, "date_time": "21/07/2022 14:02", "customer_id": 100, "agent_id": 99, "email": "dev@harryrajani.com", "sid": "xrxrse1mkyfekhozzkn30mia", "ip": "127.0.0.1", "status": "Expired" }, { "id": 19, "date_time": "14/06/2022 12:46", "customer_id": 100, "agent_id": 99, "email": "it@zed-pay.com", "sid": "ti30aaf5v15ccchqtbllfhjg", "ip": "127.0.0.1", "status": "Expired" }, { "id": 18, "date_time": "27/05/2022 07:12", "customer_id": 100, "agent_id": 99, "email": "it@zedpay.com", "sid": "rgui32g44d0snanjaw3rsz4j", "ip": "::1", "status": "Expired" } ] }
get
/api/v1/user/get-register-options
Get register options for pass key
Send token as "Authorization" in your request header.
post
/api/v1/user/register-options
Register user options
Send token as "Authorization" in your request header.
get
/api/v1/user/get-auth-options
Get Auth options for pass key
post
/api/v1/user/complete-auth
Complete pass key auth
post
/api/v1/user/deposit-fiat
Deposit fiat
Send token as "Authorization" in your request header.
+ White-Label
get
/api/v1/white-label/get-page
Get content of a static page. Parameter agent_id is required when route is used instead of id.
?agent_id=1&id=2&route=about
{ "id": 259, "success": true, "message": "", "value": [ { "id": 1, "agent_id": 100, "title": "ZedPay Cards", "content_body": "Some HTML Content", "default_content": "Default HTML Content", "route": "sample", "content_type": 2, "details": { "meta_description": "Physical and Virtual Cards of ZedPay" } } ] }
post
/api/v1/white-label/save-page
Update static content of White Label pages.
Send token as "Authorization" in your request header.
{ "id": 1, "title": "ZedPay Cards", "content_body": "Some HTML Content", "details": { "meta_description": "Physical and Virtual Cards of ZedPay" } }
{ "id": 260, "success": true, "message": "Changes saved successfully.", "value": null }