Update a Partner Organization Style Sheet

put

/rest/v16/companies/{companyLoginName}/styleSheets/{name}

This endpoint replaces the entire partner organization style sheet with the style sheet values specified in the web services request.

Request

Supported Media Types
Path Parameters
Form Parameters
Back to Top

Response

Supported Media Types

Default Response

Company style sheet details.
Body ()
Root Schema : Style Sheet
Type: object
Title: Style Sheet
Show Source
Back to Top

Examples

The following example shows how to replaces the entire partner organization style sheet with the style sheet values specified in the web services request by submitting a PUT request to the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X PUT -i -H "Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQg" -H "Content-type: application/json" -H "Accept: application/json"
https://sitename.oracle.com/rest/v16/companies/visionServices/styleSheets/alternate

Response Body Sample

{
  "name": "alternate",
  "links": [{
      "rel": "self",
      "href": "http://sitename.oracle.com/rest/v16/companies/visionServices/styleSheets/alternate"
    }
  ]
}
Back to Top