Create a Partner Organization Style Sheet

post

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

This endpoint creates a JET or alternate style sheet for a partner organization.

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 cteate a JET or alternate style sheet for a partner organization by submitting a POST request to the REST resource using cURL. For more information about cURL, see Use cURL.

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

Response Body Sample

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