Custom Domain docs
API referenceSharing

Read a share link's server-side prefill (token is the bearer credential)

GET
/share/{token}

Public by design — the opaque, unguessable token in the path IS the credential (mirroring the OAuth callback's state-as-credential pattern), so no bearer is required. Returns the stored prefill so a teammate's widget can resume the flow. A share token EXPIRES 30 days after it is minted; unknown OR expired tokens are indistinguishable and both return 404.

Path Parameters

token*string

Response Body

application/json

application/json

curl -X GET "https://example.com/share/string"
{  "token": "string",  "application_id": "string",  "job_id": "string",  "prefill": {}}
{  "code": "string",  "title": "string",  "details": "string"}