Request Details

Request URL

https://www.zohoapis.com/crm/v2/Contacts/roles?ids={contact_role_id1,contact_role_id2,..}

To delete a specific contact role:
https://www.zohoapis.com/crm/v2/Contacts/roles/{contact_role_id}

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Scope

scope=ZohoCRM.modules.ALL
(or)
scope=ZohoCRM.modules.contacts.DELETE

Possible operation types

ALL - Full access to the record
DELETE - Delete records in the module

Parameters

  • idsstring, mandatory when deleting multiple contact roles

    Specify comma separated contact role IDs. Refer to Get Contact Roles API to retrieve valid contact role IDs.

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v2/Contacts/roles?ids=4150868000001015046,4150868000001015042"
-X DELETE
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
3.0.0
Copied//Get instance of ContactRolesOperations Class
ContactRolesOperations contactRolesOperations = new ContactRolesOperations();
//Get instance of ParameterMap Class
ParameterMap paramInstance = new ParameterMap();
foreach(long id in contactRoleIds)
{
    paramInstance.Add(DeleteContactRolesParam.IDS, id);
}
//Call DeleteContactRoles method that takes paramInstance as parameter 
APIResponse<ActionHandler> response = contactRolesOperations.DeleteContactRoles(paramInstance);
1.0.010.x
Copied//Get instance of ContactRolesOperations Class
let contactRolesOperations = new ContactRolesOperations();
//Get instance of ParameterMap Class
let paramInstance = new ParameterMap();
//Add ids to ParameterMap instance
for(let contactRoleId of contactRoleIds) {
    await paramInstance.add(DeleteContactRolesParam.IDS, contactRoleId);
}
//Call deleteContactRoles method that takes paramInstance as parameter
let response = await contactRolesOperations.deleteContactRoles(paramInstance);
Copiedasync function deleteContactRoles() {
    const got = require("got");

    let url = 'https://www.zohoapis.com/crm/v2/Contacts/roles'

    let headers = {
        Authorization : "Zoho-oauthtoken 1000.f7c6XXXXXXXXXd59477f9bffc.4c6XXXXXXXXXXe09c0b"
    }

    let parameters = {
        ids : '3409643000003278008, 3409643000003278021'
    }

    let requestDetails = {
        method : "DELETE",
        headers : headers,
        searchParams : parameters,
        throwHttpErrors : false
    }
    
    let response = await got(url, requestDetails)
    
    if(response != null) {
        console.log(response.statusCode);
        console.log(response.body);
    } 
}

deleteContactRoles()

async function deleteContactRole() {
    const got = require("got");

    let url = 'https://www.zohoapis.com/crm/v2/Contacts/roles/3409643000003278008'

    let headers = {
        Authorization : "Zoho-oauthtoken 1000.f7cXXXXXXXX5d59477f9bffc.4cXXXXXXX55e09c0b"
    }

    let requestDetails = {
        method : "DELETE",
        headers : headers,
        throwHttpErrors : false
    }
    
    let response = await got(url, requestDetails)
    
    if(response != null) {
        console.log(response.statusCode);
        console.log(response.body);
    } 
}

deleteContactRole()
Note
  • You can delete a maximum of 100 contact roles per API call.

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 ZohoCRM.modules.contacts.DELETE scope. Create a new client with valid scope. Refer to scope section above.

  • NO_PERMISSIONHTTP 403

    Permission denied to delete records
    Resolution: The user does not have permission to delete records. Contact your system administrator.

  • 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.

  • AUTHORIZATION_FAILEDHTTP 400

    User does not have sufficient privilege to delete contact roles
    Resolution: The user does not have the permission to delete contact roles. Contact your system administrator.

  • INVALID_DATAHTTP 400

    contact role not deleted
    Resolution: The contact role you are trying to delete has already been deleted.

  • REQUIRED_PARAM_MISSINGHTTP 400

    One of the expected parameter is missing
    Resolution: Specify the unique IDs of the contact role to be deleted in "ids" parameter. Refer to Get Contact Roles API to retrieve valid contact role IDs.

Sample Response

Copied{
    "contact_roles": [
        {
            "code": "SUCCESS",
            "details": {
                "id": "4150868000001015046"
            },
            "message": "contact role deleted",
            "status": "success"
        },
        {
            "code": "SUCCESS",
            "details": {
                "id": "4150868000001015042"
            },
            "message": "contact role deleted",
            "status": "success"
        }
    ]
}