You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today I was trying to use the client library (usually I use the server) and noticed that the Delete function doesn't have an overload with Params. Is this intentional or will you accept a PR with this change?
I extracted this table of general REST guidelines from ChatGPT:
HTTP Method
Usage
Request Body?
Query Parameters?
GET/HEAD
Retrieve data
No
Yes
POST
Create resource
Yes
No
PUT
Update resource
Yes
No
DELETE
Delete resource
No
Yes
PATCH
Partial update
Yes
No
The text was updated successfully, but these errors were encountered:
mrexodia
changed the title
Missing Params for Put, Delete and Options?
Missing Params for Put and Delete?
Apr 7, 2023
@mrexodia thanks for the feedback. It's not intentional, but just left out since my use cases so far don't require it. A pull request with a unit test case is always welcome!
Today I was trying to use the client library (usually I use the server) and noticed that the
Delete
function doesn't have an overload withParams
. Is this intentional or will you accept a PR with this change?I extracted this table of general REST guidelines from ChatGPT:
The text was updated successfully, but these errors were encountered: