Resend verification link

Use this endpoint to resend verification link.

Parameters

KeyDescriptionConstraints
PARTNER_TOKENJWT Token issues post Partner loginShould be a valid Partner JWT Token.
appIdappId for the app whose business email need to verify.Should be a valid appId associated with the account.

Sample Request

curl --location --request POST '{{partner_portal_base_url}}/partner/app/:appId/onboarding/contact/email/ resend' \
--header 'token: {{PARTNER_TOKEN}}'

Sample Response

{
	"status" : "success",
	"message" : "mail sent successfully"
}

Status Codes

Status CodeResponseComment
Success
200{ "status" : "success", "message" : "mail sent successfully" }Email successfully sent to the stored business contact email id.
Error
400{ "status" : "error", "message" : "Email is already Verified For This Container" }The email id is already verified.
400{ "status" : "error", "message" : "Please set business email first" }Business email is not present in business information.
401{ "status": "error", "message": "Authentication Failed" }Either appId or partner_token is incorrect.
429{ "status": "error", "message": "Too Many Requests" }When the request rate limit exceeds.
Language
Click Try It! to start a request and see the response here!