latestOpenAPI 3.1.02026-08-194237902.5 MB

563848e0ecc0

Organization Outreach Settings Resource

Retrieve global outreach CC email addresses

Returns the CC email addresses configured globally for the organization, meant to apply across all outreach types (as opposed to the template-specific ccEmails on an individual type's template). As currently implemented this endpoint is a stub: the backing service does not read from any store, so the response's ccEmails field is always null here regardless of what was previously submitted via PUT to this same path. Requires the TENANT_SETTINGS_OUTREACH_READ permission.

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

Path parameters

organizationIdstring required

Organization ID whose global outreach CC emails to retrieve.

Headers

tenant-idstring required

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

Response

An OutreachCcEmailAddressesResponse. In the current implementation ccEmails is always null; 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"
  ]
}