Skip to main content
POST
/
v1
/
payment
/
escrow
Pay escrow (buy)
curl --request POST \
  --url https://staging.api.payluk.ng/v1/payment/escrow \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'customer-id: <customer-id>' \
  --data '
{
  "gateway": "WALLET",
  "transactionType": "ESCROW",
  "escrowDetails": {
    "escrowId": "665f1b2c9a1e4d0012ab3c10"
  },
  "reference": "ESC_REF_98765"
}
'
{
  "status": 200,
  "message": "Payment intent verified successfully",
  "data": {
    "reference": "ESC_REF_98765",
    "status": "SUCCESS",
    "amount": 1012500
  }
}

Authorizations

Authorization
string
header
required

Your secret key as a Bearer token. The key prefix selects the environment: sk_test_... (test) or sk_live_... (live).

Headers

customer-id
string
required

The merchant customer this request acts on behalf of.

Body

application/json
gateway
enum<string>
required
Available options:
WALLET,
PAYSTACK,
FLUTTERWAVE
Example:

"WALLET"

transactionType
string
required
Example:

"ESCROW"

escrowDetails
object
required
reference
string
Example:

"ESC_REF_98765"

Response

Escrow funded.