Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion site/docs/v1/tech/apis/_patch-support.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ When using the PATCH method, you can either use the same request body documentat

When using the PATCH method, use the same request body documentation that is provided for the PUT request.
The PATCH method will merge the provided request parameters into the existing object, this means all parameters are optional when using the PATCH method and you only provide the values you want changed.
A `null` value can be used to remove a value.
A `null` value, or an empty string in some cases, can be used to remove a value.
Patching an `Array` will result in all values from the new list being appended to the existing list, this is a known limitation to the current implementation of PATCH.
____

Expand Down