> ## 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.

# Request to Sign

> Open a request to sign with this signer (operator self-serve)



## OpenAPI

````yaml POST /api/v1/cert-manager/signers/{signerId}/requests
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:
    post:
      tags:
        - PKI Signers
      description: Open a request to sign with this signer (operator self-serve)
      operationId: requestToSign
      parameters:
        - schema:
            type: string
            format: uuid
          in: path
          name: signerId
          required: true
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                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

````