Skip to main content
POST
/
payables
/
{id}
/
pay
Execute payment
curl --request POST \
  --url https://api.allcovered.xyz/v1/payables/{id}/pay \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "payment_method": "ach"
}
'
{
  "data": {
    "payable_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "status": "<string>",
    "transaction_id": "<string>",
    "message": "<string>"
  }
}
Execute payment for a payable. Initiates the transfer to the vendor.

Authorizations

Authorization
string
header
required

API key from StableBase dashboard

Path Parameters

id
string<uuid>
required

Resource ID

Body

application/json
payment_method
enum<string>

Override the default payment method

Available options:
ach,
wire,
crypto

Response

Payment initiated

data
object
required