Stablecoins Transfer

Initiate a Stablecoin payment.

Initialization

POST /payment-sessions

Sample Request

{
    "customer": {
        "first_name": "John",
        "last_name": "Doe",
        "email": "john.doe@example.com",
        "phone_number": "+2348118873422",
        "billing_address": {
            "line1": "123 Main St",
            "line2": "234 Feranmi Drive",
            "city": "Springfield",
            "state": "CA",
            "country": "US",
            "zip_code": "12345"
        }
    },
    "description": "Test",
    "currency": "USD",
    "amount": 100000,
    "direction": "incoming",
    "payment_method": {
        "type": "crypto address"
    },
    "reference": "1b09d9b2-11jd9eheveb-9203v02g",
    "isLive": true,
    "metadata": {
        "order": {
            "identifier": "ORD12345",
            "items": [
                {
                    "name": "Deposit",
                    "type": "digital"
                }
            ]
        }
    }
}

Sample Response

Last updated