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

# List Campaign Recipient Lists

> # Description

Find all recipients list for the campaign.


# Response
```json
[
  {
    "id": "campaign recipient list id", 
    "campaignId": "campaign id",
    "recipientListId": "recipient list id",
    "audienceId": "audience id",
    "channels": [
       "email",
       "sms"
    ]
  }
]
```

where:

- `id`: Campaign recipient list id.  
- `audienceId`: Audience id of the audience the recipient list belongs to. *Optional*.  
- `recipientListId`: Recipient list id.  
- `channels`: List of channels the campaign recipient list will send the survey. If it has `email` then it will send emails to all campaign recipients with emails. If it has `sms` then it will send sms to all campaign recipients with phone

# Description

Find all recipients list for the campaign.

# Response

```json theme={null}
[
  {
    "id": "campaign recipient list id", 
    "campaignId": "campaign id",
    "recipientListId": "recipient list id",
    "audienceId": "audience id",
    "channels": [
       "email",
       "sms"
    ]
  }
]
```

where:

* `id`: Campaign recipient list id.
* `audienceId`: Audience id of the audience the recipient list belongs to. *Optional*.
* `recipientListId`: Recipient list id.
* `channels`: List of channels the campaign recipient list will send the survey. If it has `email` then it will send emails to all campaign recipients with emails. If it has `sms` then it will send sms to all campaign recipients with phone

##### Query Parameters

| Parameter | Description | Required | Example |
| --------- | ----------- | -------- | ------- |
| `filter`  | —           | No       | —       |


## OpenAPI

````yaml GET /campaigns-service/v1/campaignRecipientLists
openapi: 3.0.3
info:
  title: SightX API
  version: 1.0.0
  description: >-
    SightX REST API documentation. Most responses are JSON; some export
    endpoints return files. API access is a paid add-on — contact
    sales@sightx.io for details.
servers:
  - url: https://auth.admin.sightx.io
    description: Authentication (Production)
  - url: https://auth.staging-admin.sightx.io
    description: Authentication (Staging)
security:
  - AuthorizationHeader: []
paths:
  /campaigns-service/v1/campaignRecipientLists:
    get:
      summary: List Campaign Recipient Lists
      description: >-
        # Description


        Find all recipients list for the campaign.



        # Response

        ```json

        [
          {
            "id": "campaign recipient list id", 
            "campaignId": "campaign id",
            "recipientListId": "recipient list id",
            "audienceId": "audience id",
            "channels": [
               "email",
               "sms"
            ]
          }
        ]

        ```


        where:


        - `id`: Campaign recipient list id.  

        - `audienceId`: Audience id of the audience the recipient list belongs
        to. *Optional*.  

        - `recipientListId`: Recipient list id.  

        - `channels`: List of channels the campaign recipient list will send the
        survey. If it has `email` then it will send emails to all campaign
        recipients with emails. If it has `sms` then it will send sms to all
        campaign recipients with phone
      operationId: >-
        list-campaign-recipient-lists-get-campaigns-service-v1-campaignrecipientlists
      parameters:
        - name: Authorization
          in: header
          required: true
          schema:
            type: string
        - name: filter
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      servers:
        - url: https://campaigns.sightx.io
components:
  securitySchemes:
    AuthorizationHeader:
      type: apiKey
      in: header
      name: Authorization
      description: Access token obtained from the m2m-token endpoint.

````