Update Sender
PUThttps://api.tinyemail.com/v1/sender-details/:id
Update an existing sender
Request
Path Parameters
id uuidrequired
ID of the sender to update
- application/json
Body
required
name string
email string
replyTo string
address string
city string
region string
country string
postalCode string
Responses
- 204
- 400
- 401
- 405
Successful operation
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "Some error message"
}
API key is missing or invalid
Method Not Allowed
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
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
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"
}'
ResponseClear