563848e0ecc0
Set global outreach CC email addresses
Accepts a new list of CC email addresses to apply globally, across all outreach types, for the organization. As currently implemented this endpoint is a no-op: the backing service accepts the request body but does not persist it anywhere, so a subsequent GET to this same path will not reflect the values submitted here. The response body echoes back the submitted list, which can be misleading given the lack of persistence. Every entry in ccEmails must be a non-blank string, or the request fails with 400. Requires the TENANT_SETTINGS_OUTREACH_UPDATE permission.
Path parameters
Organization ID whose global outreach CC emails to set.
Headers
Tenant ID of the requesting user; must be a non-blank string or the request fails with 400.
Request body
Example request
{
"ccEmails": [
"sunayana.kalekar@certifyos.com",
"mail@certifyos.com"
]
}Response
An OutreachCcEmailAddressesResponse that echoes the ccEmails submitted in the request body. Nothing is persisted in the current implementation; see the operation description.
Example response
{
"ccEmails": [
"sunayana.kalekar@certifyos.com",
"mail@certifyos.com"
]
}