curl --request DELETE \
--url https://api.example.com/certs/{certId}/issuers \
--header 'Content-Type: application/json' \
--data '
{
"issuerIds": [
"<string>"
]
}
'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.
curl --request DELETE \
--url https://api.example.com/certs/{certId}/issuers \
--header 'Content-Type: application/json' \
--data '
{
"issuerIds": [
"<string>"
]
}
'Was this page helpful?