Skip to main content

Update Sender

PUT 

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

Update an existing sender

Request

Path Parameters

    id uuidrequired

    ID of the sender to update

Body

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

Responses

Successful operation

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 PUT 'https://api.tinyemail.com/v1/sender-details/:id' \
-H 'Content-Type: 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
Parameters
— pathrequired
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!