How to Manually Provide Zendesk Organization ID and Name
When integrating with Zendesk, companies that do not own the Zendesk instance but have been provided credentials for an Agent user by the Zendesk instance owner may need to manually input the organization details during integration setup. This guide explains how to retrieve and provide the Zendesk organization ID and Name manually.
Manually Providing Zendesk Organization Details
In Getint, set up the Connection by following our guide. On the integration setup screen, select the connection then click the PROVIDE MANUALLY button to access the organization details form.

Enter the Organization ID and Organization Name fields with the details provided by the Zendesk instance owner then select Connect.

Continue to set up the integration and Save.

How to Obtain Zendesk Organization ID and Name
The Zendesk instance owner must retrieve the organization ID and Name and provide it to you. Here’s how they can locate this information:
Log in to Zendesk as an Administrator:
The instance owner must sign in with an administrator account.
Access the Organization Information:
Navigate to the following URL, replacing
<ZENDESK_INSTANCE_SUBDOMAIN>
with the Zendesk subdomain:https://<ZENDESK_INSTANCE_SUBDOMAIN>.zendesk.com/api/v2/organizations.json
Find the Required Details in the API Response:
The response will include a JSON object with the organization details.
Look for the
"id"
and"name"
properties. For example:{
"organizations": [
{
"url": "https://getintaugust.zendesk.com/api/v2/organizations/1900023220573.json",
"id": 1900023220573,
"name": "demogetint",
"shared_tickets": false,
"shared_comments": false,
"external_id": null,
"created_at": "2021-08-27T11:29:24Z",
"updated_at": "2021-08-27T11:29:24Z",
"domain_names": [],
"details": null,
"notes": null,
"group_id": null,
"tags": [],
"organization_fields": {}
}
],
"next_page": null,
"previous_page": null,
"count": 1
}
Extract the Details:
ID:
1900023220573
Name:
demogetint
The instance owner should share these details with the company setting up the integration.
By following these steps, you can ensure the manual provision of Zendesk organization details is accurate, enabling a seamless integration setup.
If you encounter any issues or require further assistance, please contact our Support Team.
Last updated
Was this helpful?