
sec:external-security-remove-oauth-jwt-secrets( $external-security-name as xs:string, $oauth-jwt-key-id as xs:string ) as empty-sequence()
This function removes the specified JWT secrets based on their key-ID. This inputted key-IDs should be unique, non-empty, and exist in the given external security object.
| Parameters | |
|---|---|
| external-security-name | Name of the external security object. |
| oauth-jwt-key-id | The list of OAuth key-IDs to be removed. |
http://marklogic.com/xdmp/privileges/external-security-remove-oauth-jwt-secrets
This function must be executed against the security database.
xquery version "1.0-ml";
import module namespace sec = "http://marklogic.com/xdmp/security" at "/MarkLogic/security.xqy";
sec:external-security-remove-oauth-jwt-secrets("oauthconfig", ("keyID1", "keyID2"));