- Create a reset password token
Retrieve authentication options
Change authentication options
Retrieve authentication tokens
Login a customer
Verify an authentication token
Logout a customer
Exchange an authentication token
Retrieve credentials
Create a credential
Retrieve a credential
Upsert a credential
Delete a credential
Retrieve tokens
Retrieve a reset password token
Delete a reset password token
Create a reset password t...
Creates a reset password token.
Security
SecretApiKey or JWT
- Mock serverhttps://www.rebilly.com/_mock/catalog/all/password-tokens
- Sandbox serverhttps://api-sandbox.rebilly.com/organizations/{organizationId}/password-tokens
- Live serverhttps://api.rebilly.com/organizations/{organizationId}/password-tokens
- SecretApiKey
- JWT
curl -i -X POST \
https://www.rebilly.com/_mock/catalog/all/password-tokens \
-H 'Content-Type: application/json' \
-H 'REB-APIKEY: YOUR_API_KEY_HERE' \
-d '{
"username": "string",
"expiredTime": "2019-08-24T14:15:22Z"
}'Reset password token created.
Headers
Total number of rate limit tokens for this request within a rate limit period. For more information, see Rate limits.
Example:3600
Response
{ "token": "string", "username": "string", "credentialId": "string", "expiredTime": "2019-08-24T14:15:22Z", "_links": [ { … } ] }