1. Cards
Dart Digital API DOCs
  • Getting Started
  • Webhooks
  • Auth
    • Validate & Generate Access Token
      POST
  • Collections
    • Pay via Bank Transfer
      • Get Banks
      • Initiate Pay Bank Transfer
      • Check Payment Status
    • Cards
      • Generate Payment Advice
        POST
      • Charge Card
        POST
  • Payouts
    • Get Bank List
      GET
    • Validate Account
      POST
    • Initiate Transfer
      POST
  1. Cards

Generate Payment Advice

POST
https://dev-gateway.mydartdigital.com/collections/card/payment-advice

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://dev-gateway.mydartdigital.com/collections/card/payment-advice' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
    "amount": 500,
    "currency": "NGN", // supported currency NGN, USD
    "merchantRef": "Ref-Dart-63727382", // your uiqune 
    "callBackUrl": "https://account.mydartdigital.com/",
    "narration":""
}'
Response Response Example
{}
Modified at 2026-05-17 10:19:05
Previous
Check Payment Status
Next
Charge Card
Built with