[{"label":"Latest (1.0)","version":"latest"}]
cloud-partner-navigator
Delete OAuth Apps By Organization ID
DescriptionRemoves the specified oAuth Apps from a specified organization. OAuth Apps are specified via Client ID.
Request
URLURL
https://console.navigator.vmware.com/cphub/api/auth/v2/orgs/{orgId}/oauth-apps
Path Parameters
Path Parameters
string
orgId
Required
Unique identifier (GUID) of the organization.
Request Body
Request Body
DeleteOrgOauthAppRequest
of mimetype application/json
Optional
The Oauth apps to be deleted from organization
{
"clientIdsToDelete": [
"string"
]
}
array of
string
clientIdsToDelete
Required
The client ids to delete.
Authentication
This operation uses the following authentication methods.
Response
Response
Response BodyResponse Body
200 OK
Returns
PartialSuccessResponseString
of type application/json
{
"failed": [
"string"
],
"succeeded": [
"string"
]
}
array of
string
failed
Optional
The entities for which the operation failed.
array of
string
succeeded
Optional
The entities for which the operation is successful.
No error details were provided in the OpenAPI specification.
Code SamplesCode Samples
cURL Command
curl -X DELETE -H "Content-Type: application/json" -d '{"clientIdsToDelete":["string"]}' https://console.navigator.vmware.com/cphub/api/auth/v2/orgs/{orgId}/oauth-apps
[{"label":"Latest (1.0)","version":"latest"}]
cloud-partner-navigator