Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Retrieves detail information of the organization with the specified organizationId.
organizationId
The ID of the organization.
11
Successful response
const response = await fetch('https://eu1.make.com/api/v2/organizations/{organizationId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "organization": { "id": 0, "name": "text", "serviceName": "text", "nextReset": "2025-01-11T06:30:41.405Z", "lastReset": "2025-01-11T06:30:41.405Z", "isPaused": false, "countryId": 0, "timezoneId": 0, "deleted": false, "zone": "text", "teams": [ { "id": 0, "name": "text" } ], "productName": "text", "scenarios": 0, "activeScenarios": 0 } }