Skip to main content
POST
/
lease-tokens
/
validate
Introspect a leased token
curl --request POST \
  --url https://api.example.com/lease-tokens/validate \
  --header 'Content-Type: application/json' \
  --data '
{
  "lease_token": "<string>"
}
'
{
  "active": true,
  "connection_id": "<string>",
  "capability_id": "<string>",
  "scopes": [
    "<string>"
  ],
  "expires_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.myme.so/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
lease_token
string
required
Minimum string length: 1

Response

Active flag plus lease metadata when active. Returns 200 with active: false for unknown / expired / revoked leases.

active
boolean
required
connection_id
string
capability_id
string
scopes
string[]
expires_at
string