bot 변수 데이터 가져오기
AAE_Bot Insight Admin
역할을 가진 사용자는 API를 이용하여 배포된 bots의 변수(예: 변수 이름, 데이터 유형, 최소값 및 최대값)에 대한 정보를 검색할 수 있습니다.
GET <control_room_URL>/v2/botinsight/data/api/gettaskvariableprofile
매개변수 | 설명 | 유형 | 필수 | 참고 |
---|---|---|---|---|
botname |
데이터를 검색할 bot의 이름입니다. | 문자열 | 선택 사항 | |
repositorypath |
bot의 Control Room 리포지토리 경로입니다. | 문자열 | 선택 사항 |
헤더 이름 | 값 |
---|---|
X-Authorization | <authentication_token> |
샘플 출력
{
"businessData":[
{
"totalRecords":23,
"count":23,
"pageNo":1,
"botId":"PROD_12",
"botName":"testBot",
"repositoryPath":"Automation Anywhere/Bots/testBot",
"list":[
{
"transactionName":"block1",
"transactions":[
{
"executionId":"e05f4c41-00e5-4b1b-93a6-8fefe5462e51",
"transactionId":"f1c9edfa-ccc5-4b75-9ddb-cd28d8743b77",
"dateLogged":"2019-10-24T09:25:02.194365800Z",
"data":{
},
"environment":"PROD"
}
]
},
{
"transactionName":"block2",
"transactions":[
{
"executionId":"e05f4c41-00e5-4b1b-93a6-8fefe5462e51",
"transactionId":"f1c9edfa-ccc5-4b75-9ddb-cd28d8743b77",
"dateLogged":"2019-10-24T09:25:02.194365800Z",
"data":{
},
"environment":"PROD"
}
]
}
]
}
]
}