deleteConversationMember is returning 405 error
See original GitHub issueGithub issues should be used for bugs and feature requests. Use Stack Overflow for general “how-to” questions.
Versions
What package version of the SDK are you using: 4.14.1 What nodejs version are you using: 14.20 What os are you using: macos
Describe the bug
when calling deleteConversationMember, a 405 error is returned The requested resource does not support http method 'DELETE'
… the endpoint should exist per MS documentation https://docs.microsoft.com/en-us/azure/bot-service/rest-api/bot-framework-rest-connector-api-reference?view=azure-bot-service-4.0#delete-conversation-member which is the same path 'v3/conversations/{conversationId}/members/{memberId}'
returned in the error request.operationSpec
To Reproduce
Steps to reproduce the behavior:
- Setup teams SDK to create a new BotFrameworkAdapter instance and call
botFrameworkAdapter.deleteConversationMember(context, memberId)
in response to an event
Expected behavior
Expect member to be removed from conversation without an error response
Screenshots

Additional context
Add any other context about the problem here.
Issue Analytics
- State:
- Created a year ago
- Comments:13 (1 by maintainers)
Top Results From Across the Web
How to Fix the HTTP 405 Method Not Allowed Error - Kinsta®
It's an HTTP response status code that indicates that the request method is known by the server but is not supported by the...
Read more >405 Method Not Allowed - HTTP - MDN Web Docs
The HyperText Transfer Protocol (HTTP) 405 Method Not Allowed response status code indicates that the server knows the request method, ...
Read more >How to Fix HTTP Error 405 Method Not Allowed - Hostinger
When a website shows the 405 Method Not Allowed notification, it indicates a Hypertext Transfer Protocol (HTTP) error.
Read more >How To Effectively Fix an HTTP 405 Error With 7 Methods
Learn what an HTTP 405 error is, why and when this type of error occurs and seven different troubleshooting methods you can employ...
Read more >405 Method Not Allowed: What It Is and How to Fix It
This code response confirms that the requested resource is valid and exists, but the client has used an unacceptable HTTP method during the ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@JuanAr I was able to confirm this behavior. Assigning to you for resolution.
@dmvtech I have only tried with node/js