PayID P2C (In)

Transfer via phone number (9 digits) or email.

CountryAustralia
CurrencyAUD (Australian Dollar)
Method typepayid
DirectionPayIn
Integration typeWidget/H2H
Transfer typeTransfer via phone number (9 digits) or email
Account number format9-digits mobile number
Limits*****


Create PayIn (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin

{
    "amount": "100.00",                         // Payment amount
    "currency": "AUD",                          // Currency
    "invoiceId": "invoiceId",                   // Unique invoice identifier on the merchant side
    "clientId": "clientId",                     // Unique client identifier on the merchant side
    "type": "payid",                            // Method type
    "lang": "EN",                               // Optional (widget): localization EN/RU
    "backUrl": "https://example.com/",          // Optional (widget): URL for return without completing payment
    "clientCredentials": {                      // Client data
        "firstName": "MICHAEL",                 // Client first name
        "lastName": "WITENDEN",                 // Client last name/surname
        "phone": "467624467",                   // Client phone number, AU national number without country code (61)
        "email": "[email protected]",    // Client email
        "address": {                            // Client address
            "city": "CAMERON PARK",             // City
            "line1": "18 TUCAN CL",             // Address line 1 (street + house)
            "line2": "9",                       // Address line 2 (apt/unit)
        }
    }
}

Did this page help you?