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

# Submit OAuth Consent

> Submits user's consent decision (approve/deny) for an OAuth request.



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml post /oauth/submit_consent
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /oauth/submit_consent:
    post:
      tags:
        - oauth
      summary: Submit OAuth Consent
      description: Submits user's consent decision (approve/deny) for an OAuth request.
      requestBody:
        description: Consent Submission Details
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/api.SubmitConsentInput'
        required: true
      responses:
        '302':
          description: Redirects to client's redirect_uri with code/state or error/state
          content: {}
        '400':
          description: Invalid input
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '401':
          description: User not authenticated or mismatch
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '404':
          description: Request not found or expired
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    api.SubmitConsentInput:
      required:
        - auth_req_id
        - decision
      type: object
      properties:
        auth_req_id:
          type: string
        decision:
          type: string
        selected_app_id:
          type: integer
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
  securitySchemes:
    BearerAuth:
      type: apiKey
      name: Authorization
      in: header

````