> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/009_subscriptions/005__list_paginated_pending_b2c_subscription_requests.md).

# List Pending B2C Subscription Requests (User, Paginated)

GraphQL endpoint: `/user`

Lists the subscription requests companies have sent to the calling user that are still PENDING; requests that were already responded to are excluded. Results are cursor-paginated: pass `limit` and the previous page's `nextCursor` as `cursor` to fetch the next page.

## Query

```graphql
query ($limit: Int, $cursor: String) {
  paginatedPendingB2cSubscriptionRequests(limit: $limit, cursor: $cursor) {
    paginationInfo {
      limit
      nextCursor
    }
    records {
      id
      type
      status
      company {
        id
      }
    }
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "paginatedPendingB2cSubscriptionRequests": {
      "paginationInfo": {
        "limit": 20,
        "nextCursor": null
      },
      "records": [
        {
          "company": {
            "id": "00000000-0000-4000-8000-000000000001"
          },
          "id": "00000000-0000-4000-8000-000000000002",
          "status": "PENDING",
          "type": "EMAIL"
        },
        {
          "company": {
            "id": "00000000-0000-4000-8000-000000000003"
          },
          "id": "00000000-0000-4000-8000-000000000004",
          "status": "PENDING",
          "type": "EMAIL"
        },
        {
          "company": {
            "id": "00000000-0000-4000-8000-000000000005"
          },
          "id": "00000000-0000-4000-8000-000000000006",
          "status": "PENDING",
          "type": "EMAIL"
        }
      ]
    }
  }
}
```
