POST api/Verification/resend_verification_code

Request Information

URI Parameters

None.

Body Parameters

resend_verification_code_request
NameDescriptionTypeAdditional information
verification_id

string

None.

Request Formats

application/json, text/json

Sample:
{
  "verification_id": "sample string 1"
}

application/xml, text/xml

Sample:
<resend_verification_code_request xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <verification_id>sample string 1</verification_id>
</resend_verification_code_request>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

resend_verification_code_response
NameDescriptionTypeAdditional information
success

boolean

None.

message

string

None.

verification_id

string

None.

Response Formats

application/json, text/json

Sample:
{
  "success": true,
  "message": "sample string 2",
  "verification_id": "sample string 3"
}

application/xml, text/xml

Sample:
<resend_verification_code_response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PromptTech.CRM.CustomerApp.Models">
  <message>sample string 2</message>
  <success>true</success>
  <verification_id>sample string 3</verification_id>
</resend_verification_code_response>