POST
/
mcp-server
/
instance
/
set-auth-token
curl --request POST \
  --url https://api.klavis.ai/mcp-server/instance/set-auth-token \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "instanceId": "<string>",
  "authToken": "<string>"
}'
{
  "success": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Enter your API key with the format: 'Bearer your-api-key'

Body

application/json
instanceId
string
required

The unique identifier for the connection instance

authToken
string
required

The authentication token to save

Response

200
application/json
Successful Response
success
boolean
required
message
string | null