I’m trying to kick off a cobrowse session from our Android app using POST /api/v2/conversations/webchat/sessions/{sessionId}/cobrowse. The payload includes the cobrowseSessionId and agentId, but the endpoint keeps returning a 400 Bad Request. Here’s the JSON body I’m sending:
{
"cobrowseSessionId": "abc-123",
"agentId": "agent-456",
"reason": "Debugging UI"
}
The docs are vague on what fields are actually required for this specific endpoint. I’ve verified the sessionId is active. What am I missing?