POST
/
organizations
/
{organizationId}
/
emails
curl --request POST \
  --url https://api.concord.tech/privacy-v1/organizations/{organizationId}/emails \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com"
}'
{
  "dateCreated": 123,
  "email": "jsmith@example.com",
  "id": "default",
  "name": "<string>",
  "organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "projects": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>"
    }
  ],
  "status": "verified"
}

Authorizations

x-api-key
string
header
required

Path Parameters

organizationId
string
required

Body

application/json
name
string
Maximum length: 256
email
string

Response

201
application/json
Default Response
dateCreated
integer
required
email
string
required
id
enum<string>
required
Available options:
default
status
enum<string>
required
Available options:
verified
name
string
organizationId
string
projects
object[]