The relevant endpoint and http method information for card creation steps are given below.
HTTP Method | URL |
---|---|
POST | /v1/cp/Issuing/CreateCard |
Params | Type | Mandatory |
---|---|---|
account_number | string | Yes |
wallet_number | string | Yes |
account_type | int | No |
currency_code | string | Yes |
product_code | string | Yes |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | object |
card_no | string |
auth_ecom | bool |
auth_moto | bool |
auth_contactless | bool |
auth_int | bool |
set_limit | bool |
card_transaction_limit | decimal |
card_monthly_limit | decimal |
card_daily_limit | decimal |
card_transaction_limit_remaining | decimal |
card_monthly_limit_remaining | decimal |
card_daily_limit_remaining | decimal |
daily_max_amount | decimal |
weekly_max_amount | decimal |
monthly_max_amount | decimal |
yearly_max_amount | decimal |
created_date_utc | string |
updated_date_utc | string |
card_type | string |
REQUEST (POST) :
{
"account_number": "BARİS123",
"wallet_number": "57235724",
"account_type": 1,
"currency_code": "TRY",
"product_code": "SANAL"
}
RESPONSE:
{
"status": 0,
"code": "200",
"message": "Kartınız oluşturuldu",
"payload": {
"card_no": "434610kaomru6052",
"auth_ecom": true,
"auth_moto": true,
"auth_contactless": true,
"auth_int": true,
"set_limit": false,
"card_transaction_limit": 0.0,
"card_monthly_limit": 0.0,
"card_daily_limit": 0.0,
"card_transaction_limit_remaining": 0.0,
"card_monthly_limit_remaining": 0.0,
"card_daily_limit_remaining": 0.0,
"daily_max_amount": 0.0,
"weekly_max_amount": 0.0,
"monthly_max_amount": 0.0,
"yearly_max_amount": 0.0,
"created_date_utc": "2022-11-03T07:32:04.6034116Z",
"updated_date_utc": "2022-11-03T07:32:04.6076902Z",
"card_type": "Virtual"
}
}