Skip to main content
PUT
/
v2
/
accounts
/
{account_id}
Update Account
curl --request PUT \
  --url https://api.ahasend.com/v2/accounts/{account_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "Updated Company Name",
  "website": "https://example.com",
  "track_opens": true
}'
{
  "object": "account",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "name": "<string>",
  "website": "<string>",
  "about": "<string>",
  "track_opens": true,
  "track_clicks": true,
  "reject_bad_recipients": true,
  "reject_mistyped_recipients": true,
  "message_metadata_retention": 123,
  "message_data_retention": 123
}

Authorizations

Authorization
string
header
required

API key for authentication

Path Parameters

account_id
string<uuid>
required

Account ID

Body

application/json
name
string

Account name

Maximum length: 255
website
string<uri>

Account website URL

about
string

Account description (used for account verification)

track_opens
boolean

Default open tracking setting

track_clicks
boolean

Default click tracking setting

reject_bad_recipients
boolean

Whether to reject bad recipients

reject_mistyped_recipients
boolean

Whether to reject mistyped recipients

message_metadata_retention
integer

Default message metadata retention in days

Required range: 1 <= x <= 30
message_data_retention
integer

Default message data retention in days

Required range: 0 <= x <= 30

Response

Account updated successfully

object
enum<string>
required

Object type identifier

Available options:
account
id
string<uuid>
required

Unique identifier for the account

created_at
string<date-time>
required

When the account was created

updated_at
string<date-time>
required

When the account was last updated

name
string
required

Account name

website
string<uri> | null

Account website URL

about
string | null

Account description

track_opens
boolean

Default open tracking setting

track_clicks
boolean

Default click tracking setting

reject_bad_recipients
boolean

Whether to reject bad recipients

reject_mistyped_recipients
boolean

Whether to reject mistyped recipients

message_metadata_retention
integer

Default message metadata retention in days

message_data_retention
integer

Default message data retention in days