brandingimages.patch

PATCH https://relay.bluejeans.com/api/brandingimages/: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/brandingimages/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 yes

modifiedFields

Map<String, Object> BODY yes

outputs

The resulting saved entity. All fields will be returned, whether they were changed or not.
application/json BrandingImage