v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-04231129815.9 KB
Sender Profiles

Rename a sender profile

Renames one sender (From) profile in place. Only the display name changes - the address, its sending domain, and the account-wide default From selection are left untouched, so a display name can be standardized across the several identities one mailbox may carry. To change which profile is the account default instead, use PATCH /v1/companies/{companyId} with senderProfileId. Requires companies:manage.

patch/sender-profiles/{id}

Path parameters

idstring required

Sender profile ID, from GET /v1/sender-profiles.

Request body

namestring required

New display name. Trimmed before saving.

Example request

{
  "name": "SnapCount"
}

Response

Sender profile renamed

successboolean
renamedboolean

False when the profile already carried that name, so nothing changed.

Example response

{
  "success": true
}