Skip to main content
POST
/
escrow
/
{id}
/
release
Release escrow
curl --request POST \
  --url https://api.shoppex.io/dev/v1/escrow/{id}/release \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "cryptoSellerAddress": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "uniqid": "<string>",
    "shop_id": "<string>",
    "invoice_id": "<string>",
    "invoice_uniqid": "<string>",
    "amount": 123,
    "amount_display": 123,
    "currency": "<string>",
    "status": "HELD",
    "hold_until": 123,
    "released_at": 123,
    "refunded_at": 123,
    "customer_email": "<string>",
    "product_title": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
}

Authorizations

Authorization
string
header
required

Use your API key with the Bearer scheme. Get your key from Dashboard → Settings → API Keys. Format: Authorization: Bearer shx_...

Path Parameters

id
string
required

Escrow contract ID

Body

application/json
cryptoSellerAddress
string
required
Required string length: 1 - 255

Response

Default Response

data
object
required