# Get a account by ID Retrieves a single account by its unique identifier. Endpoint: GET /v1/api/account/{id} Version: 1.2.4 Security: X-Api-Key ## Path parameters: - `id` (string, required) Account ID ## Response 200 fields (application/json): - `id` (string) Unique identifier for the Account. Example: "o1p2q3r4s5t6u7v8w9x0y1z2" - `createdAt` (string) Timestamp when the Account was created. Example: "2025-12-07T19:31:48.436+00:00" - `updatedAt` (string) Timestamp when the Account was last updated. Example: "2025-12-07T19:35:48.436+00:00" - `email` (string) Email address of the account. Example: "account@example.com" - `name` (string) Name of the account. Example: "Acme Corp" - `phone` (string) Phone number of the account. Example: "+1234567890" ## Response 400 fields (application/json): - `statusCode` (number, required) HTTP status code Example: 400 - `message` (string, required) Error message describing what went wrong Example: "Validation failed: Field `schemaField` is required." - `error` (string, required) Error type/name Enum: "Bad Request", "Unauthorized", "Forbidden", "Not Found", "Conflict", "Unprocessable Entity", "Internal Server Error" ## Response 404 fields (application/json): - `statusCode` (number, required) HTTP status code Example: 404 - `message` (string, required) Error message describing what went wrong Example: "The resource was not found." - `error` (string, required) Error type/name Enum: "Bad Request", "Unauthorized", "Forbidden", "Not Found", "Conflict", "Unprocessable Entity", "Internal Server Error"