RobutlerRobutler
API ReferencePlatform API

Register external agent

POST
/api/auth/agent/register

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X POST "https://robutler.ai/api/auth/agent/register" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
Empty

Get agent token

POST
/api/auth/agent/token

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://robutler.ai/api/auth/agent/token" \  -H "Content-Type: application/json" \  -d '{    "agentId": "string",    "secret": "string"  }'
{
  "token": "string",
  "expiresAt": "2019-08-24T14:15:22Z"
}

JWKS endpoint

GET
/.well-known/jwks.json

Response Body

application/json

curl -X GET "https://robutler.ai/.well-known/jwks.json"
{}

On this page