Direct Transfer
This document explains how to transfer your funds.
From AdmasPay account to bank transfer
This feature allows merchants to withdraw funds from their AdmasPay merchant account to bank accounts.
Endpoint
https://api.admaspay.com/api/v1/key-auth/transaction/transfersMethod : POST
Headers
Pass your api key as a bearer token in the request header to authorize this api.
Authorization : Bearer YOUR_API_KEY
Content-Type : application/json
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
customer_ref | String | Yes | The unique transaction reference |
amount | Number | Yes | The payment amount |
currency_code | String | Yes | Currency Code |
payment_method_code | String | Yes | The payment method code you want to transfer |
account_number | String | Yes | Customer’s account number |
account_name | String | No | Customer's account name |
description | String | No | Description of the transfer |
Example Integration
Success Response:
Error Response:
{
"type": "about:blank",
"title": "not authenticated",
"status": 401,
"instance": "/api/v1/initiate/transactions",
"message": "error.http.401"
}
Last updated on