The Principal Rate Limits API provides operations to manage Principal Rate Limits for your organization.
okta.principalRateLimits.read
Lists all Principal Rate Limit entities considering the provided parameters
OK
Bad Request
Forbidden
Too Many Requests
[- {
- "createdBy": "string",
- "createdDate": "2019-08-24T14:15:22Z",
- "defaultConcurrencyPercentage": 0,
- "defaultPercentage": 0,
- "id": "string",
- "lastUpdate": "2019-08-24T14:15:22Z",
- "lastUpdatedBy": "string",
- "orgId": "string",
- "principalId": "string",
- "principalType": "SSWS_TOKEN"
}
]
okta.principalRateLimits.manage
Creates a new Principal Rate Limit entity. In the current release, we only allow one Principal Rate Limit entity per org and principal.
Created
Bad Request
Forbidden
Not Found
Too Many Requests
{- "principalId": "token1234",
- "principalType": "SSWS_TOKEN",
- "defaultPercentage": 50,
- "defaultConcurrencyPercentage": 75
}
{- "id": "abcd1234",
- "orgId": "org1234",
- "principalId": "token1234",
- "principalType": "SSWS_TOKEN",
- "defaultPercentage": 50,
- "defaultConcurrencyPercentage": 75,
- "createdDate": "2022-05-19T20:05:32.720Z",
- "createdBy": "user1234",
- "lastUpdate": "2022-05-20T21:13:07.410Z",
- "lastUpdatedBy": "user4321"
}
okta.principalRateLimits.read
Retrieves a Principal Rate Limit entity by principalRateLimitId
OK
Forbidden
Not Found
Too Many Requests
{- "id": "abcd1234",
- "orgId": "org1234",
- "principalId": "token1234",
- "principalType": "SSWS_TOKEN",
- "defaultPercentage": 50,
- "defaultConcurrencyPercentage": 75,
- "createdDate": "2022-05-19T20:05:32.720Z",
- "createdBy": "user1234",
- "lastUpdate": "2022-05-20T21:13:07.410Z",
- "lastUpdatedBy": "user4321"
}
okta.principalRateLimits.manage
Replaces a principal rate limit entity by principalRateLimitId
OK
Bad Request
Forbidden
Not Found
Too Many Requests
{- "principalId": "token1234",
- "principalType": "SSWS_TOKEN",
- "defaultPercentage": 50,
- "defaultConcurrencyPercentage": 75
}
{- "id": "abcd1234",
- "orgId": "org1234",
- "principalId": "token1234",
- "principalType": "SSWS_TOKEN",
- "defaultPercentage": 50,
- "defaultConcurrencyPercentage": 75,
- "createdDate": "2022-05-19T20:05:32.720Z",
- "createdBy": "user1234",
- "lastUpdate": "2022-05-20T21:13:07.410Z",
- "lastUpdatedBy": "user4321"
}