---
title: "List affiliate invitations"
method: GET
path: "/v1/affiliates/invites"
tags: ["Affiliates"]
---

# List affiliate invitations

`GET /v1/affiliates/invites`

Retrieve a paginated list of the invitations you have sent, with their status (`pending` until accepted, `accepted` once the affiliate has joined).

## Query parameters

- `page_number` number
- `page_size` number

## Response `200`

Successfully retrieved affiliate invitations

- AffiliateInviteListEntity
  - `items` AffiliateInviteEntity[], required — List of affiliate invitation items
    - `id` string, required — Unique identifier for the object.
    - `mode` 'test' | 'prod' | 'sandbox', required — String representing the environment.
    - `object` string, required — String representing the object's type. Objects of the same type share the same value.
    - `email` string, required — The email address the affiliate was invited with.
    - `name` string, nullable — The display name the affiliate was invited with.
    - `status` string, required — The lifecycle status of the invitation: `pending` while the invitee has not yet accepted, `accepted` once they have joined the program.
    - `created_at` number, required — Creation date of the invitation as a timestamp.
  - `pagination` PaginationEntity, required
    - `total_records` number, required — Total number of records in the list
    - `total_pages` number, required — Total number of pages available
    - `current_page` number, required — The current page number
    - `next_page` number, nullable, required — The next page number, or null if there is no next page
    - `prev_page` number, nullable, required — The previous page number, or null if there is no previous page

## Other responses

- `400` — Bad Request - Invalid input parameters
- `401` — Unauthorized - Invalid or missing API key
- `404` — Not Found - Resource does not exist

---

[API](https://skmtc.net/creem/apis/creem-api.md) · [All operations](https://skmtc.net/creem/apis/creem-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/creem/creem-api/revisions/11305a63d3c9/schema)
