Returns the list of all categories available in the system.
Categories are used to organize projects, agents, and jobs.
API for managing projects, jobs, datasets, and ETL pipelines on WebRobot.
The API uses API Keys for authentication. Include the X-API-Key header in all requests.
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories \
-H 'X-API-Key: YOUR_API_KEY_HERE'[ { "id": "string", "name": "string", "description": "string", "icon": "string", "visibility": "PUBLIC", "enabled": true, "agentIds": [ … ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" } ]
curl -i -X POST \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"id": "string",
"name": "string",
"description": "string",
"icon": "string",
"visibility": "PUBLIC",
"enabled": true,
"agentIds": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}'{ "id": "string", "name": "string", "description": "string", "icon": "string", "visibility": "PUBLIC", "enabled": true, "agentIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories/id/1 \
-H 'X-API-Key: YOUR_API_KEY_HERE'{ "id": "string", "name": "string", "description": "string", "icon": "string", "visibility": "PUBLIC", "enabled": true, "agentIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
curl -i -X PUT \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories/id/1 \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"id": "string",
"name": "string",
"description": "string",
"icon": "string",
"visibility": "PUBLIC",
"enabled": true,
"agentIds": [
"string"
],
"createdAt": "2019-08-24T14:15:22Z",
"updatedAt": "2019-08-24T14:15:22Z"
}'{ "id": "string", "name": "string", "description": "string", "icon": "string", "visibility": "PUBLIC", "enabled": true, "agentIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
curl -i -X DELETE \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories/id/1 \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories/my-category \
-H 'X-API-Key: YOUR_API_KEY_HERE'{ "id": "string", "name": "string", "description": "string", "icon": "string", "visibility": "PUBLIC", "enabled": true, "agentIds": [ "string" ], "createdAt": "2019-08-24T14:15:22Z", "updatedAt": "2019-08-24T14:15:22Z" }
curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/webrobot/api/categories/test \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/webrobot/api/html/{url}/{protocol}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X PUT \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'curl -i -X DELETE \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}/{id}' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X GET \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}?page=0&pageSize=50' \
-H 'X-API-Key: YOUR_API_KEY_HERE'curl -i -X POST \
'http://docs.webrobot.eu/_mock/openapi/api/strapi-tables/{table}' \
-H 'Content-Type: application/json' \
-H 'X-API-Key: YOUR_API_KEY_HERE' \
-d '{
"property1": {},
"property2": {}
}'curl -i -X GET \
http://docs.webrobot.eu/_mock/openapi/health \
-H 'X-API-Key: YOUR_API_KEY_HERE'