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.
Retrieves Okta Communication Settings of your org
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": true,
- "_links": {
- "optIn": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
Opts in all users of this org to Okta communication emails
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": false,
- "_links": {
- "optOut": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}
Opts out all users of this org from Okta communication emails
Success
Forbidden
Too Many Requests
{- "optOutEmailUsers": true,
- "_links": {
- "optIn": {
- "hints": {
- "allow": [
- "POST"
]
}
}
}
}