Retrieve a reset password token

Request

Retrieves a reset password token with a specified ID.

Security
SecretApiKey or JWT
Path
idstring, <= 50 characters^[@~\-\.\w]+$required

ID of the resource.

curl -i -X GET \
  'https://www.rebilly.com/_mock/catalog/all/password-tokens/{id}' \
  -H 'REB-APIKEY: YOUR_API_KEY_HERE'

Responses

Reset password token retrieved.

Bodyapplication/json
tokenstringread-only

ID of the token.

usernamestringrequired

Username associated with the token.

credentialIdstringread-only

Credential ID associated with the token.

expiredTimestring or null, (date-time)

Date and time when the password expires.

Response
{ "token": "string", "username": "string", "credentialId": "string", "expiredTime": "2019-08-24T14:15:22Z", "_links": [ {} ] }