...
Attributes | Values |
---|---|
HTTP Method | PUTPOST |
Request URI | /propertyproperties?path={ resource path } |
HTTP Request Headers | Authorization: Bearer { OAuth access token } Content-Type: application/json |
Payload | [ {"name":"propperty1","value":["value1","value2"]} ] |
Description | Add the array of properties for the given resource |
Response | 204 No Content |
Response Type | application/json |
Update Properties of a Given Resource
Attributes | Values |
---|---|
HTTP Method | POST |
Request URI | /property?path={ resource path } |
HTTP Request Header | Authorization: Bearer { OAuth access token } Content-Type: application/json |
[ {"name":"propperty1","value":["value3","value4"]} ] | |
Description | Update the respective properties with the newly passed array of properties |
Response | HTTP 204 No Content |
Response Type | application/json |
...