Bulk Collection Manipulation through a REST (RESTful) API

后端 未结 7 697
我寻月下人不归
我寻月下人不归 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:33

    Yes, PUT creates/overwrites, but does not partially update.

    If you need partial update semantics, use PATCH. See http://greenbytes.de/tech/webdav/draft-dusseault-http-patch-14.html.

    0 讨论(0)
提交回复
热议问题