latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

Organization Outreach Settings Resource

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.

put/organizations/{organizationId}/outreach-settings/cc-emails

Path parameters

organizationIdstring required

Organization ID whose global outreach CC emails to set.

Headers

tenant-idstring required

Tenant ID of the requesting user; must be a non-blank string or the request fails with 400.

Request body

ccEmailsstring[]

List of global CC email addresses for all outreach types

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.

ccEmailsstring[] nullable

List of global CC email addresses for all outreach types. Null in the current implementation, which does not persist or read this value; see the operation description on GET/PUT .../outreach-settings/cc-emails.

Example response

{
  "ccEmails": [
    "sunayana.kalekar@certifyos.com",
    "mail@certifyos.com"
  ]
}