---
title: "GlobalSubmissionResponse"
url: "https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579/schemas/GlobalSubmissionResponse"
---

> Full API specification: https://apipartners.mosaicinsurance.com/apis/trident-sandbox-1/versions/063565b3-7d5d-4ebb-9e4e-ea5966a41579.md

# GlobalSubmissionResponse

Minimal response returned after the base Step Function completes.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Trident APIs
  version: dev
servers:
  - url: https://apinonprod.mosaicinsurance.com
    description: Generated server url
components:
  schemas:
    GlobalSubmissionResponse:
      type: object
      description: Minimal response returned after the base Step Function completes.
      properties:
        submissionId:
          type: string
          format: uuid
          description: Correlation id for tracing the background full + quote executions
            in logs
          example: 9b3f7c1c-1f0a-4e2d-9d7c-2e3a8b4c6d2e
        policyNo:
          type: string
          description: Policy number produced by the base submission step
          example: Q0038456
        policyKey:
          type: string
          description: Policy key produced by the base submission step, propagated to the
            async steps
          example: "20894"
        policyActivityKey:
          type: string
          description: Policy activity key produced by the base submission step
          example: "45632"
        status:
          type: string
          enum:
            - ACCEPTED
            - FAILED
          description: ACCEPTED means the full step is running in background; FAILED means
            the base step failed
          example: ACCEPTED
        message:
          type: string
          description: Human-readable message
          example: Base submission succeeded. The full step is running asynchronously.
```
