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

# Pre-approve Signing

> Pre-approve signing for a member (admin only)



## OpenAPI

````yaml POST /api/v1/cert-manager/signers/{signerId}/requests/pre-approve
openapi: 3.0.3
info:
  title: Infisical API
  description: List of all available APIs that can be consumed
  version: 0.0.1
servers:
  - url: https://us.infisical.com
    description: Production server (US)
  - url: https://eu.infisical.com
    description: Production server (EU)
  - url: http://localhost:8080
    description: Local server
security: []
paths:
  /api/v1/cert-manager/signers/{signerId}/requests/pre-approve:
    post:
      tags:
        - PKI Signers
      description: Pre-approve signing for a member (admin only)
      operationId: preApproveSigning
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: signerId
          required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                granteeUserId:
                  type: string
                  format: uuid
                granteeIdentityId:
                  type: string
                  format: uuid
                justification:
                  type: string
                  minLength: 1
                  maxLength: 2048
                requestedSignings:
                  type: integer
                  minimum: 1
                requestedWindowStart:
                  type: string
                  format: date-time
                requestedWindowEnd:
                  type: string
                  format: date-time
              required:
                - justification
              additionalProperties: false
      responses:
        '200':
          description: Default Response

````