PUT - Resend Verification - Reply-To address

Purpose

The API is used to resend the verification email for confirming the Reply-To address associated with the account. This can be done by the Admin for a user or by the user for himself.

Request URL 

Using Admin Authentication:

 http://<hostname>/api/organization/<zoid>/accounts/<accountid>

Using User Authentication:

http://<hostname>/api/accounts/<accountid>

Request Parameters

ParameterData TypeDescription
zuid* Integerzuid - The unique Zoho User Identifier for the organization 
mode* String mode - The mode of the From Email address added to the account. 
replyTo StringThe Reply To Email Address associated with the account. 

* - Mandatory parameters

 Request Body (JSON Object)

ParameterData TypeAllowed ValuesDescription
mode* String 

resendReplyToVerficationMail

 To resend the verification email to the Reply-To email address provided.

* - Mandatory parameters

Response Codes

Please refer Response Codes.

Sample Request

Copied{
  "zuid" : "1111111",
  "mode" : "resendVerificationMailForReplyTo"
}

Sample Request (Using User Authentication)

Copied{
  "mode" : "resendVerificationMailForReplyTo"
}