Field | Type | Description |
---|
ID | String UUID | Card Identifier from Monit system. |
card_name | String | Card's name. |
card_network | String | Card's network, MASTERCARD or VISA. |
last_number | String | Last four digit of card number. |
card_mechanism | String | CREDIT or DEBIT, currently our API only support creating DEBIT card. |
card_status | String | PENDING, ACTIVE or FROZEN. |
card_type | String | PHYSICAL or VIRTUAL. |
card_activity_type | String | ON_DEMAND or RECURRING |
hold_amount | Float | Hold amount from reversal transaction or purchase return. |
balance | Float | Card balance. |
limit | Object (nullable) | Limit that applied to card. |
funding | Object | Account that act as source of fund for card. |
cardholder | Object | Basic info of the card holder. |
Currently, our API support 3 types of limit for debit card: daily, weekly and monthly. Each of limit will be affected to available balance value. The value balance from card object represent the exact balance of the card, for example if you add balance to card from IDR 0 to IDR 100.000, balance value will be IDR 100.000, and if you purchase something with card for IDR 50.000, the balance value will be IDR 50.000. If limit applied to card, for example with type weekly limit IDR 80.000, then your available balance will be IDR 30.000 for this week. Please to remember that available balance is not always be the same as balance, and you cannot spend all of your balance in card if the usage of the period you set has reach the limit even if your balance is sufficient. You also cannot purchase something higher than your balance even if your limit amount is sufficient.
Field | Type | Description |
---|
amount | Number | Limit amount. |
period | String | Period that will applied to card, valid value are DAILY, WEEKLY or MONTHLY. |
available_balance | Number | Available balance on that period. Limit amount - usage on that period. |
Field | Type | Description |
---|
id | String UUID | ID of account that linked to card. |
display_name | String | Display name of account. |
currency | String | Currency of account, currently we only support IDR. |
status | String | Status of account, see on Account Object for details. |
Field | Type | Description |
---|
id | String UUID | ID of user as card holder. |
full_name | String | Full name of user |