This API retrieves complete organization information including profile details, business settings, working hours, and member data. Perfect for building organization dashboards, syncing data with external systems, or creating comprehensive organization profiles.

💡 Pro Tip

Use this API to build organization-specific dashboards that display real-time member counts, working hours, and business details. The working hours data is particularly valuable for scheduling integrations and customer service automation.

Request Endpoint: https://app.zyntrohq.com/apis/public/fetchOrganization.php

Request Method: POST

Request Payload:

{
  "api_key": "your_zyntro_api_key",
  "org_id": "your_organization_id"
}

Response (JSON):

{
  "status": "success",
  "data": {
    "org_name": "Your Organization Name",
    "org_tagline": "Your organization tagline",
    "org_website": "https://yourwebsite.com",
    "org_email": "[email protected]",
    "org_industry": "Technology",
    "org_language": "en-US",
    "org_timezone": "America/New_York",
    "org_reach": "National",
    "org_stage": "Growth",
    "org_address": "123 Business Street",
    "org_city": "Business City",
    "org_state": "Business State",
    "org_zip": "12345",
    "org_country": "United States",
    "org_working_hours": [
      {
        "day": "Monday",
        "start_time": "09:00",
        "end_time": "17:00",
        "is_open": true
      }
    ],
     "org_members": [
            "f2470c7f-60b1-4491-b117-8ba0e3e2a53b",
            "0fa3399e-c1c2-47e6-badd-889b624c77f0",
            "41beecaf-4d0f-409f-81ad-84acc77957be"
        ],
        "org_admins": [
            "f2470c7f-60b1-4491-b117-8ba0e3e2a53b"
        ],
        "default_wallet": "e8932389-bca5-4e6e-b9f1-bf46e16e8435"
  }
}

Response Fields:

  • status: Indicates success or error status
  • data: Object containing organization details
  • org_name: Official name of the organization
  • org_tagline: Organization tagline or motto
  • org_website: Organization website URL
  • org_email: Primary contact email address
  • org_industry: Industry classification of the organization
  • org_language: Primary language setting (ISO format)
  • org_timezone: Organization timezone setting
  • org_reach: Geographic reach (Local, Regional, National, Global)
  • org_stage: Business stage (Startup, Growth, Mature, Enterprise)
  • org_address: Street address of the organization
  • org_city: City where organization is located
  • org_state: State or province
  • org_zip: Postal or ZIP code
  • org_country: Country where organization is based
  • org_working_hours: Array of working hours for each day of the week
  • org_members: Array of members assigned to the organization
  • org_admins: Array of admin members
  • default_wallet: Organization's default wallet. 

Notes:

  • This is a public API and requires an API Key. You can get your API Key from inside your Zyntro Account under Me > API Keys
  • Ensure that the api_key and org_id are valid and correspond to your Zyntro account credentials
  • The org_id should correspond to an existing organization within your account
  • Organization must be active for API calls to be processed successfully
  • Working hours data is returned as an array and may be empty if not configured
  • Member and admin arrays contain user details but may be empty for new organizations