AskUI Suite
- ADE
- AskUIOCRTeaching
- AskUIRemoteDeviceSnippingTool
- AskUIRunnerManager
- AskUIWindowsTools
- PxProxy
- Python
- UIController
Workspace Services API
- Access Tokens
- Agent Executions
- Agents
- Billing
- Files
- Runner Jobs
- Runs
- Schedules
- Usage
- Workspace Memberships
- Workspaces
Agents
Create Agent
POST
/
api
/
v1
/
agents
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"status": "ACTIVE",
"autoConfirm": true,
"description": "",
"emailTrigger": {
"active": true,
"allowedSenders": [
"<string>"
],
"email": "<string>"
},
"dataSchema": {
"title": "DataToExtract",
"description": "",
"type": "object",
"properties": {},
"required": [
"<string>"
]
},
"dataDestinations": [
{
"type": "ASKUI_WORKFLOW",
"host": "SELF",
"runnerTags": [
"<string>"
],
"workflows": [
"<string>"
]
}
],
"workspaceId": "<string>",
"folderPath": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
201
application/json
Successful Response
The response is of type object
.
Was this page helpful?
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"name": "<string>",
"status": "ACTIVE",
"autoConfirm": true,
"description": "",
"emailTrigger": {
"active": true,
"allowedSenders": [
"<string>"
],
"email": "<string>"
},
"dataSchema": {
"title": "DataToExtract",
"description": "",
"type": "object",
"properties": {},
"required": [
"<string>"
]
},
"dataDestinations": [
{
"type": "ASKUI_WORKFLOW",
"host": "SELF",
"runnerTags": [
"<string>"
],
"workflows": [
"<string>"
]
}
],
"workspaceId": "<string>",
"folderPath": "<string>"
}