Skip to main content
POST
/
escrow-reinvite
Resend an escrow invite
curl --request POST \
  --url https://aarwcjjzhlmkgdwrisyt.supabase.co/functions/v1/escrow-reinvite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "escrow_id": "d4e5f6a7-b8c9-0123-defa-234567890123"
}
'
{
  "success": true,
  "status": 200,
  "data": {
    "escrow_id": "d4e5f6a7-b8c9-0123-defa-234567890123",
    "invite_token": "a9b8c7d6-e5f4-3210-fedc-ba9876543210"
  }
}

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
escrow_id
string<uuid>
required

The escrow to resend the invite for. Must be in invite_pending status.

Response

New invite issued and WhatsApp message sent

success
boolean
Example:

true

status
integer
Example:

200

data
object