Skip to main content
POST
/
v1
/
email-senders
/
{email_sender_id}
Update An Email Sender
curl --request POST \
  --url http://api.stuut.ai/v1/email-senders/{email_sender_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "is_shared": true,
  "signature_html": "<string>"
}
'
{
  "email": "<string>",
  "object": "<string>",
  "reply_to": "<string>",
  "user_id": "<string>",
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "expired_at": "2023-11-07T05:31:56Z",
  "is_nylas_connection": true,
  "is_nylas_grant_expired": true,
  "is_shared": true,
  "modified_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "provider": "<string>",
  "reply_to_name": "<string>",
  "signature_html": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

email_sender_id
string
required

Body

application/json
is_shared
boolean
signature_html
string | null

Response

Successful response

email
string
required

The account's email.

Maximum string length: 255
object
string
required
reply_to
string
required

This account's default reply-to

Maximum string length: 255
user_id
string
required
Maximum string length: 32
id
string
Maximum string length: 32
created_at
string<date-time>
expired_at
string<date-time> | null

The time the email sender grant expired.

is_nylas_connection
boolean
is_nylas_grant_expired
boolean

Whether the Nylas grant for this email sender has expired

is_shared
boolean

Whether this email sender should be shared with the entire organization

modified_at
string<date-time> | null
name
string | null

Email owner's name.

provider
string | null
reply_to_name
string | null

This account's default reply-to

signature_html
string | null

Email signature html.