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

# Registro dinâmico de cliente (RFC 7591)



## OpenAPI

````yaml /openapi/tenant.pt-BR.json post /api/v2/sso/{customerName}/register
openapi: 3.0.1
info:
  title: Cativa Tenant API (public)
  version: public
servers:
  - url: https://apis.cativalab.digital/tenant
security: []
paths:
  /api/v2/sso/{customerName}/register:
    post:
      tags:
        - SSO
      summary: Registro dinâmico de cliente (RFC 7591)
      operationId: Sso_RegisterClient
      parameters:
        - name: customerName
          in: path
          required: true
          schema:
            type: string
        - name: Cativa-Customer
          in: header
          description: >-
            Tenant slug. Anonymous endpoints carry no API key to identify the
            tenant, so name it here (e.g. mycommunity). In production the tenant
            is also resolved from the request origin.
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: >-
                #/components/schemas/Cativa.Sso.Application.Requests.CativaIdp.RegisterClient.RegisterClientRequest
        required: true
      responses:
        '200':
          description: OK
components:
  schemas:
    Cativa.Sso.Application.Requests.CativaIdp.RegisterClient.RegisterClientRequest:
      type: object
      properties:
        redirect_uris:
          type: array
          items:
            type: string
          nullable: true
        client_name:
          type: string
          nullable: true
        scope:
          type: string
          nullable: true
        grant_types:
          type: array
          items:
            type: string
          nullable: true
        token_endpoint_auth_method:
          type: string
          nullable: true
      additionalProperties: false

````