Skip to main content
PUT
/
v1
/
email
/
senders
/
{id}
Update Sender
curl --request PUT \
  --url https://api.oviond.com/v1/email/senders/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nickname": "<string>",
  "from_name": "<string>",
  "from_email": "[email protected]",
  "reply_to": "[email protected]",
  "address": "<string>",
  "city": "<string>",
  "country": "<string>"
}
'
{
  "success": true,
  "data": {
    "id": "<string>",
    "from_name": "<string>",
    "from_email": "<string>",
    "account_id": "<string>",
    "nickname": "<string>",
    "reply_to": "<string>",
    "address": "<string>",
    "city": "<string>",
    "country": "<string>",
    "is_default": true,
    "is_published": true,
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
source
enum<string>
Available options:
resend,
smtp
nickname
string | null
from_name
string
Minimum string length: 1
from_email
string<email>
reply_to
string<email> | null
address
string | null
city
string | null
country
string | null

Response

200 - application/json

Sender updated

success
enum<boolean>
required
Available options:
true
data
object
required