Hi ,
i am using postman to connect webchat and i am able to connect to conversation
but i am not able to send a message .
for connecting conversation i am using :-
https://api.mypurecloud.com/api/v2/conversations/chats?clientId=xxxxxxxxxxxxxxx&Authorization=Bearer
Oauth 2.0
and body with org id,queue name and other detail and i am getting response as selfURi after clicking that chat will get connected.
{
"id": "9d0c3f8f-b9fe-419e-b1da-23ccd23d06a7",
"otherMediaUris": [],
"selfUri": "/api/v2/conversations/chats/9d0c3f8f-b9fe-419e-b1da-23ccd23d06a7"
}
But how to send message:- i tried this
https://api.mypurecloud.com/api/v2/conversations/9d0c3f8f-b9fe-419e-b1da-23ccd23d06a7/members/65100a80-cbe5-4b5a-a041-660715c40e83/messages
oauth 2.0 and
in body raw json
{
"body" : "This is the text I'd like to send, limited to 4,000 characters",
"bodyType" : "standard"
}
and i am getting response as:-
{
"status": 404,
"code": "not found",
"message": "HTTP 404 Not Found",
"contextId": "377d2211-df13-485c-a9b1-4eecb26959d1",
"details": [],
"errors": []
}
please help me out