This API retrieves comprehensive member information including personal details, job information, communication settings, and status for a specific organization member. Perfect for building member profiles, team directories, or integrating member data with external systems.

💡 Pro Tip

Use this API to build dynamic team directories and member profiles. The email and SMS signature fields are particularly valuable for maintaining consistent brand communication across all team members' messages.

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

Request Method: POST

Request Payload:

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

Response (JSON):

{
  "status": "success",
  "data": {
    "member_id": "member_unique_id",
    "member_fname": "John",
    "member_lname": "Doe",
    "member_email": "[email protected]",
    "member_phone": "+1234567890",
    "member_avatar_image": "https://example.com/avatar.jpg",
    "member_job_title": "Marketing Manager",
    "member_employee_id": "EMP001",
    "member_role": "Admin",
    "member_department": "Marketing",
    "member_email_signature": "
John Doe
Marketing Manager
Your Organization
", "member_sms_signature": "- John, Marketing Team", "member_timezone": "America/New_York", "member_status": "Active" } }

Response Fields:

  • status: Indicates success or error status
  • data: Object containing member details
  • member_id: Unique identifier for the member
  • member_fname: Member's first name
  • member_lname: Member's last name
  • member_email: Member's email address
  • member_phone: Member's phone number
  • member_avatar_image: URL to member's avatar image
  • member_job_title: Member's job title or position
  • member_employee_id: Member's employee ID
  • member_role: Member's role (Admin or Employee)
  • member_department: Member's department
  • member_email_signature: HTML signature for use in emails
  • member_sms_signature: Text signature for use in SMS messages
  • member_timezone: Member's timezone setting
  • member_status: Member's current status (Active or Pending)

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, org_id, and member_id are valid and correspond to your Zyntro account credentials
  • The org_id should correspond to an existing organization within your account
  • The member_id should correspond to an existing member within the specified organization
  • Organization must be active for API calls to be processed successfully
  • Member must have status 'Active' or 'Pending' for data to be returned
  • Email signature field contains HTML content for rich formatting
  • SMS signature field contains plain text for SMS messages