omega
  1. businesses
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. businesses

Assign a client conversation to a staff member

POST
/businesses/{business_id}/clients/{client_id}/conversations/{conversation_id}/assignment
Assigns a specific client conversation to a staff member for handling. This endpoint:
Validates the client and conversation IDs
Verifies staff member availability
Updates conversation ownership
Records the assignment in the conversation history
Notifies relevant parties of the assignment
Useful for managing workload distribution and ensuring proper client support.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.isaac.wellnessliving.com/omega/businesses//clients//conversations//assignment?assigned_to' \
--header 'X-API-KEY;'
Response Response Example
200 - Example 1
{
    "conversation_id": 54321,
    "message": "Client successfully assigned to staff member"
}

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

Query Params

Responses

🟢200OK
application/json
Returns a confirmation of the assignment including:
The conversation ID that was assigned
A success message confirming the assignment
The response indicates whether the assignment was successful.
Body

🟠422Parameter Error
Modified at 2025-07-07 07:04:14
Previous
Get paginated conversation messages with filters
Next
Update client conversation status
Built with