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

# Get task submission detail

> Returns the authorized immutable answer snapshot and current public outcome.



## OpenAPI

````yaml /openapi.json get /v3/customers/{customerId}/tasks/{taskId}/submissions/{submissionId}
openapi: 3.1.0
info:
  title: Swipelux API
  version: 3.1.0
servers:
  - url: https://platform.swipelux.com
    description: Production and sandbox; environment selected by API key
security:
  - apiKey: []
tags:
  - name: customers
    x-displayName: Customers
    description: >-
      Create, list, update, export, and archive individual and business
      customers and their related parties.
  - name: capabilities
    x-displayName: Capabilities
    description: >-
      Discover, request, inspect, and cancel customer capabilities and their
      institution applications.
  - name: accounts
    x-displayName: Accounts
    description: Create, inspect, update, and archive customer accounts.
  - name: recipients
    x-displayName: Recipients
    description: Create third-party recipients and their payout destinations.
  - name: Tasks
    x-displayName: Tasks
    description: Inspect customer, capability, application, account, and transfer tasks.
  - name: Task submissions
    x-displayName: Task submissions
    description: Submit and inspect immutable answers to customer tasks.
  - name: documents
    x-displayName: Documents
    description: Upload and inspect customer documents used in task submissions.
  - name: money-movement
    x-displayName: Money movement
    description: Create quotes, execute quote-backed transfers, and inspect transfer state.
  - name: rules
    x-displayName: Rules
    description: >-
      Standing instructions that act on incoming funds. A rule watches a
      custodial wallet account (`trigger`) and, when funds become available on
      it, transfers them to a target (`action`) — most commonly a sweep to a
      non-custodial wallet destination.


      Rules match at the account credit, not at the deposit rail: fiat deposits
      settle into the issued bank account's settlement wallet account, so a rule
      on that wallet account catches ACH/SEPA/SWIFT deposits, stablecoin
      deposits, and internal transfers alike.


      The action target reuses the money-movement vocabulary (`account` for the
      customer's own accounts, `destination` for recipient destinations). At
      most one non-archived rule may watch a given trigger account. Statuses:
      `active ⇄ paused → archived` — pause and resume through PATCH, archive
      (terminal) through DELETE.
  - name: sandbox
    x-displayName: Sandbox
    description: Simulate supported account, task, capability, and transfer outcomes.
  - name: institutions
    x-displayName: Institutions
    description: List institutions referenced by capabilities and applications.
  - name: webhooks
    x-displayName: Webhooks
    description: Configure webhook endpoints and inspect delivery activity.
externalDocs:
  description: Swipelux Documentation
  url: https://docs.swipelux.com
paths:
  /v3/customers/{customerId}/tasks/{taskId}/submissions/{submissionId}:
    get:
      tags:
        - Task submissions
      summary: Get task submission detail
      description: >-
        Returns the authorized immutable answer snapshot and current public
        outcome.
      operationId: getCustomerTaskSubmission
      parameters:
        - name: customerId
          in: path
          required: true
          description: Customer identifier.
          schema:
            type: string
            minLength: 1
        - name: taskId
          in: path
          required: true
          description: Task identifier.
          schema:
            type: string
            minLength: 1
        - name: submissionId
          in: path
          required: true
          description: Submission identifier.
          schema:
            type: string
            minLength: 1
      responses:
        '200':
          description: Authorized submission detail.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SubmissionDetailResponse'
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
        '400':
          description: Query parameters are not supported.
          content:
            application/problem+json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - type
                  - title
                  - status
                  - code
                  - detail
                  - correlationId
                  - retryable
                properties:
                  type:
                    type: string
                    format: uri
                    description: Documentation URL for this stable problem code.
                  title:
                    type: string
                    description: Short human-readable problem title.
                  status:
                    type: integer
                    minimum: 400
                    maximum: 599
                    description: HTTP status code.
                  code:
                    type: string
                    enum:
                      - unknown_parameter
                    description: Stable snake_case error code.
                  detail:
                    type: string
                    description: Actionable problem detail for legitimate callers.
                  correlationId:
                    type: string
                    description: Request correlation id. Mirrors `X-Request-Id`.
                  transferId:
                    type: string
                    description: >-
                      Existing transfer that consumed the quote. Present on
                      `quote_already_executed`.
                  retryable:
                    type: boolean
                    enum:
                      - false
                    description: Static retry guidance for this problem code.
                  errors:
                    type: array
                    description: Field-level validation errors.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - pointer
                        - code
                        - message
                      properties:
                        pointer:
                          type: string
                          description: JSON Pointer into the request body.
                        code:
                          type: string
                          description: Machine-readable field error code.
                        message:
                          type: string
                          description: Human-readable field error message.
                  statusReason:
                    type: object
                    description: >-
                      Structured reason for a state conflict when the failed
                      operation depends on the resource's current status.
                    required:
                      - code
                      - message
                      - actor
                      - retryable
                    properties:
                      code:
                        type: string
                        description: >-
                          Stable snake_case reason code from the documented
                          catalog.
                        example: sanctions_screening_failed
                      message:
                        type: string
                        description: Human-readable explanation of the current status.
                      actor:
                        type: string
                        enum:
                          - customer
                          - developer
                          - provider
                          - network
                          - swipelux
                        description: >-
                          Party whose action moves the resource forward: the end
                          customer, the developer integrating the API, the
                          underlying provider, payment network or rail, or
                          Swipelux. Closed enum — exhaustive; additions would be
                          a breaking change.
                      retryable:
                        type: boolean
                        description: >-
                          Whether retrying the blocked operation without
                          changing its inputs or state may succeed.
                  reviewAnswer:
                    type: string
                    nullable: true
                    description: Verification review answer when supplied by the verifier.
                  capabilities:
                    type: array
                    minItems: 1
                    items:
                      type: string
                    description: Capability ids that satisfy the failed operation.
                  blockingResources:
                    type: array
                    minItems: 1
                    description: >-
                      Customer resources that must be resolved before the
                      requested operation can proceed, sorted by type and id.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - type
                        - id
                        - requiredAction
                      properties:
                        type:
                          type: string
                          enum:
                            - account
                            - transfer
                        id:
                          type: string
                          description: Public id of the blocking resource.
                        requiredAction:
                          type: string
                          enum:
                            - archive_account
                            - cancel_transfer
                            - wait_for_transfer
                            - resolve_transfer
                          description: Next action required before retrying the operation.
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
        '401':
          description: Authentication is required.
          content:
            application/problem+json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - type
                  - title
                  - status
                  - code
                  - detail
                  - correlationId
                  - retryable
                properties:
                  type:
                    type: string
                    format: uri
                    description: Documentation URL for this stable problem code.
                  title:
                    type: string
                    description: Short human-readable problem title.
                  status:
                    type: integer
                    minimum: 400
                    maximum: 599
                    description: HTTP status code.
                  code:
                    type: string
                    enum:
                      - unauthorized
                    description: Stable snake_case error code.
                  detail:
                    type: string
                    description: Actionable problem detail for legitimate callers.
                  correlationId:
                    type: string
                    description: Request correlation id. Mirrors `X-Request-Id`.
                  transferId:
                    type: string
                    description: >-
                      Existing transfer that consumed the quote. Present on
                      `quote_already_executed`.
                  retryable:
                    type: boolean
                    enum:
                      - false
                    description: Static retry guidance for this problem code.
                  errors:
                    type: array
                    description: Field-level validation errors.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - pointer
                        - code
                        - message
                      properties:
                        pointer:
                          type: string
                          description: JSON Pointer into the request body.
                        code:
                          type: string
                          description: Machine-readable field error code.
                        message:
                          type: string
                          description: Human-readable field error message.
                  statusReason:
                    type: object
                    description: >-
                      Structured reason for a state conflict when the failed
                      operation depends on the resource's current status.
                    required:
                      - code
                      - message
                      - actor
                      - retryable
                    properties:
                      code:
                        type: string
                        description: >-
                          Stable snake_case reason code from the documented
                          catalog.
                        example: sanctions_screening_failed
                      message:
                        type: string
                        description: Human-readable explanation of the current status.
                      actor:
                        type: string
                        enum:
                          - customer
                          - developer
                          - provider
                          - network
                          - swipelux
                        description: >-
                          Party whose action moves the resource forward: the end
                          customer, the developer integrating the API, the
                          underlying provider, payment network or rail, or
                          Swipelux. Closed enum — exhaustive; additions would be
                          a breaking change.
                      retryable:
                        type: boolean
                        description: >-
                          Whether retrying the blocked operation without
                          changing its inputs or state may succeed.
                  reviewAnswer:
                    type: string
                    nullable: true
                    description: Verification review answer when supplied by the verifier.
                  capabilities:
                    type: array
                    minItems: 1
                    items:
                      type: string
                    description: Capability ids that satisfy the failed operation.
                  blockingResources:
                    type: array
                    minItems: 1
                    description: >-
                      Customer resources that must be resolved before the
                      requested operation can proceed, sorted by type and id.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - type
                        - id
                        - requiredAction
                      properties:
                        type:
                          type: string
                          enum:
                            - account
                            - transfer
                        id:
                          type: string
                          description: Public id of the blocking resource.
                        requiredAction:
                          type: string
                          enum:
                            - archive_account
                            - cancel_transfer
                            - wait_for_transfer
                            - resolve_transfer
                          description: Next action required before retrying the operation.
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
        '403':
          description: The credential cannot read submission detail.
          content:
            application/problem+json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - type
                  - title
                  - status
                  - code
                  - detail
                  - correlationId
                  - retryable
                properties:
                  type:
                    type: string
                    format: uri
                    description: Documentation URL for this stable problem code.
                  title:
                    type: string
                    description: Short human-readable problem title.
                  status:
                    type: integer
                    minimum: 400
                    maximum: 599
                    description: HTTP status code.
                  code:
                    type: string
                    enum:
                      - forbidden
                    description: Stable snake_case error code.
                  detail:
                    type: string
                    description: Actionable problem detail for legitimate callers.
                  correlationId:
                    type: string
                    description: Request correlation id. Mirrors `X-Request-Id`.
                  transferId:
                    type: string
                    description: >-
                      Existing transfer that consumed the quote. Present on
                      `quote_already_executed`.
                  retryable:
                    type: boolean
                    enum:
                      - false
                    description: Static retry guidance for this problem code.
                  errors:
                    type: array
                    description: Field-level validation errors.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - pointer
                        - code
                        - message
                      properties:
                        pointer:
                          type: string
                          description: JSON Pointer into the request body.
                        code:
                          type: string
                          description: Machine-readable field error code.
                        message:
                          type: string
                          description: Human-readable field error message.
                  statusReason:
                    type: object
                    description: >-
                      Structured reason for a state conflict when the failed
                      operation depends on the resource's current status.
                    required:
                      - code
                      - message
                      - actor
                      - retryable
                    properties:
                      code:
                        type: string
                        description: >-
                          Stable snake_case reason code from the documented
                          catalog.
                        example: sanctions_screening_failed
                      message:
                        type: string
                        description: Human-readable explanation of the current status.
                      actor:
                        type: string
                        enum:
                          - customer
                          - developer
                          - provider
                          - network
                          - swipelux
                        description: >-
                          Party whose action moves the resource forward: the end
                          customer, the developer integrating the API, the
                          underlying provider, payment network or rail, or
                          Swipelux. Closed enum — exhaustive; additions would be
                          a breaking change.
                      retryable:
                        type: boolean
                        description: >-
                          Whether retrying the blocked operation without
                          changing its inputs or state may succeed.
                  reviewAnswer:
                    type: string
                    nullable: true
                    description: Verification review answer when supplied by the verifier.
                  capabilities:
                    type: array
                    minItems: 1
                    items:
                      type: string
                    description: Capability ids that satisfy the failed operation.
                  blockingResources:
                    type: array
                    minItems: 1
                    description: >-
                      Customer resources that must be resolved before the
                      requested operation can proceed, sorted by type and id.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - type
                        - id
                        - requiredAction
                      properties:
                        type:
                          type: string
                          enum:
                            - account
                            - transfer
                        id:
                          type: string
                          description: Public id of the blocking resource.
                        requiredAction:
                          type: string
                          enum:
                            - archive_account
                            - cancel_transfer
                            - wait_for_transfer
                            - resolve_transfer
                          description: Next action required before retrying the operation.
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
        '404':
          description: The submission was not found.
          content:
            application/problem+json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - type
                  - title
                  - status
                  - code
                  - detail
                  - correlationId
                  - retryable
                properties:
                  type:
                    type: string
                    format: uri
                    description: Documentation URL for this stable problem code.
                  title:
                    type: string
                    description: Short human-readable problem title.
                  status:
                    type: integer
                    minimum: 400
                    maximum: 599
                    description: HTTP status code.
                  code:
                    type: string
                    enum:
                      - submission_not_found
                    description: Stable snake_case error code.
                  detail:
                    type: string
                    description: Actionable problem detail for legitimate callers.
                  correlationId:
                    type: string
                    description: Request correlation id. Mirrors `X-Request-Id`.
                  transferId:
                    type: string
                    description: >-
                      Existing transfer that consumed the quote. Present on
                      `quote_already_executed`.
                  retryable:
                    type: boolean
                    enum:
                      - false
                    description: Static retry guidance for this problem code.
                  errors:
                    type: array
                    description: Field-level validation errors.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - pointer
                        - code
                        - message
                      properties:
                        pointer:
                          type: string
                          description: JSON Pointer into the request body.
                        code:
                          type: string
                          description: Machine-readable field error code.
                        message:
                          type: string
                          description: Human-readable field error message.
                  statusReason:
                    type: object
                    description: >-
                      Structured reason for a state conflict when the failed
                      operation depends on the resource's current status.
                    required:
                      - code
                      - message
                      - actor
                      - retryable
                    properties:
                      code:
                        type: string
                        description: >-
                          Stable snake_case reason code from the documented
                          catalog.
                        example: sanctions_screening_failed
                      message:
                        type: string
                        description: Human-readable explanation of the current status.
                      actor:
                        type: string
                        enum:
                          - customer
                          - developer
                          - provider
                          - network
                          - swipelux
                        description: >-
                          Party whose action moves the resource forward: the end
                          customer, the developer integrating the API, the
                          underlying provider, payment network or rail, or
                          Swipelux. Closed enum — exhaustive; additions would be
                          a breaking change.
                      retryable:
                        type: boolean
                        description: >-
                          Whether retrying the blocked operation without
                          changing its inputs or state may succeed.
                  reviewAnswer:
                    type: string
                    nullable: true
                    description: Verification review answer when supplied by the verifier.
                  capabilities:
                    type: array
                    minItems: 1
                    items:
                      type: string
                    description: Capability ids that satisfy the failed operation.
                  blockingResources:
                    type: array
                    minItems: 1
                    description: >-
                      Customer resources that must be resolved before the
                      requested operation can proceed, sorted by type and id.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - type
                        - id
                        - requiredAction
                      properties:
                        type:
                          type: string
                          enum:
                            - account
                            - transfer
                        id:
                          type: string
                          description: Public id of the blocking resource.
                        requiredAction:
                          type: string
                          enum:
                            - archive_account
                            - cancel_transfer
                            - wait_for_transfer
                            - resolve_transfer
                          description: Next action required before retrying the operation.
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
        '500':
          description: The submission could not be read.
          content:
            application/problem+json:
              schema:
                type: object
                additionalProperties: false
                required:
                  - type
                  - title
                  - status
                  - code
                  - detail
                  - correlationId
                  - retryable
                properties:
                  type:
                    type: string
                    format: uri
                    description: Documentation URL for this stable problem code.
                  title:
                    type: string
                    description: Short human-readable problem title.
                  status:
                    type: integer
                    minimum: 400
                    maximum: 599
                    description: HTTP status code.
                  code:
                    type: string
                    enum:
                      - internal_error
                    description: Stable snake_case error code.
                  detail:
                    type: string
                    description: Actionable problem detail for legitimate callers.
                  correlationId:
                    type: string
                    description: Request correlation id. Mirrors `X-Request-Id`.
                  transferId:
                    type: string
                    description: >-
                      Existing transfer that consumed the quote. Present on
                      `quote_already_executed`.
                  retryable:
                    type: boolean
                    enum:
                      - true
                    description: Static retry guidance for this problem code.
                  errors:
                    type: array
                    description: Field-level validation errors.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - pointer
                        - code
                        - message
                      properties:
                        pointer:
                          type: string
                          description: JSON Pointer into the request body.
                        code:
                          type: string
                          description: Machine-readable field error code.
                        message:
                          type: string
                          description: Human-readable field error message.
                  statusReason:
                    type: object
                    description: >-
                      Structured reason for a state conflict when the failed
                      operation depends on the resource's current status.
                    required:
                      - code
                      - message
                      - actor
                      - retryable
                    properties:
                      code:
                        type: string
                        description: >-
                          Stable snake_case reason code from the documented
                          catalog.
                        example: sanctions_screening_failed
                      message:
                        type: string
                        description: Human-readable explanation of the current status.
                      actor:
                        type: string
                        enum:
                          - customer
                          - developer
                          - provider
                          - network
                          - swipelux
                        description: >-
                          Party whose action moves the resource forward: the end
                          customer, the developer integrating the API, the
                          underlying provider, payment network or rail, or
                          Swipelux. Closed enum — exhaustive; additions would be
                          a breaking change.
                      retryable:
                        type: boolean
                        description: >-
                          Whether retrying the blocked operation without
                          changing its inputs or state may succeed.
                  reviewAnswer:
                    type: string
                    nullable: true
                    description: Verification review answer when supplied by the verifier.
                  capabilities:
                    type: array
                    minItems: 1
                    items:
                      type: string
                    description: Capability ids that satisfy the failed operation.
                  blockingResources:
                    type: array
                    minItems: 1
                    description: >-
                      Customer resources that must be resolved before the
                      requested operation can proceed, sorted by type and id.
                    items:
                      type: object
                      additionalProperties: false
                      required:
                        - type
                        - id
                        - requiredAction
                      properties:
                        type:
                          type: string
                          enum:
                            - account
                            - transfer
                        id:
                          type: string
                          description: Public id of the blocking resource.
                        requiredAction:
                          type: string
                          enum:
                            - archive_account
                            - cancel_transfer
                            - wait_for_transfer
                            - resolve_transfer
                          description: Next action required before retrying the operation.
          headers:
            Cache-Control:
              description: Prevents storage of sensitive task data.
              schema:
                type: string
                enum:
                  - no-store
              example: no-store
components:
  schemas:
    SubmissionDetailResponse:
      type: object
      additionalProperties: false
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/SubmissionDetail'
    SubmissionDetail:
      type: object
      additionalProperties: false
      required:
        - id
        - taskId
        - customerId
        - remediationRound
        - taskRevision
        - outcome
        - answers
        - submittedAt
        - updatedAt
      properties:
        id:
          type: string
        taskId:
          type: string
        customerId:
          type: string
        remediationRound:
          type: integer
          minimum: 0
        taskRevision:
          type: integer
          minimum: 1
        outcome:
          type: string
          enum:
            - in_review
            - accepted
            - changes_requested
            - rejected
          description: Closed submission review outcome.
        answers:
          type: array
          items:
            $ref: '#/components/schemas/SubmissionSnapshotAnswerEntry'
        reviewFeedback:
          $ref: '#/components/schemas/ReviewFeedback'
        submittedAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    SubmissionSnapshotAnswerEntry:
      type: object
      additionalProperties: false
      required:
        - requirementId
        - answer
      properties:
        requirementId:
          type: string
        alternativeKey:
          type: string
        answer:
          $ref: '#/components/schemas/SubmissionSnapshotAnswer'
    ReviewFeedback:
      type: object
      additionalProperties: false
      required:
        - code
        - message
      properties:
        code:
          type: string
          description: Stable actionable feedback code.
        message:
          type: string
          description: Redacted developer-facing review feedback.
    SubmissionSnapshotAnswer:
      oneOf:
        - $ref: '#/components/schemas/ProfileSubmissionAnswer'
        - $ref: '#/components/schemas/TextSubmissionAnswer'
        - $ref: '#/components/schemas/DateSubmissionAnswer'
        - $ref: '#/components/schemas/SingleSelectSubmissionAnswer'
        - $ref: '#/components/schemas/MultiSelectSubmissionAnswer'
        - $ref: '#/components/schemas/BooleanSubmissionAnswer'
        - $ref: '#/components/schemas/AttestationSubmissionSnapshot'
        - $ref: '#/components/schemas/DocumentSubmissionAnswer'
        - $ref: '#/components/schemas/ResourceReferenceSubmissionAnswer'
        - $ref: '#/components/schemas/AbsenceSubmissionAnswer'
      discriminator:
        propertyName: type
    ProfileSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - value
      properties:
        type:
          type: string
          enum:
            - profile
          description: Submission answer discriminator.
        value:
          anyOf:
            - type: string
              minLength: 1
              maxLength: 256
              pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
              description: >-
                A 1-256 character string without leading/trailing whitespace or
                control characters.
            - type: boolean
            - $ref: '#/components/schemas/SubmissionProfileAddress'
            - $ref: '#/components/schemas/SubmissionProfileRegistration'
            - $ref: '#/components/schemas/SubmissionProfileFlows'
            - $ref: '#/components/schemas/SubmissionProfileOwnership'
            - type: array
              uniqueItems: true
              items:
                type: string
                enum:
                  - business_expenses
                  - charitable_donations
                  - cross_border_remittance
                  - ecommerce
                  - family_support
                  - investment
                  - payroll
                  - operate_company
                  - personal_expenses
                  - purchase_goods_and_services
                  - receive_freelance_payments
                  - receive_payments
                  - receive_salary
                  - tax_optimization
                  - tax_payments
                  - third_party_money_transmission
                  - treasury_management
                  - wealth_preservation
                  - other
            - type: array
              uniqueItems: true
              items:
                type: string
                pattern: ^[A-Z]{2}$
            - type: array
              uniqueItems: true
              items:
                $ref: '#/components/schemas/SubmissionProfileTaxIdentifier'
          x-max-serialized-utf8-bytes: 131072
          x-max-depth: 12
          x-max-aggregate-entries: 512
    TextSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - value
      properties:
        type:
          type: string
          enum:
            - text
          description: Submission answer discriminator.
        value:
          type: string
          minLength: 1
          maxLength: 16384
    DateSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - value
      properties:
        type:
          type: string
          enum:
            - date
          description: Submission answer discriminator.
        value:
          type: string
          format: date
          description: A real Gregorian calendar date from year 0001 through 9999.
    SingleSelectSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - value
      properties:
        type:
          type: string
          enum:
            - single_select
          description: Submission answer discriminator.
        value:
          type: string
          minLength: 1
    MultiSelectSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - values
      properties:
        type:
          type: string
          enum:
            - multi_select
          description: Submission answer discriminator.
        values:
          type: array
          minItems: 1
          uniqueItems: true
          items:
            type: string
    BooleanSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - value
      properties:
        type:
          type: string
          enum:
            - boolean
          description: Submission answer discriminator.
        value:
          type: boolean
    AttestationSubmissionSnapshot:
      type: object
      additionalProperties: false
      required:
        - type
        - accepted
        - text
        - version
      properties:
        type:
          type: string
          enum:
            - attestation
          description: Submission answer discriminator.
        accepted:
          type: boolean
          enum:
            - true
          description: Attestations can only be submitted as accepted.
        acceptedAt:
          type: string
          format: date-time
        endUserIpAddress:
          type: string
        endUserUserAgent:
          type: string
          minLength: 1
          maxLength: 1024
        text:
          type: string
          minLength: 1
          description: Immutable text presented for acceptance.
        version:
          type: string
          minLength: 1
          description: Immutable attestation text version.
    DocumentSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - documentIds
      properties:
        type:
          type: string
          enum:
            - document
          description: Submission answer discriminator.
        documentIds:
          type: array
          minItems: 1
          maxItems: 32
          uniqueItems: true
          items:
            type: string
            pattern: ^doc_
    ResourceReferenceSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - relatedPartyId
      properties:
        type:
          type: string
          enum:
            - resource_reference
          description: Submission answer discriminator.
        relatedPartyId:
          type: string
          pattern: ^rp_
    AbsenceSubmissionAnswer:
      type: object
      additionalProperties: false
      required:
        - type
        - reason
      properties:
        type:
          type: string
          enum:
            - absence
          description: Submission answer discriminator.
        reason:
          type: string
          enum:
            - not_available
            - not_applicable
            - does_not_exist
            - other
          description: Why the requested value cannot be provided.
        explanation:
          type: string
      oneOf:
        - properties:
            reason:
              type: string
              enum:
                - not_available
                - not_applicable
                - does_not_exist
              description: Absence reason that does not require an explanation.
        - required:
            - explanation
          properties:
            reason:
              type: string
              enum:
                - other
              description: Absence reason that requires an explanation.
            explanation:
              type: string
              minLength: 1
              pattern: \S
    SubmissionProfileAddress:
      type: object
      additionalProperties: false
      required: []
      properties:
        streetLine1:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        streetLine2:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        city:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        state:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        postalCode:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        country:
          type: string
          pattern: ^[A-Z]{2}$
      minProperties: 1
    SubmissionProfileRegistration:
      type: object
      additionalProperties: false
      required: []
      properties:
        jurisdiction:
          $ref: '#/components/schemas/SubmissionProfileJurisdiction'
        number:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        formationDate:
          type: string
          format: date
          description: A real Gregorian calendar date from year 0001 through 9999.
      minProperties: 1
    SubmissionProfileFlows:
      type: object
      additionalProperties: false
      required: []
      properties:
        payin:
          $ref: '#/components/schemas/SubmissionProfileFlowDirection'
        payout:
          $ref: '#/components/schemas/SubmissionProfileFlowDirection'
    SubmissionProfileOwnership:
      type: object
      additionalProperties: false
      required: []
      properties:
        declared:
          type: boolean
        directPercentage:
          type: string
          pattern: ^(?:(?:0|[1-9][0-9]?)(?:\.[0-9]+)?|100(?:\.0+)?)$
        indirectPercentage:
          type: string
          pattern: ^(?:(?:0|[1-9][0-9]?)(?:\.[0-9]+)?|100(?:\.0+)?)$
        effectivePercentage:
          type: string
          pattern: ^(?:(?:0|[1-9][0-9]?)(?:\.[0-9]+)?|100(?:\.0+)?)$
      anyOf:
        - required:
            - declared
          properties:
            declared:
              type: boolean
              enum:
                - true
        - required:
            - directPercentage
        - required:
            - indirectPercentage
        - required:
            - effectivePercentage
    SubmissionProfileTaxIdentifier:
      type: object
      additionalProperties: false
      required:
        - type
        - country
        - value
      properties:
        type:
          type: string
          enum:
            - ssn
            - itin
            - ein
            - tin
            - vat
            - cpf
            - cnpj
            - other
        typeDescription:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
        country:
          type: string
          pattern: ^[A-Z]{2}$
        value:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
      oneOf:
        - not:
            required:
              - typeDescription
          properties:
            type:
              type: string
              enum:
                - ssn
                - itin
                - ein
                - tin
                - vat
                - cpf
                - cnpj
        - required:
            - typeDescription
          properties:
            type:
              type: string
              enum:
                - other
    SubmissionProfileJurisdiction:
      type: object
      additionalProperties: false
      required:
        - country
      properties:
        country:
          type: string
          pattern: ^[A-Z]{2}$
        region:
          type: string
          minLength: 1
          maxLength: 256
          pattern: ^(?!\s)(?!.*\s$)[^\u0000-\u001F\u007F-\u009F]+$
          description: >-
            A 1-256 character string without leading/trailing whitespace or
            control characters.
    SubmissionProfileFlowDirection:
      type: object
      additionalProperties: false
      required:
        - firstParty
        - thirdParty
      properties:
        firstParty:
          type: boolean
        thirdParty:
          type: boolean
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key
      description: Your Swipelux API key. Obtain this from the Swipelux Dashboard.

````

## Related topics

- [Get customer task detail](/api-reference/tasks/get-customer-task.md)
- [List task submissions](/api-reference/task-submissions/list-customer-task-submissions.md)
- [Create a task submission](/api-reference/task-submissions/create-customer-task-submission.md)
- [Individual onboarding API workflow](/knowledge-base/individual-onboarding/api-workflow.md)
- [Review sandbox task submission](/api-reference/sandbox/post-v3-sandbox-tasks-by-task-id-review.md)
