---
title: "Get a list of customer resources"
method: GET
path: "/api/v1/customers/{id}/resources"
tags: ["Customers"]
---

# Get a list of customer resources

`GET /api/v1/customers/{id}/resources`

Retrieves a paginated list of resources within the same customer.

## Path parameters

- `id` string, required

## Query parameters

- `after` string, uuid
- `before` string, uuid
- `limit` integer

## Headers

- `X-ACCOUNT-ID` string
- `X-ENVIRONMENT-ID` string

## Response `200`

A paginated list of customer resource objects.

- CustomerResourceListResponseDto — Response list object
  - `data` object[], required
    - `id` string, required — Resource slug
    - `createdAt` string, date-time, required — Timestamp of when the record was created
    - `updatedAt` string, date-time, required — Timestamp of when the record was last updated
  - `pagination` object, required — Pagination metadata including cursors for navigating through results
    - `next` string, uuid, nullable, required — Cursor for fetching the next page of results, or null if no additional pages exist
    - `prev` string, uuid, nullable, required — Cursor for fetching the previous page of results, or null if at the beginning

## Other responses

- `400` — bad request.
- `401` — User is not authenticated.
- `403` — User is not allowed to access this resource.
- `429` — Too many requests.

---

[API](https://skmtc.net/stiggio/apis/stigg-api.md) · [All operations](https://skmtc.net/stiggio/apis/stigg-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stiggio/stigg-api/versions/ffc977f1c07e/schema)
