Receive Ln-Withdrawal
https://sandboxapi.bitnob.co/api/v1/lnurl/receivelnurlwithdrawal (opens in a new tab)
Body Parameters
| Parameter | type | Required |
|---|---|---|
| customerEmail | string | ✅ |
| description | int32 | |
| lnurl | string | |
| satoshis | int32 |
Request
lightning address/ Create LN-Withdrawal
curl --request GET \
--url https://sandboxapi.bitnob.co/api/v1/lnurl/receivelnurlwithdrawal \
--header 'Authorization: Bearer API-KEY' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"customerEmail": "string",
"satoshis": 0,
"lnurl": "string",
"description": "string"
}
'Responses
🟢 200 - Result example
{
"status": true,
"message": "",
"data": "receive LnUrl Withdrawal successful"
}