Docs

Update Account

PUT /events/{eventId}/accounts/{accountId}

PUT/events/{eventId}/accounts/{accountId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.
Event tokenx-Event-TokenOptionalRun **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually.

Updates the display name of an existing account.

Requires EventAccountingAdmin permission on the event.

Path Parameters

FieldTypeRequiredDescription
eventIdGuidRequiredThe ID of the event.
accountIdGuidRequiredThe ID of the account to update.

Request Body

FieldTypeRequiredDescription
namestringRequiredThe new display name for the account. Must not be empty.

Example Request

{
  "name": "Production Budget"
}

Response

200 OK — No response body.

Error Codes

CodeHTTP StatusDescription
UNAUTHORIZED401Missing or invalid token, or caller lacks EventAccountingAdmin.
NOT_FOUND404Account not found on this event.
BAD_REQUEST400Name is empty or invalid.