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

# Submit an end user to multiple funders

> Queues eligible submissions and reports each requested submission separately.



## OpenAPI

````yaml https://app.herondata.io/swagger post /api/broker/end_users/{end_user_heron_id}/funder_submissions/submit_to_funders/
openapi: 3.0.0
info:
  contact:
    email: support@herondata.io
    name: Support
  title: Heron Data API
  version: '2021-07-19'
servers:
  - description: Production
    url: https://app.herondata.io
security:
  - ApiKeyAuth:
      - key_XXX
externalDocs:
  description: Read Tutorial
  url: https://docs.herondata.io/
paths:
  /api/broker/end_users/{end_user_heron_id}/funder_submissions/submit_to_funders/:
    post:
      summary: Submit an end user to multiple funders
      description: >-
        Queues eligible submissions and reports each requested submission
        separately.
      parameters:
        - description: The Heron ID of the end user
          in: path
          name: end_user_heron_id
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkSubmitFunderSubmissionsRequestSchema'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/BulkSubmitFunderSubmissionResultSchema'
                type: array
          description: Per-submission queue outcomes
        '404':
          description: End user not found
        '422':
          description: Invalid request
      security:
        - ApiKeyAuth: []
components:
  schemas:
    BulkSubmitFunderSubmissionsRequestSchema:
      additionalProperties: false
      properties:
        submission_heron_ids:
          items:
            type: string
          maxItems: 200
          minItems: 1
          type: array
        use_sandbox:
          type: boolean
      required:
        - submission_heron_ids
        - use_sandbox
      type: object
    BulkSubmitFunderSubmissionResultSchema:
      additionalProperties: false
      properties:
        error:
          readOnly: true
          type: string
        outcome:
          enum:
            - submitted
            - failed
            - skipped
          readOnly: true
        submission_heron_id:
          readOnly: true
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      in: header
      name: x-api-key
      type: apiKey

````