Skip to main content
POST
/
escrow-decline
Decline an escrow invite
curl --request POST \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/escrow-decline \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "token": "f1e2d3c4-b5a6-7890-fedc-ba0987654321"
}
'
{
  "success": true,
  "status": 200,
  "data": {
    "escrow_id": "d4e5f6a7-b8c9-0123-defa-234567890123"
  }
}

Authorizations

Authorization
string
header
required

JWT access token obtained from /auth-verify (login context) or /auth-signup. Set the bearer_token environment variable in your API client to apply it globally.

Body

application/json
token
string<uuid>
required

Response

Invite declined — escrow cancelled

success
boolean
Example:

true

status
integer
Example:

200

data
object