curl --request GET \
--url https://app2.freyavoice.ai/api/v2/problems/{problemId}/assignees \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"success": true,
"assignees": [
{
"id": "<string>",
"problemId": "<string>",
"userId": "<string>",
"assignedAt": "<string>",
"userName": "<string>",
"assignedBy": "<string>"
}
]
}
}
}Returns all assignees for a problem.
curl --request GET \
--url https://app2.freyavoice.ai/api/v2/problems/{problemId}/assignees \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"message": "<string>",
"result": {
"success": true,
"assignees": [
{
"id": "<string>",
"problemId": "<string>",
"userId": "<string>",
"assignedAt": "<string>",
"userName": "<string>",
"assignedBy": "<string>"
}
]
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Problem ID
1Workspace ID
1