Get All Style Sheets for a Partner Organization

get

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

This endpoint retrieves all style sheets for a partner organization.

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

List of Style Sheets
Body ()
Root Schema : companyStyleSheet-collection
Type: object
Show Source
Nested Schema : Style Sheet Collection
Type: array
Title: Style Sheet Collection
List of style sheets.
Show Source
Nested Schema : Style Sheet
Type: object
Title: Style Sheet
Show Source
Back to Top

Examples

The following example shows how to retrieve all style sheets for a partner organization by submitting a GET request to the REST resource using cURL. For more information about cURL, see Use cURL.

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

Response Body Sample

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