The Org Communication Settings API provides operations to manage the communication settings for your Okta org. For example, opt users in or out of communication emails.
okta.orgs.read
Retrieves Okta Communication Settings of your org
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": true,
- "_links": {
- "optIn": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
okta.orgs.manage
Opts in all users of this org to Okta communication emails
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": false,
- "_links": {
- "optOut": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
okta.orgs.manage
Opts out all users of this org from Okta communication emails
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": true,
- "_links": {
- "optIn": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}