Skip to main content
POST
/
api
/
share
/
auth
Authenticate Share Link
curl --request POST \
  --url https://api.example.com/api/share/auth \
  --header 'Content-Type: application/json' \
  --data '
{
  "share_token": "<string>"
}
'
{
  "access_token": "<string>",
  "token_type": "bearer",
  "agent_id": 123,
  "agent_name": "<string>",
  "agent_logo": "<string>",
  "agent_description": "<string>",
  "suggested_prompts": []
}

Body

application/json
share_token
string
required

Response

Successful Response

access_token
string
required
token_type
string
default:bearer
agent_id
integer | null
agent_name
string | null
agent_logo
string | null
agent_description
string | null
suggested_prompts
string[]