> ## Documentation Index
> Fetch the complete documentation index at: https://docs.unleashx.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Campaign Summary List

> Retrieve a lightweight list of campaigns (id + label) in the caller's workspace, for use in dropdowns and pickers. No pagination.

Use this endpoint to **retrieve a lightweight list of campaigns** (id + label) in the caller's workspace, for use in dropdowns and pickers. No pagination.

## Endpoint

**GET** `/summary-list`

**Authentication:** Required (workspace auth)

This endpoint takes no query parameters. It returns every campaign belonging to the token's company and workspace, ordered by most recently created first.

## Response

```json theme={null}
[
  {
    "id": 42,
    "label": "Diwali Outreach 2025",
    "agent_id": 7
  },
  {
    "id": 41,
    "label": "Renewal Reminders",
    "agent_id": null
  }
]
```

| Field      | Type           | Description                                  |
| ---------- | -------------- | -------------------------------------------- |
| `id`       | number         | Campaign identifier                          |
| `label`    | string         | Campaign name (empty string if not set)      |
| `agent_id` | number \| null | Voice agent attached to the campaign, if any |

## Example cURL

```bash theme={null}
curl -X GET "https://www.tryunleashx.com/api/v1/global/summary-list" \
  -H "token: <api_key>"
```


## OpenAPI

````yaml api-reference/openapi.json GET /summary-list
openapi: 3.1.0
info:
  title: >-
    UnleashX - Build human like conversations | Voice Agents | Automations | AI
    Workforce
  version: 1.0.0
  description: UnleashX - Your home for human like conversations
servers:
  - url: https://www.tryunleashx.com/api/v1/global/
security:
  - bearerAuth: []
paths:
  /summary-list:
    get:
      tags:
        - Campaigns
      summary: Campaign summary list
      description: >-
        Retrieve a lightweight list of campaigns (id + label) in the caller's
        workspace, for use in dropdowns and pickers. No pagination.
      parameters:
        - name: token
          in: header
          required: true
          description: API token for authentication
          schema:
            type: string
      responses:
        '200':
          description: Campaign summary list retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      description: Campaign identifier
                    label:
                      type: string
                      description: Campaign name
                    agent_id:
                      type: integer
                      nullable: true
                      description: Voice agent attached to the campaign, if any
        '401':
          description: Unauthorized
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````