Create an event trigger
Create an event trigger for a Bot Runner user, role, or bot file. Ensure that the associated users and roles have a Bot Runner license.
Request
POST http://{{ControlRoolURL}}/v1/triggers/triggermapping
Header: X-Authorization <<authentication token>>
使用身份验证 API 生成 JSON Web 令牌。请参阅身份验证 API。Request body for users:
{
"botFileId":106587,
"botFileLabel":"string",
"users":{
"userIds":[
"985"
]
}
}
Request body for roles:
{
"botFileId":106587,
"botFileLabel":"string",
"roles":{
"roleIds":[
721, 645
]
}
}
Request Parameters
Parameter | Type | Required | Description |
---|---|---|---|
botFileId | Integer | Yes | Unique identifier of the bot file. |
botFileLabel | String | No | Bot file label. It can be PRODUCTION or empty for the latest version. |
userIds | Array | Yes* | Enter the IDs of the user. Only the users listed here will be
associated with the trigger. 注: The user associated with these
userIds must have a Bot Runner license to run the API. |
roleIds | Array | Enter the IDs of the role. Only the roles listed here will be
associated with the trigger. 注: The users associated with these
roleIds must have a Bot Runner license to run the API. |
|
*One of the previously mentioned parameters is required to create an event trigger. |
Response
{
"triggerMappings": [
{
"id": "399",
"userId": "985",
"botPath": "Automation Anywhere\\Bots\\botA",
"modifiedBy": "289",
"lastModified": "2022-04-06T09:09:43.893256Z",
"botName": "botA",
"botId": "106587",
"botLabel": "string"
}
]
}
Response Parameters
Parameter | Type | Description |
---|---|---|
triggerMappings | Array | The triggerMappings array returns with all the details of the
triggerMapping created. Each array element contains the following
values:
|