TT 176
TT 176

Reputation: 1

how can skype bot Delete conversation member?

https://learn.microsoft.com/en-us/azure/bot-service/rest-api/bot-framework-rest-connector-api-reference?view=azure-bot-service-4.0#delete-conversation-member

call this api: DELETE /v3/conversations/{conversationId}/members/{memberId}

return: "message": "The requested resource does not support http method 'DELETE'."

Upvotes: 0

Views: 103

Answers (1)

Steven Kanberg
Steven Kanberg

Reputation: 6383

As the error suggests, it is not supported. Unfortunately, there isn't anything that you can do to force the call to be accepted if the connected service doesn't support it.

As noted under Conversation operations:

Not all channels support all endpoints.

Upvotes: 0

Related Questions