omega
  1. business-clients
omega
  • health
    • Get Health
      GET
    • Check Db Connection
      GET
  • sms
    • Queue SMS for sending and database recording
      POST
    • Record SMS message in database without sending
      POST
    • Update SMS delivery status
      POST
  • email
    • Queue email for sending and database recording
      POST
    • Record email message in database without sending
      POST
    • Update email delivery status
      POST
    • Handle external email provider webhooks
      POST
  • businesses
    • Get paginated list of client conversations for a business
      GET
    • Add internal note to a client conversation
      POST
    • Get list of business locations
      GET
    • Create or retrieve client conversation
      POST
    • Get available conversation filters
      GET
    • Get paginated conversation messages with filters
      GET
    • Assign a client conversation to a staff member
      POST
    • Update client conversation status
      POST
    • Update read status of messages using filters
      POST
  • business-clients
    • Get detailed client profile and conversation information
      GET
    • Get paginated list of clients for a business
      GET
  • business-staffs
    • Get detailed profile of a specific staff member
      GET
    • Get paginated list of staff members for a business
      GET
  • voice-calls
    • Get Token
      GET
    • Handle Twiml Call
      POST
  • messages
    • Retry Processing of Failed Messages
    • Retry Processing of Failed Messages
    • Get messages by request ID
    • Get messages by request ID
    • Search messages within a specific conversation
    • Search messages within a specific conversation
    • Process and record messages from any supported channel
  • twilio
    • Process incoming SMS replies via Twilio webhook
    • Process SMS delivery status updates from Twilio
    • Update voice call status in DB
  • session
    • Expire Session
  • authentication
    • Generate Auth Token
  • business
    • Onboard a business
    • Get business onboarding status
  1. business-clients

Get detailed client profile and conversation information

GET
/businesses/{business_id}/clients/{client_id}
Retrieves comprehensive client details including:
Basic profile information (name, contact details)
Client type and status
Associated conversation details
Message statistics (unread count, flagged messages)
Last message information
Assignment details
The endpoint validates the client ID and returns all available client information.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev.isaac.wellnessliving.com/omega/businesses//clients/' \
--header 'X-API-KEY;'
Response Response Example
200 - Example 1
{
    "client_id": 12345,
    "conversation_id": 0,
    "client_name": "string",
    "client_gender": "string",
    "client_image_url": "string",
    "client_email": "user@example.com",
    "client_phone_number": "string",
    "status": "string",
    "updated_by": "string",
    "unread_messages_count": 0,
    "last_updated_channel": "string",
    "messages_flagged_count": 0,
    "last_updated_at": "2019-08-24T14:15:22Z",
    "label": "string",
    "last_message_content": "string",
    "resolved_by": "string",
    "assigned_to": "string",
    "staff_name": "string",
    "staff_gender": "string",
    "staff_image_url": "string",
    "last_message_id": 0,
    "last_read_message_id": 0
}

Request

Authorization
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
or
API Key
Add parameter in header
cookie
Example:
cookie: ********************
or
Path Params

Responses

🟢200OK
application/json
Returns the complete client profile including:
Client's personal information (name, email, phone, gender, image)
Conversation details and status
Message statistics and last message
Staff assignment information
Returns null if the client is not found.
Body

🟠422Parameter Error
Modified at 2025-07-07 07:04:14
Previous
Update read status of messages using filters
Next
Get paginated list of clients for a business
Built with