Retrieves a list of reset password tokens.
List of reset password tokens retrieved.
Unauthorized access. Invalid credentials used.
Access forbidden.
// all parameters are optional const firstCollection = await api.customerAuthentication.getAllResetPasswordTokens(); // alternatively you can specify one or more of them const params = {limit: 20, offset: 100}; const secondCollection = await api.customerAuthentication.getAllResetPasswordTokens(params); // access the collection items, each item is a Member secondCollection.items.forEach(token => console.log(token.fields.token));
[- {
- "token": "string",
- "username": "string",
- "credentialId": "string",
- "expiredTime": "2019-08-24T14:15:22Z",
- "_links": [
- {
- "href": "string",
- "rel": "self"
}
]
}
]