# List locales Retrieves a paginated list of locales with optional filtering. Endpoint: GET /v1/locales Version: 1.0.0 Security: Bearer ## Query parameters: - `uuids[eq]` (array) Filter by one or more UUIDs. Accepts multiple values. - `names[eq]` (array) Filter by one or more exact names. Accepts multiple values. - `name[contains]` (string) Filter by partial name match. - `name[starts]` (string) Filter by name prefix. - `name[ends]` (string) Filter by name suffix. - `name[order]` (string) Sort order for name field. Values: asc, desc. - `codes[eq]` (array) Filter by one or more exact codes. Accepts multiple values. - `code[contains]` (string) Filter by partial code match. - `code[starts]` (string) Filter by code prefix. - `code[ends]` (string) Filter by code suffix. - `code[order]` (string) Sort order for code field. Values: asc, desc. - `statuses[eq]` (array) Filter by one or more statuses. Accepts multiple values. Enum: "draft", "active", "inactive", "removed" - `status[order]` (string) Sort order for status field. Values: asc, desc. - `createdAt[eq]` (string) Filter by exact creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[min]` (string) Filter by minimum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[max]` (string) Filter by maximum creation timestamp. Example: "2025-11-23T14:15:22.123456Z" - `createdAt[order]` (string) Sort order for creation timestamp. Values: asc, desc. - `updatedAt[eq]` (string) Filter by exact update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[min]` (string) Filter by minimum update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[max]` (string) Filter by maximum update timestamp. Example: "2025-11-23T14:15:22.123456Z" - `updatedAt[order]` (string) Sort order for update timestamp. Values: asc, desc. - `isDefault[eq]` (boolean) Filter by default status. Values: true, false. - `isRemoved[eq]` (boolean) Filter by removed status. Values: true, false. - `page` (integer) Page number for pagination. Default is 1. - `size` (integer) Page size for pagination. Default is 20. ## Response 200 fields (application/json): - `items` (array, required) - `items.uuid` (string, required) Unique identifier for this locale. - `items.createdAt` (string, required) Timestamp when this locale was created. Example: "2025-11-23T14:15:22.123456Z" - `items.updatedAt` (string, required) Timestamp when this locale was last modified. Example: "2025-11-23T14:15:22.123456Z" - `items.removedAt` (string,null) Timestamp when this locale was removed. Null if not removed. Example: "2025-11-23T14:15:22.123456Z" - `items.status` (string, required) Current lifecycle status of this locale. Enum: "draft", "active", "inactive", "removed" - `items.name` (string, required) Display name for this locale. - `items.code` (string, required) ISO language or locale code. - `items.isDefault` (boolean, required) Whether this is the default locale for the tenant. - `pagination` (object, required) - `pagination.page` (integer, required) - `pagination.size` (integer, required) - `pagination.totalItems` (integer, required) - `pagination.totalPages` (integer, required) ## Response 401 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) ## Response 403 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null) ## Response 500 fields (application/problem+json): - `type` (string,null) - `title` (string,null) - `status` (integer,null) - `detail` (string,null) - `instance` (string,null) - `correlationId` (string,null)