Mass Change Owner

Purpose

To change the owner of the records of a module in a particular custom view and territory in bulk.

Request Details

Request URL

{api-domain}/crm/{version}/{module_api_name}/actions/mass_change_owner

Supported modules

Leads, Accounts, Contacts, Deals, Campaigns, Tasks, Cases, Meetings, Calls, Solutions, Products, Vendors, Price Books, Quotes, Sales Orders, Purchase Orders, Invoices, and Custom

Header

Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52

Scope

scope=ZohoCRM.change_owner.CREATE

Note
  • You cannot change the owner of the related records.

  • You can change the owner of up to 50,000 records in a custom view.

  • This API schedules a job and gives you a job ID to get the status of the API. You can only retrieve the job status for up to 60 days.

Sample Request

Copiedcurl "https://www.zohoapis.com/crm/v5/Leads/actions/mass_change_owner"
-H "Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxxxxxxx9be93.9b8xxxxxxxxxxxxxxxf"
-d "@input.json"
-X POST

Request JSON

  • cvidstring, mandatory

    The unique ID of the custom view of whose records you want to change the owner. Use the Custom View Metadata API to get the ID of the custom view. Note that when you want to change the owner of the records in a custom view, this API schedules a job and returns a job ID. Use this ID in the Mass Change Owner Status API.

  • ownerJSON object, mandatory

    The unique ID of the new owner you want to assign the records to. Use the Get Users API to get the ID of the user.

  • territoryJSON object, mandatory when you want to change the owner of the records in a territory

    The unique ID of the territory whose records you want to change the owner of. Use the Get Territories API to get the ID of the territory.

Sample Input

Copied{
    "cvid": "3652397000000538003",
    "owner": {
        "id": "3652397000000281001"
    },
    "territory": {
        "id": "3652397000007622003",
        "include_child": true
    }
}

Response JSON

  • code

    Represents whether the API was a success, scheduled, or no records were found in the custom view.

  • details

    Gives you the ID of the mass change owner job. Use this ID in the Mass Change Owner Status API.

Possible Errors

  • INVALID_DATAHTTP 400

    Reasons:

    • The CVID is invalid.

    • The territory's ID is invalid.

    • The user's ID is invalid.

    • The user you are trying to assign the records to is deleted from your org.

    • The user you are trying to assign the records to is inactive.

    Resolutions:
    • Provide valid IDs of the user, CVID, and the territory.

  • MANDATORY_NOT_FOUNDHTTP 400

    You have not specified either the CVID, the owner's ID, or both.
    Resolution: CVID and Owner's ID is mandatory in the input.

  • RECORD_LIMIT_EXCEEDEDHTTP 400

    The custom view has more than 50,000 records.
    Resolution: You can only change the owner of up to 50,000 records in a custom view through this API.

  • NO_PERMISSIONHTTP 403

    Reasons:

    • You do not have permission to the module.

    • You do not have permission to change the owner.

    • You do not have permission to view the records in that custom view.

    Resolution: Contact your system administrator to obtain sufficient permissions.
  • 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 the endpoints section.

  • INTERNAL_ERRORHTTP 500

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

Sample Response

Copied{
    "data": [
        {
            "code": "SUCCESS",
            "details": {
                "job_id": "3652397000009026002"
            },
            "message": "change owner is successfully scheduled",
            "status": "success"
        }
    ]
}