Issue Card

Issue a new corporate virtual card linked to a NadaPay wallet.

Request

curl --request POST \
  --url $baseUrl/organization/cards \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "nadapayCode": "NP-0001",
    "limit": 500000
  }'
FieldTypeRequiredDescription
nadapayCodestringYesThe wallet this card is tied to
limitnumberNoSpending limit, in cents

Response

{
  "success": true,
  "statusCode": 201,
  "message": "Card issued successfully",
  "data": {
    "id": "card_01hw3x7k2r4p5q6m8n9v",
    "last4": "4242",
    "status": "inactive",
    "nadapayCode": "NP-0001",
    "environment": "live",
    "createdAt": "2024-07-01T10:00:00.000Z"
  }
}

A newly issued card starts in inactive status.

Call this next

  • Set Card PIN — required to activate the card before it can be used


Did this page help you?