automation-cloud
latest
false
- 基本情報
- 認証
- 範囲と権限
- プラットフォーム管理 API
特定のロボット アカウントを取得する

UiPath Automation Cloud API ガイド
最終更新日時 2025年2月24日
特定のロボット アカウントを取得する
組織およびロボット アカウント ID に基づいて、ロボット アカウントに関する情報を返します。
GET
https://cloud.uipath.com/{organizationName}/identity_/api/RobotAccount/{partitionGlobalId}/{robotAccountId}
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
パス パラメーター |
データ型 |
説明 |
---|---|---|
(必須) |
文字列 |
目的のグループを含む組織の ID です。 |
(必須) |
文字列 |
取得するロボット アカウントの ID です。 |
API 呼び出しの構築に必要な情報をすべて収集したとします。
{baseURL}
はhttps://cloud.uipath.com/{organizationName}/{tenantName}/
です。-
{access_token}
は1234
です (長さを考慮)。 {partitionGlobalId}
はmagic-7
です。{robotAccountID}
は33-ab
です。
呼び出しは次の例のようになります (cURL)。
curl --location --request GET 'https://cloud.uipath.com/{organizationName}/{tenantName}/identity_/api/RobotAccount/magic-7/33-ab' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
curl --location --request GET 'https://cloud.uipath.com/{organizationName}/{tenantName}/identity_/api/RobotAccount/magic-7/33-ab' \
--header 'Authorization: Bearer 1234' \
--header 'Content-Type: application/json'
呼び出しが成功した場合、応答本文は次のようになります。
{
"id": "33-ab",
"name": "Bot3",
"displayName": "Bot3",
"creationTime": "2021-10-19T14:25:01.6574988",
"lastModificationTime": "2021-10-19T14:25:01.6574988",
"groupIds": [
"4d161738-7204", "ce684f6f-5af3"
]
}
{
"id": "33-ab",
"name": "Bot3",
"displayName": "Bot3",
"creationTime": "2021-10-19T14:25:01.6574988",
"lastModificationTime": "2021-10-19T14:25:01.6574988",
"groupIds": [
"4d161738-7204", "ce684f6f-5af3"
]
}