<!--
{
  "availability" : [

  ],
  "documentType" : "symbol",
  "framework" : "NotaryAPI",
  "identifier" : "/documentation/NotaryAPI/Get-Submission-Status",
  "metadataVersion" : "0.1.0",
  "role" : "Web Service Endpoint",
  "symbol" : {
    "kind" : "Web Service Endpoint",
    "modules" : [
      "Notary API"
    ],
    "preciseIdentifier" : "rest:notaryservice:get:v2-submissions-{}"
  },
  "title" : "Get Submission Status"
}
-->

# Get Submission Status

Fetch the status of a software notarization submission.

## Discussion

Use this endpoint to fetch the status of a submission request. Form the URL for the call using the identifier that you receive in the `id` field of the response to the [`Submit Software`](/documentation/NotaryAPI/Submit-Software) endpoint. If you lose the identifier, you can get a list of the most recent 100 submissions by calling the [`Get Previous Submissions`](/documentation/NotaryAPI/Get-Previous-Submissions) endpoint.

Along with the status of the request, the response indicates the date that you initiated the request and the software name that you provided at that time.

### Example

**Request:**

```https
https://appstoreconnect.apple.com/notary/v2/submissions/2efe2717-52ef-43a5-96dc-0797e4ca1041
```

**Response:**

```json
{
  "data": {
    "attributes": {
      "createdDate": "2022-06-08T01:38:09.498Z",
      "name": "OvernightTextEditor_11.6.8.zip",
      "status": "Accepted"
    },
    "id": "2efe2717-52ef-43a5-96dc-0797e4ca1041",
    "type": "submissions"
  },
  "meta": {
  }
} 
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)