POST
/
merchant
/
email
/
email_sender_setup
curl --request POST \
  --url https://api.unibee.top/merchant/email/email_sender_setup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "<string>",
  "name": "<string>"
}'
{
  "code": 123,
  "data": {},
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
address
string
required

The address of email sender, like 'no-reply@unibee.dev'

name
string
required

The name of email sender, like 'no-reply'

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string