Skip to content

Card Payouts

Use this page to create payouts using Card method.

  • Base URL: https://api.paylander.com/api/v1/payout/
  • Endpoint: POST /v1/payout/

Overview

Common fields (see Payout API):

  • channel (UUID, required)
  • amount (object, required)
    • currency (ISO 4217, must be KZT)
    • value (string, required)
  • external_id (string, required) → your internal order or payout ID
  • description (string, optional)
  • payout_method (object, required)

payout_method (type: card)

Required:

  • type"card"
  • pan → Card number

Example Request

json
{
  "channel": "b96d5b92-8f34-4b12-9b16-5f047b57c901",
  "amount": {
    "currency": "KZT",
    "value": "2500.00"
  },
  "payout_method": {
    "type": "card",
    "pan": "4400444455550075"
  },
  "description": "Withdrawal #49283",
  "external_id": "ORDER-49283",
  "callback_url": "https://your-company.com/callback"
}

Example Response

json
{
  "status": "processing",
  "transaction_id": "b5cff6ed-f3f0-46df-a390-2ffdb11430f4",
  "external_id": null
}