In REST API, can DELETE methods have parameters?

2019-06-15 02:17发布

In REST API, how do we create DELETE methods when parameters are required to determine what resources need to be deleted?

For examples, photos can belong to both users and groups, and if we have an endpoint for photos, we will need additional information to figure out if we want to delete user photos or group photos, for example,

 /photos?userId={userId}
 /photos?groupId={groupId}

is this a good Restful practice?

Alternatively, should DELETE only happen through users/:id/photo or groups/:id/photo endpoints strictly?

标签: rest
1条回答
兄弟一词,经得起流年.
2楼-- · 2019-06-15 02:59

There's nothing wrong with using DELETE on a collection and filtering by query parameters. Neither the REST dissertation nor the HTTP spec say anything about not doing this.

This is different than the answer to the question that @Thilo linked to because the circumstances are different. That question was about including a "no, really, delete it!" query parameter, which is inappropriate. You're using the query parameter to filter the results which should be deleted.

查看更多
登录 后发表回答