> ## Documentation Index
> Fetch the complete documentation index at: https://docs.series.hr/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Submission Status

> Get submission status for a user

Get the submission status of a user's application for a specific centre.

## Request

```bash theme={null}
curl -X GET https://api.series.hr/applications/submission/714760171/centre_123 \
  -H "apikey: YOUR_API_KEY"
```

## Parameters

<ParamField path="userId" type="string" required>
  Roblox user ID
</ParamField>

<ParamField path="centreId" type="string" required>
  Application centre ID
</ParamField>

## Response

<ResponseField status={200} name="200">
  ```json theme={null}
  {
    "success": true,
    "data": {
      "applicationId": "app_xyz789",
      "UserId": "714760171",
      "CentreId": "centre_123",
      "status": "under_review",
      "submittedAt": "2024-01-15T10:30:00Z",
      "reviewedAt": null
    }
  }
  ```
</ResponseField>


## OpenAPI

````yaml GET /applications/submission/{userId}/{centreId}
openapi: 3.0.0
info:
  title: Series API
  version: 1.0.0
  description: >-
    Series API — a free REST API by Sailboat Games, LLC that lets Roblox
    communities programmatically manage workspaces, staff, sessions, time-off
    and activity data.
  contact:
    name: Sailboat Games, LLC.
    email: admin@sailboatgames.com
servers:
  - url: https://api.series.hr
    description: Production API
security:
  - ApiKeyAuth: []
paths:
  /applications/submission/{userId}/{centreId}:
    get:
      tags:
        - Applications
      summary: Get Submission Status
      description: Get submission status for a user
      parameters:
        - name: userId
          in: path
          required: true
          schema:
            type: string
        - name: centreId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Submission status
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Pass your API key in the `apikey` header. Alternatively, the `x-api-key`
        header is also accepted.

````