---
title: "Rename a sender profile"
method: PATCH
path: "/sender-profiles/{id}"
tags: ["Sender Profiles"]
---

# Rename a sender profile

`PATCH /sender-profiles/{id}`

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.

## Path parameters

- `id` string, required

## Request body

- object
  - `name` string, required — New display name. Trimmed before saving.

## Response `200`

Sender profile renamed

- object
  - `success` boolean
  - `senderProfile` SenderProfileSummary
    - `id` string
    - `name` string
    - `email` string
    - `domainId` string
    - `domain` string, nullable
    - `domainStatus` string, nullable — Aggregate verification status of the sending domain.
    - `canSend` boolean — True when the domain's DNS and selected home transport are both ready.
    - `isDefault` boolean
    - `createdAt` string, date-time
  - `renamed` boolean — False when the profile already carried that name, so nothing changed.

## Other responses

- `400` — Name is empty or longer than 255 characters
- `401` — Unauthorized
- `404` — Sender profile not found in this company
- `409` — Another sender identity for the same address already uses that name

---

[API](https://skmtc.net/sequenzy/apis/sequenzy-api.md) · [All operations](https://skmtc.net/sequenzy/apis/sequenzy-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sequenzy/sequenzy-api/versions/af1cf9620482/schema)
