# List of Emails List of emails Endpoint: GET /emails/api/emails Version: 3.0 Security: bearerAuth ## Query parameters: - `limit` (integer) How many items to return at one time (default 20) Example: 20 - `offset` (integer) Data offset (default 0) - `order_field` (string) Field of sorting Example: "created_at" - `order_type` (string) Type of sorting 'asc'(default) or 'desc' Enum: "asc", "desc" - `filter` (object) Search filters, supported (q) ## Response 200 fields (application/json): - `uuid` (string) - `team_id` (integer) - `user_id` (integer) - `sender_profile_uuid` (string) - `mailbox_uuid` (string) - `email_body_uuid` (string) - `flow_uuid` (string) - `flow_node_id` (integer) - `task_pipeline_uuid` (string) - `template_uuid` (string) - `gpt_prompt_uuid` (string) - `email_uid` (string) - `email_id` (string) - `folder` (string) - `lead_uuid` (string) - `status` (string) - `replied_to_uuid` (string) - `bounced_by_uuid` (string) - `type` (string) - `from_name` (string) - `from_email` (string) - `to_name` (string) - `to_email` (string) - `cc` (array) - `bcc` (array) - `subject` (string) - `headers` (array) - `sending_attempts` (integer) - `sent_at` (string) - `created_at` (string) - `updated_at` (string)