Create Cardholder

Create a new cardholder

POST /v1/cardholders

Create a new cardholder

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

{
    "email": "[email protected]",
    "phone_number": "1234567890",
    "first_name": "John",
    "account_id": "ACCOUNT_ID"
  }

Response

{
    "success": "Cardholder created successfully"
}

Last updated

Was this helpful?