Verify Email Address (v2.0)
POST/sdwan/v2.0/api/accounts/verify
Verify the email address after sign up.
Request
- application/json
Body
Verification details
oldPassword string
The old password. Max length = 1000.
password stringrequired
The new password. Max length = 1000.
repeatPassword stringrequired
Repeat the new password. Max length = 1000.
token string
A valid token. Value = ^[a-zA-Z0-9_-]{1,1000}$
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
oldPassword string
The old password. Max length = 1000.
password stringrequired
The new password. Max length = 1000.
repeatPassword stringrequired
Repeat the new password. Max length = 1000.
token string
A valid token. Value = ^[a-zA-Z0-9_-]{1,1000}$
{
"oldPassword": "string",
"password": "string",
"repeatPassword": "string",
"token": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "SIGNUP_INVALID_VERIFICATION_REQUEST"
},
{
"code": "SIGNUP_OLDPASSWORD_INVALID"
},
{
"code": "SIGNUP_VERIFIED_EMAIL_TOKEN"
}
]
}
}
Loading...