BARQ (In/Out)
Transfer via phone number (9 digits).
| Country | Saudi Arabia |
|---|---|
| Currency | SAR (Saudi riyal) |
| Method type | barq |
| Direction | PayIn/PayOut |
| Integration type | Widget/H2H |
| Transfer type | Transfer via mobile number |
| Account number format | 9-digit mobile number |
| Limits | ********* |


Create Pay-in (API request)
Integration type: Widget/H2H
HTTP Method: POST
Endpoint: /deals/payin
{
"amount": 1000, // Payment amount
"currency": "SAR", // Currency
"invoiceId": "invoiceID", // Unique invoice identifier on the merchant side
"clientId": "clientID", // Unique client identifier on the merchant side
"type": "barq", // Method type
"backUrl": "https://www.google.com/", // Optional (widget): URL for return without completing payment
"lang": "EN" // Optional (widget): localization EN/AR
}Create Payout (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/payout
{
"amount": 1000, // Payout amount
"currencyTo": "SAR", // Currency
"clientId": "clientID", // Unique client identifier on the merchant side
"recipient": { // Recipient information
"account_number": "01234567890", // Mobile number linked to recipient's account
"account_owner": "Account Holder", // Recipient's full name (account holder)
"type": "phone" // Recipient account type
},
"type": "barq", // Method type
}Updated 2 months ago
Did this page help you?
