token.delete

Description

object token.delete(array tokenids)

This method allows to delete tokens.

The Manage API tokens permission is required for the user role to manage tokens for other users.

Parameters

(array) IDs of the tokens to delete.

Return values

(object) Returns an object containing the IDs of the deleted tokens under the tokenids property.

Examples

Delete multiple tokens

Delete two tokens.

Request:

{
           "jsonrpc": "2.0",
           "method": "token.delete",
           "params": [
               "188",
               "192"
           ],
           "id": 1
       }
Copy
✔ Copied

Response:

{
           "jsonrpc": "2.0",
           "result": {
               "tokenids": [
                   "188",
                   "192"
               ]
           },
           "id": 1
       }
Copy
✔ Copied

Source

CToken::delete() in ui/include/classes/api/services/CToken.php.

To toggle search highlight, press Ctrl+Alt+H
Have an improvement suggestion for this page? Select the text that could be improved and press Ctrl+Enter to send it to the editors.