# List sender profiles

Retrieve all sender profiles. A sender profile represents a person (with linked LinkedIn account and/or email mailbox) who sends outreach messages.

Endpoint: GET /flows/api/sender-profiles
Version: 2.0.0
Security: bearerAuth

## Query parameters:

  - `limit` (integer)
    Items per page (default 20).
    Example: 20

  - `offset` (integer)
    Items to skip (default 0).

  - `order_field` (string)
    Sort field (default created_at).
    Example: "created_at"

  - `order_type` (string)
    Sort direction.
    Enum: "asc", "desc"

  - `filter` (object)
    Filters.

## Response 200 fields (application/json):

  - `data` (array)

  - `data.uuid` (string)
    Example: "a1b2c3d4-e5f6-7890-abcd-ef1234567890"

  - `data.team_id` (integer)

  - `data.linkedin_browser_id` (integer,null)
    ID of the linked LinkedIn browser.

  - `data.linkedin_account_uuid` (string,null)

  - `data.mailbox_uuid` (string,null)

  - `data.assignee_user_id` (integer,null)

  - `data.first_name` (string)
    Example: "John"

  - `data.last_name` (string)
    Example: "Doe"

  - `data.label` (string,null)
    Example: "Sales Team - US"

  - `data.avatar_url` (string,null)
    Profile photo URL.

  - `data.schedule` (object)
    Working hours schedule.

  - `data.schedule.timezone` (string, required)
    Example: "Europe/Berlin"

  - `data.schedule.use_lead_timezone` (boolean)

  - `data.schedule.timeblocks` (array, required)

  - `data.schedule.timeblocks.dow` (integer)
    Day of week (0=Sunday).

  - `data.schedule.timeblocks.min` (integer)
    Start time in minutes from midnight.
    Example: 540

  - `data.schedule.timeblocks.max` (integer)
    End time in minutes from midnight.
    Example: 1080

  - `data.smart_limits_enabled` (boolean)
    Whether smart sending limits are active.

  - `data.status` (string)
    Sender profile status.
    Enum: "enabled", "disabled"

  - `data.hold_tasks_till` (string,null)
    Tasks are held until this time (set automatically during execution).

  - `data.last_automation_server_id` (integer,null)

  - `data.notification_emails` (string,null)

  - `data.user_id` (integer)

  - `data.created_at` (string)

  - `data.updated_at` (string)

  - `limit` (integer)

  - `offset` (integer)

  - `total` (integer)

  - `has_more` (boolean)


