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"
}
Creates a new send from email.
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"
}
Default Response
The response is of type object
.