Update Unsubscribe Link

Purpose

To update an unsubscribe link.

Request Details

Request URL

{api-domain}/crm/{version}/settings/unsubscribe_links/{unsubscribe_link_id}

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Scope

scope = ZohoCRM.settings.unsubscribe.ALL
(or)
scope = ZohoCRM.settings.unsubscribe.UPDATE

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v6/settings/unsubscribe_links/2309216000000582123"
-X PUT
-d "newlink.json"
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"


Input JSON Keys

  • namestring, mandatory

    The unique name for the unsubscribe link.

  • page_typestring, mandatory

    Specify whether the unsubscribe link should be hosted in the standard page designed by Zoho CRM, or a custom webpage. The possible values are standard and custom.

  • custom_location_urlstring, mandatory if the value of page_type is custom

    Specify the webpage URL where you want to host the unsubscribe link. Skip this field if you wish to use the standard page for hosting your unsubscribe link.

  • standard_page_messagestring, optional

    Specify the message to be displayed in the standard unsubscribe page.  The message can either be in rich text (html) or plain text format. 

  • submission_action_typestring, mandatory

    Specify the action to be performed when the user clicks the unsubscribe button. You can configure to display a message, or to redirect to another URL upon unsubscribe. The possible values are display_message and redirect.

  • submission_redirect_urlstring, mandatory if the value of submission_action_type is redirect

    Specify the web page URL to which the user will be redirected after clicking on the unsubscribe link.

  • submission_messagestring, mandatory if the value of submission_action_type is display_message

    The message to be displayed once the user clicks the unsubscribe button. You can specify the message either in rich text (html) or plain text format.

Sample Input

Copied{
  "unsubscribe_links": [
    {
      "name": "TestY",
      "page_type": "custom",
      "custom_location_url": "https://custompage.com",
      "submission_action_type": "display_message",
      "submission_message": "<p style='max-width:100%;line-height:1.25;overflow-wrap:break-word;text-align:left'><span editable='false' data-image='' style='white-space:break-spaces;color:rgb(51, 51, 51);white-space-collapse:break-spaces;text-wrap:wrap;background:url(https://static.zohoCDN.com/crm/CRMClient/images/successalert_f194f7d_.svg) 0px 0px no-repeat;width:22px;height:22px;display:inline-block;vertical-align:middle;margin-right:7px;margin-inline-end:7px'> </span><span style='font-size:24px;font-weight:bold;vertical-align:middle;display:inline'>Unsubscribed Successfully</span><span> </span></p><p><span> </span></p><p><span style='display:inline'>You have successfully unsubscribed. Thank you for your time!</span></p>"
    }
  ]
}

Possible Errors

  • INVALID_URL_PATTERNHTTP 404

    Please check if the URL trying to access is a correct one
    Resolution: The request URL specified is incorrect. Specify a valid request URL. Refer to request URL section above.

  • OAUTH_SCOPE_MISMATCHHTTP 401

    Unauthorized
    Resolution: Client does not have the required OAUTH SCOPE. Create a new client with valid scope. Refer to scope section above for more details.

  • INTERNAL_ERRORHTTP 500

    Internal Server Error
    Resolution: Unexpected and unhandled exception in Server. Contact support team.

  • INVALID_REQUEST_METHODHTTP 400

    The http request method type is not a valid one
    Resolution: You have specified an invalid HTTP method to access the API URL. Specify a valid request method. Refer to endpoints section above.

  • INVALID_DATAHTTP 400

    You have specified an invalid value for the URL fields.
    Resolution: Specify a valid URL.

  • MANDATORY_NOT_FOUNDHTTP 400

    Required field not found 
    Resolution: You have not specified one or more of the mandatory keys in the input body. Specify all the mandatory keys. Refer to the Input JSON keys sections to know more.

  • DUPLICATE_DATAHTTP 400

    Unsubscribe Link name already exists
    Resolution: Specify another unique name for the unsubscribe link.

  • DEPENDENT_FIELD_MISSINGHTTP 400

    Required field not found 
    Resolution: You have not specified one of the dependent fields. Please specify all the dependent fields. Refer to the input JSON keys section above to know about the dependent fields.

  • INVALID_DATAHTTP 400

    The given Unsubscribe Link id is not part of Org 
    Resolution: You have specified an invalid unsubscribe link ID. Please specify a valid link ID.

Sample Response

Copied{
    "unsubscribe_links": [
        {
            "code": "SUCCESS",
            "details": {
                "id": "2309216000000582123"
            },
            "message": "Unsubscribe Link updated successfully",
            "status": "success"
        }
    ]
}