---
title: "List assets for a person"
method: GET
path: "/api/v4/persons/{personId}/assets"
tags: ["Profile Assets"]
---

# List assets for a person

`GET /api/v4/persons/{personId}/assets`

Returns all assets attached to the person profile identified by `personId`. Assets are binary or text files associated with a program participant — for example, wallet passes, QR codes, or uploaded images. Use `getPersonAsset` to fetch a single asset's metadata, or `downloadPersonAsset` to retrieve its content.

## Path parameters

- `personId` string, required

## Response `200`

Assets attached to the person.

- PersonAssetResponse[]
  - `data_type` 'PRIVATE' | 'PUBLIC', required
  - `filename` string, required
  - `id` string, required
  - `mime_type` string, required
  - `name` string, required
  - `status` 'APPROVED' | 'DENIED' | 'PENDING_REVIEW', required
  - `tags` string[], required

## Other responses

- `400` — Person lookup failed: `invalid_person_id` if the supplied `personId` is not a valid Extole identifier, or `person_not_found` if no person with that id exists.
- `401` — Unauthorized
- `403` — Forbidden
- `415` — Unsupported Media Type
- `429` — Too Many Requests

---

[API](https://skmtc.net/extole/apis/integration-api-server-to-extole.md) · [All operations](https://skmtc.net/extole/apis/integration-api-server-to-extole/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/extole/integration-api-server-to-extole/revisions/c16e62e66755/schema)
