dialstyles.patch
PATCH
https://relay.bluejeans.com/api/dialstyles/:id
Update an existing entity by passing in changed fields. Any fields you omit will be left unchanged. The id field is immutable.
Note: if you want to send a
PATCH request but your HTTP client doesn't support it, you can send a PUT request with an X-HTTP-Method-Override: PATCH header.PATCH /api/dialstyles/4fb329c03a8ce62480d87e24 HTTP/1.1
Content-Type: application/json
{ "name": "new name" }
HTTP/1.1 200 OK
Content-Type: application/json
{ "id": "4fb329c03a8ce62480d87e24", "name": "new name", "existingProperty": "existingValue" }
inputs
application/json
id
String PATH yesmodifiedFields
Map<String, Object> BODY yesoutputs
The resulting saved entity. All fields will be returned, whether they were changed or not.
application/json
DialStyle