POST
/
api
/
channel
/
senders
Create Channel Sender
curl --request POST \
  --url https://api.embedreach.com/api/channel/senders \
  --header 'Content-Type: application/json' \
  --data '{
  "channelAccountId": "<string>",
  "name": "<string>",
  "channelSenderMetadata": {
    "type": "email",
    "userPart": "<string>",
    "emailReplyTo": "<string>",
    "emailFromName": "<string>"
  }
}'
{
  "success": true,
  "message": "<string>",
  "data": {
    "id": "<string>",
    "channelAccountId": "<string>",
    "name": "<string>",
    "channelSenderMetadata": {
      "userPart": "<string>",
      "emailReplyTo": "<string>",
      "emailFromName": "<string>",
      "from": "<string>",
      "messageServiceSid": "<string>",
      "friendlyName": "<string>"
    }
  }
}

Headers

reach-tenant-id
string

If using a platform scoped JWT, you can pass in a header to impersonate a specific tenant to impersonate the request as.

Body

application/json

Response

200
application/json

Status 200 response

The response is of type object.