I call the create API https://api.botframework.com/v3/conversationsusing curl and get 404 Resource not found
curl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{
"isGroup": false,
"bot": {
"id": "1247256255302317",
"name": "botname"
},
"members": [
{
"id": "969923753092546",
"name": "Users name"
}
],
"topicName": "Test topic"
}' 'https://api.botframework.com/v3/conversations'
Im also adds an authorization header in the request. The answer I get
{ "statusCode": 404, "message": "Resource not found" }
Any idea what I'm doing wrong here?
source
share