POST
/
sender
curl --request POST \
  --url https://api.jsxmail.org/sender \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "name": "<string>",
  "domainName": "<string>"
}'
{
  "id": "<string>",
  "username": "<string>",
  "name": "<string>",
  "email": "<string>",
  "domainId": "<string>",
  "userId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
The data of the sender to create
username
string
required
name
string
required
domainName
string
required

Response

201
application/json
Sender created
id
string
required
username
string
required
name
string
required
email
string
domainId
string
userId
string
createdAt
string