The Org Support Settings API provides operations to manage the support settings for your Okta org.
okta.orgs.manage
Retrieves the Okta Aerial consent grant details for your Org. Returns a 404 Not Found error if no consent has been granted.
Success
Can't complete request due to errors
Forbidden
Consent hasn't been given and there are no grants to any Aerial Accounts
Too Many Requests
Example response of consent details
{- "accountId": "0200bs0617vvhv2v675mch1cukp",
- "grantDate": "2023-04-06T21:32:33.000Z",
- "grantedBy": "00uabcdefg1234567890"
}
okta.orgs.manage
Grants an Okta Aerial account access to your Org. If the org is a child org, consent is taken from the parent org. Grant calls directly to the child are not allowed.
Success
Can't complete request due to errors
Forbidden
Too Many Requests
Request body to grant an Okta Aerial account access to your Org
{- "accountId": "0200bs0617vvhv2v675mch1cukp"
}
Example response of consent details
{- "accountId": "0200bs0617vvhv2v675mch1cukp",
- "grantDate": "2023-04-06T21:32:33.000Z",
- "grantedBy": "00uabcdefg1234567890"
}
okta.orgs.manage
Revokes access of an Okta Aerial account to your Org. The revoke operation will fail if the org has already been added to an Aerial account.
Success
Can't complete request due to errors
Forbidden
Too Many Requests
Request body for revoking an Okta Aerial account
{- "accountId": "0200bs0617vvhv2v675mch1cukp"
}
{- "_links": {
- "grant": {
- "hints": {
- "allow": [
- "DELETE"
]
}, - "href": "string",
- "name": "string",
- "templated": true,
- "type": "string"
}
}
}
okta.orgs.read
Retrieves Okta Support Settings for your org
Success
Forbidden
Too Many Requests
{- "support": "ENABLED",
- "expiration": "2024-01-24T11:13:14.000Z",
- "_links": {
- "extend": {
- "hints": {
- "allow": [
- "POST"
]
}
}, - "revoke": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
okta.orgs.manage
Extends the length of time that Okta Support can access your org by 24 hours. This means that 24 hours are added to the remaining access time.
Success
Forbidden
Too Many Requests
{- "support": "ENABLED",
- "expiration": "2024-01-24T11:13:14.000Z",
- "_links": {
- "extend": {
- "hints": {
- "allow": [
- "POST"
]
}
}, - "revoke": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
okta.orgs.manage
Grants Okta Support temporary access your org as an administrator for eight hours
Success
Forbidden
Too Many Requests
{- "support": "ENABLED",
- "expiration": "2024-01-24T11:13:14.000Z",
- "_links": {
- "extend": {
- "hints": {
- "allow": [
- "POST"
]
}
}, - "revoke": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
okta.orgs.manage
Revokes Okta Support access to your org
Success
Forbidden
Too Many Requests
{- "support": "DISABLED",
- "expiration": null,
- "_links": {
- "grant": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}