automation-suite
2.2510
true
UiPath Automation Suite API ガイド
- スタート アップ ガイド
- 認証
- 範囲と権限
- プラットフォーム管理 API
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
Identity API を使用して、Automation Suite 組織内の外部 OAuth クライアントの名前、リダイレクト URL、スコープ、証明書を更新します。
外部 OAuth アプリケーションの名前、リダイレクト URL、スコープ、または証明書を更新します。
API エンドポイント
PUT https://{yourDomain}/{organizationName}/identity_/api/ExternalClient/{partitionGlobalId}/{clientId}
スコープ
次のスコープのいずれかが必要です。
PM.OAuthAppPM.OAuthApp.Write
要求ヘッダー
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
--header 'Authorization: Bearer {access_token}'\
--header 'Content-Type: application/json'
注:
{access_token}を取得するには、「認証方法」に記載されているいずれかの方法で認証を行ってください。
要求本文
要求本文には、特定の外部クライアントが存在する組織 ID と、対応するクライアント ID が含まれます。
{
"partitionGlobalId": "<organizationId>",
"clientId": "<clientId>"
}
{
"partitionGlobalId": "<organizationId>",
"clientId": "<clientId>"
}
応答
200 サクセス
指定した外部クライアントが正常に更新されました。
{
"name": "string",
"redirectUri": "string",
"scopes": [
{
"name": "string",
"displayName": "string",
"description": "string",
"type": "user"
}
],
"clientCertificates": [
{}
]
}
{
"name": "string",
"redirectUri": "string",
"scopes": [
{
"name": "string",
"displayName": "string",
"description": "string",
"type": "user"
}
],
"clientCertificates": [
{}
]
}