Agent SwarmAgent Swarm

Favorites

Favorites API endpoints

GET
/api/favorites

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Query Parameters

itemType?string
Value in"page" | "workflow" | "schedule"
itemIds?string

Response Body

curl -X GET "http://localhost:3013/api/favorites"
Empty
Empty
PUT
/api/favorites

Authorization

bearerAuth
AuthorizationBearer <token>

API key via Authorization: Bearer <API_KEY>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

curl -X PUT "http://localhost:3013/api/favorites" \  -H "Content-Type: application/json" \  -d '{    "itemType": "page",    "itemId": "string",    "favorite": true  }'
Empty
Empty