Skip to main content

Create Sender Details

POST 

https://api.tinyemail.com/v1/sender-details

Create a new sender

Request

Body

required
    name stringrequired
    email stringrequired
    replyTo string
    address stringrequired
    city stringrequired
    region stringrequired
    country stringrequired
    postalCode stringrequired

Responses

Successful operation

Schema
    id uuid
    name string
    email string
    replyTo string
    address string
    city string
    region string
    country string
    postalCode string
    emailConfirmed boolean
    defaults boolean
    assignedToCampaigns boolean
    dkimSigned boolean

Authorization: X-API-KEY

name: X-API-KEYtype: apiKeyin: headerdescription: To obtain API-KEY, please contact our customer support by email support@tinyemail.com or directly by chat.
curl -L -X POST 'https://api.tinyemail.com/v1/sender-details' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'X-API-KEY: <API_KEY_VALUE>' \
--data-raw '{
"name": "my contacts",
"email": "no-reply@tinyemail.com",
"replyTo": "no-reply@tinyemail.com",
"address": "Some address",
"city": "Some City",
"region": "Some Region",
"country": "Some Country",
"postalCode": "000000"
}'
Request Collapse all
Base URL
https://api.tinyemail.com/v1
Auth
Body required
{
"name": "my contacts",
"email": "no-reply@tinyemail.com",
"replyTo": "no-reply@tinyemail.com",
"address": "Some address",
"city": "Some City",
"region": "Some Region",
"country": "Some Country",
"postalCode": "000000"
}
ResponseClear

Click the Send API Request button above and see the response here!