Skip to main content
GET
/
v1
/
conversation
/
workspace
/
{workspaceId}
/
{userIdentifier}
Fetch conversation(s)
curl --request GET \
  --url https://catalystapi.superdashhq.com/api/v1/conversation/workspace/{workspaceId}/{userIdentifier} \
  --header 'x-api-key: <x-api-key>'
{
"_id": "Conversation Id associated with the conversation.",
"workspace": "UUID associated with a workspace",
"messages" : [],
"attributes": {}
}

Authorizations

x-api-key
string
required
API key associated with your project/workspace

Path Parameters


workspaceId
string
required
The UUID associated with a project/workspace.
userIdentifier
string
required
Unique customerID used to store the customer conversation.

Response


_id
string
The ID associated with the conversation.
workspace
string
UUID associated with a workspace
attributes
object
The user identifier
messages
array
Array containing conversation threads associated with the user identifier
{
"_id": "Conversation Id associated with the conversation.",
"workspace": "UUID associated with a workspace",
"messages" : [],
"attributes": {}
}