post https://app.investglass.com/client_portal_api/portal_auth/verification_code
The POST
request to /client_portal_api/portal_auth/verification_code
is used to verify a verification code for a client portal. The request includes the code
parameter in the query string and the verification_code
parameter in the request body.
Request Body
verification_code
(string, required): The verification code sent via email.
The response to this request is a JSON object with the following schema:
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"message": {
"type": "string"
},
"secret": {
"type": "null"
}
}
}