Wakato Docs
API Reference

Cloud Agents

GET
/cloud-agents

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Response Body

application/json

curl -X GET "https://example.com/cloud-agents"
{}
POST
/cloud-agents

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/cloud-agents" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{}
GET
/cloud-agents/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

id*string

Response Body

application/json

curl -X GET "https://example.com/cloud-agents/string"
{}
PATCH
/cloud-agents/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

A Space API key, e.g. wks_live_….

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PATCH "https://example.com/cloud-agents/string" \  -H "Content-Type: application/json" \  -d '{}'
{}