Region Code
Vista Digital Platform (V1)
Download OpenAPI description
Languages
Servers
Mock server
https://developer.vista.co/_mock/openapi/digital-platform/openapi
Body
- application/json
- text/json
- application/*+json
- application/json-patch+json
Details to create a password reset code
- Mock serverhttps://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset-code
- cURL
- JavaScript
- Node.js
- application/json
- text/json
- application/*+json
- application/json-patch+json
curl -i -X POST \
https://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset-code \
-H 'Connect-Region-Code: string' \
-H 'Content-Type: application/json' \
-d '{
"email": "string",
"username": "string"
}'Bodyrequired
- application/json
- text/json
- application/*+json
- application/json-patch+json
Details to validate a reset code
- Mock serverhttps://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset-code/validate
- cURL
- JavaScript
- Node.js
- application/json
- text/json
- application/*+json
- application/json-patch+json
curl -i -X POST \
https://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset-code/validate \
-H 'Connect-Region-Code: string' \
-H 'Content-Type: application/json' \
-d '{
"resetCode": "string"
}'Response
application/json
{ "isValid": true }
Bodyrequired
- application/json
- text/json
- application/*+json
- application/json-patch+json
Details to reset password
- Mock serverhttps://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset
- cURL
- JavaScript
- Node.js
- application/json
- text/json
- application/*+json
- application/json-patch+json
curl -i -X POST \
https://developer.vista.co/_mock/openapi/digital-platform/openapi/ocapi/v1/members/password-reset \
-H 'Connect-Region-Code: string' \
-H 'Content-Type: application/json' \
-d '{
"resetCode": "string",
"password": "string"
}'