# Account events Account events Endpoint: POST Account events Version: 1.75.0 ## Request fields (application/json): - `id` (string, required) Event unique identifier - `created_at` (string, required) Date and time when the event was created. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `type` (string, required) Event type Enum: "ACCOUNT.CREATED", "ACCOUNT.ACTIVATED", "ACCOUNT.CLOSING_INITIATED", "ACCOUNT.CLOSED", "ACCOUNT.LOCKED", "ACCOUNT.UPDATED" - `object` (object, required) - `object.id` (string, required) Account unique identifier. - `object.created_at` (string, required) Date and time when the resource was created. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `object.updated_at` (string, required) Date and time when the resource was last updated. [RFC 3339-5](https://datatracker.ietf.org/doc/html/rfc3339#section-5.6), [ISO8601 UTC](https://www.iso.org/iso-8601-date-and-time-format.html) - `object.account_group_id` (string, required) Account group unique identifier. - `object.type` (string, required) Account type. * TRADING - Orders in accounts of this type are created on a specific instrument basis. * PORTFOLIO - Orders in accounts of this type are created on a portfolio basis and additional portfolio functionality is available. Enum: "TRADING", "PORTFOLIO" - `object.users` (array, required) - `object.users.id` (string) User unique identifier. - `object.users.type` (string) Relation type * OWNER - Enum: "OWNER" - `object.name` (string, required) The name of the account. - `object.status` (string, required) The status of the account * PENDING_APPROVAL - Account approval is pending - the account is visible through our API but cannot be acted on. * ACTIVE - Account is active - full functionality of the Investment API is accessible. * CLOSING - Account is closing - only sell orders or the transfer of positions out are permissible before the account is closed. * CLOSED - Account is closed with zero balance successfully. * LOCKED - Account is locked for all actions. Enum: "PENDING_APPROVAL", "ACTIVE", "CLOSING", "CLOSED", "LOCKED" - `object.account_number` (integer, required) The serial account number of the account in the account group. - `webhook_id` (string, required) Webhook unique identifier. ## Response 200 fields