---
title: "List Submissions for a Registration"
method: GET
path: "/providers/registrations/{provider_id}/submissions/"
tags: ["Registrations", "Collection Submissions"]
---

# List Submissions for a Registration

`GET /providers/registrations/{provider_id}/submissions/`

Retrieve a list of submissions associated with a specific registration.
A submission represents an attempt to add a registration to a collection, typically requiring moderation or approval.
#### Permissions - Only authenticated users with access to the registration can view submission data. - Access to submission details may depend on the moderation settings of the related collections.
#### Returns - A JSON object with a `data` key containing an array of submission objects. - Each submission reflects its current moderation status and relevant metadata.

## Path parameters

- `provider_id` string, required

## Query parameters

- `filter[state]` string
- `page` integer
- `per_page` integer

## Response `200`

Successful retrieval of the list of submissions for the registration.

- object
  - `data` object[], required
    - `id` string, required
    - `type` string, required
    - `attributes` object, required
      - `state` 'in_progress' | 'pending' | 'accepted' | 'rejected' | 'removed', required
      - `date_submitted` string, date-time, required
    - `relationships` object, required
      - `collection` object, required
        - `data` object
          - `type` string
          - `id` string
      - `creator` object, required
        - `data` object
          - `type` string
          - `id` string
    - `links` object, required
      - `self` string
  - `links` object
    - `self` string
    - `next` string — Link to the next page of results, if applicable.
    - `prev` string — Link to the previous page of results, if applicable.
  - `meta` object
    - `total` integer — Total number of submissions.
    - `per_page` integer — Number of submissions per page.
    - `version` string — API version.

## Other responses

- `401` — Unauthorized. Authentication is required to access these submissions.
- `403` — Forbidden. You do not have permission to view these submissions.
- `404` — Not Found. No registration matches the given ID.

---

[API](https://skmtc.net/osf/apis/osf-apiv2-documentation.md) · [All operations](https://skmtc.net/osf/apis/osf-apiv2-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/osf/osf-apiv2-documentation/versions/ca701048eb0d/schema)
