POST
/
sender
Create Sender
curl --request POST \
  --url https://api.sendx.io/api/v1/rest/sender \
  --header 'Content-Type: application/json' \
  --header 'X-Team-ApiKey: <api-key>' \
  --data '{
  "name": "Linus",
  "email": "linus@linux.org"
}'
{
  "id": "sender_123",
  "name": "Linus",
  "email": "linus@linux.org"
}

Authorizations

X-Team-ApiKey
string
header
required

Body

application/json

Response

200
application/json

Sender Created Successfully

The response is of type object.