Conversations
List conversation assignments
Get all assignments for a conversation, most recent first.
GET
/
whatsapp
/
conversations
/
{conversation_id}
/
assignments
List conversation assignments
curl --request GET \
--url https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"created_by_user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"notes": "Handling customer inquiry about pricing",
"active": true,
"created_at": "2026-01-19T10:30:00Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"user_id": "e2d3c4b5-a697-8076-edcb-a09876543210",
"created_by_user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"notes": null,
"active": false,
"created_at": "2026-01-18T14:20:00Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total_pages": 1,
"total_count": 2
}
}{
"error": "<string>"
}{
"error": "<string>"
}Was this page helpful?
Previous
Create conversation assignmentAssign a conversation to a team member. Only one active assignment is allowed per conversation.
The user must be a member of the project.
Next
⌘I
List conversation assignments
curl --request GET \
--url https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments \
--header 'X-API-Key: <api-key>'import requests
url = "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.kapso.ai/platform/v1/whatsapp/conversations/{conversation_id}/assignments")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"created_by_user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"notes": "Handling customer inquiry about pricing",
"active": true,
"created_at": "2026-01-19T10:30:00Z"
},
{
"id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
"user_id": "e2d3c4b5-a697-8076-edcb-a09876543210",
"created_by_user_id": "f1e2d3c4-b5a6-9870-fedc-ba0987654321",
"notes": null,
"active": false,
"created_at": "2026-01-18T14:20:00Z"
}
],
"meta": {
"page": 1,
"per_page": 25,
"total_pages": 1,
"total_count": 2
}
}{
"error": "<string>"
}{
"error": "<string>"
}
