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

Response

201
application/json

Default Response

The response is of type object.