Bulk Collection Manipulation through a REST (RESTful) API

后端 未结 7 743
我寻月下人不归
我寻月下人不归 2020-12-04 06:45

I\'d like some advice on designing a REST API which will allow clients to add/remove large numbers of objects to a collection efficiently.

Via the API, clients need

7条回答
  •  广开言路
    2020-12-04 07:24

    For the POSTs, at least, it seems like you should be able to POST to a list URL and have the body of the request contain a list of new resources instead of a single new resource.

提交回复
热议问题