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

# Batch unassign JWT issuers from a certificate

> Unassigns multiple JWT issuers from a certificate in a single batch operation.
Validates that all issuer IDs exist and belong to the customer before performing unassignment.
Only unassigns issuers that currently have this specific certificate assigned.




## OpenAPI

````yaml /uapi.yaml delete /certs/{certificateId}/issuers
openapi: 3.1.0
info:
  version: 0.0.1
  title: User management API
  description: This API is for managing organization members and builders for the Sutro API
servers: []
security: []
tags:
  - name: configuration
    description: Configuration of the platform for your members and builders
  - name: members
    description: >-
      Members are the individuals that a Customer wants to provide with access
      to the Sutro Console
  - name: builders
    description: >-
      Builders are a Customer's users; they are the ones who are building apps
      with a Customer's platform
  - name: certificates
    description: >-
      Certificates are use for signing & verifying access tokens, as well as for
      securing mTLS connections
  - name: api_clients
    description: API Clients must be registered and associated with an mTLS certificate
paths:
  /certs/{certificateId}/issuers:
    parameters:
      - name: certificateId
        in: path
        schema:
          type: string
          format: uuid
        required: true
        description: The ID of the certificate
    delete:
      tags:
        - certificates
        - configuration
      summary: Batch unassign JWT issuers from a certificate
      description: >
        Unassigns multiple JWT issuers from a certificate in a single batch
        operation.

        Validates that all issuer IDs exist and belong to the customer before
        performing unassignment.

        Only unassigns issuers that currently have this specific certificate
        assigned.
      operationId: unassignIssuersFromCertificate
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - issuerIds
              properties:
                issuerIds:
                  type: array
                  items:
                    type: string
                  minItems: 1
                  description: Array of issuer IDs to unassign from this certificate
      responses:
        '204':
          description: JWT issuers successfully unassigned from the certificate
        '400':
          description: Invalid request (e.g., empty issuer IDs array)
        '403':
          description: Insufficient permissions or issuers belong to different customer
        '404':
          description: Certificate or one or more issuers not found

````