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

# Create signing secret



## OpenAPI

````yaml post /tenants/signing-secret
openapi: 3.0.0
info:
  title: Maesn unified API
  description: The Maesn unified API description
  version: '1.0'
  contact: {}
servers:
  - url: https://api.maesn.dev
security: []
tags:
  - name: maesn
    description: ''
paths:
  /tenants/signing-secret:
    post:
      tags:
        - tenants
      operationId: createSigningSecret
      parameters:
        - name: X-API-KEY
          description: API key
          in: header
          schema:
            type: string
          required: true
      requestBody:
        required: false
        description: No request body required
        content: {}
      responses:
        '201':
          description: Signing secret created
          content:
            application/json:
              schema:
                type: object
                properties:
                  secret:
                    type: string
                    example: >-
                      a3f8c2e1d4b7a9f0e2c5d8b1a4f7c0e3d6b9a2f5c8e1d4b7a0f3c6e9d2b5a8f1

````