Create beneficiary withdrawal Run in API Explorer
Ask AI
Creates a withdrawal using only the saved details from an existing confirmed beneficiary.
Headers
-
Public API key issued from the Lumetrade API key management flow.
-
API secret paired with the public API key.
POST
/api/v1/beneficiaries/withdrawals
curl \
--request POST 'https://api.lumetrade.com/api/v1/beneficiaries/withdrawals' \
--header "Content-Type: application/json" \
--header "X-API-KEY: string" \
--header "X-API-SECRET: string" \
--data '{"beneficiaryId":"ben_7K9Q2M","amount":101}'
Request examples
# Headers
X-API-KEY: string
X-API-SECRET: string
# Payload
{
"beneficiaryId": "ben_7K9Q2M",
"amount": 101
}
Response examples (201)
{
"transactionId": "WD5M8Q1P",
"status": "PENDING"
}
Response examples (400)
{
"transactionId": "WD5M8Q1P",
"status": "PENDING"
}
Response examples (404)
{
"transactionId": "WD5M8Q1P",
"status": "PENDING"
}