GetDisabledTokens()
Get an array of disabled tokens. The maximum limit the getDisabledTokens() method can fetch disabled tokens is set to 10000.
Syntax
public String[] GetDisabledTokens(String naeUser, String naePassword, String dbUser, String dbPswd, String tableName, long startDateInMilliSeconds, long endDateInMilliSeconds, int searchCriteria)
Request Parameters
Parameters | Data Types | Descriptions |
---|---|---|
naeUser | String | The Key Manager user with access to the AES and HMAC keys. |
naePassword | String | The Key Manager user’s password. |
dbUser | String | The database user with access to the token table. |
dbPswd | String | The database user’s password. |
startDateInMilliSeconds | Long | Date from which the disabled tokens are required. startDate should be specified in milliseconds since epoch (start of day, Jan 1, 1970). If this parameter is set to 0, the GetDisabledTokens() method will return the tokens since epoch. |
endDateInMilliSeconds | Long | Date until which the disabled tokens are required. endDate should be specified in milliseconds since epoch. If this parameter is set to 0, the GetDisabledTokens() method will return the tokens so far. |
tableName | String | The token vault from which the disabled tokens are fetched. The table name must be in CAPITAL LETTERS. |
searchCriteria | Int | Fetch tokens based on their creation date or last access date. |
Returned Value
Returned Value | Description |
---|---|
String[] | The disabled tokens. |