List the Assets Used by a Site
/sites/management/api/v1/sites/{id}/assets
List assets that are used by the site. Each instance of an asset used is returned, with the instance identifier and the page id that contains that instance. To include the id of the asset, expand the item
field by including the expand=item
query parameter. As there might be a large number of assets, results can be requested in pages.
Introduced in release 21.1.3.
Authorization
To invoke this operation, the authenticated user or client application must have been shared with the resource and have one of the following sharing roles:
- Owner
- Manager
- Contributor
- Downloader
- Viewer
Limits
If the limit query parameter is not provided this operation uses a default limit of 50 items. The maximum limit that can be specified is 250. If the limit exceeds this maximum then a limit of 250 is used.
Path Alternative Identifiers
The default identifier for a Site resource is the Site Identifier. The Site resource supports alternative identifiers.
nameSite Name
Instead of the site identifier, the site name can be used to uniquely identify a site in the resource path. The default resource path parameter for a site is the site identifier, but when working with sites the human-readable site name is sometimes easier.
http://api.example.com/sites/management/api/v1/sites/name:MyNewProduct/assets
Introduced in release 19.4.1.
Successful Response Examples
This operation responds with the following success (2xx) responses. For a full list of response HTTP status codes and example bodies, consult the Response section of this operation.
200OK - List Assets
List the assets used by a site. The item
field in the response contains a canonical link to read the relationship details from the content management REST API.
Request
GET https://api.example.com/sites/management/api/v1/sites/{id}/assets
Response Body
{ "totalResults": 2, "limit": 50, "count": 2, "hasMore": false, "offset": 0, "items": [ { "pageId": 100, "instanceId": "a47be99b-7b63-4918-bd2d-8373c8484036", "version": "2.4", "item": { "links": [ { "rel": "canonical", "href": "http://api.example.com/content/management/api/v1.1/items/CORE81C98B7935194159A2D1D3B0DBE948F5", "templated": false, "mediaType": "application/json", "method": "GET" } ] } }, { "pageId": 120, "instanceId": "d952fa9d-56cc-4adf-a1f5-0f549f3c49a4", "version": "draft", "item": { "links": [ { "rel": "canonical", "href": "http://api.example.com/content/management/api/v1.1/items/CONT051B2BD577E24A3F804785E1CF21B7D3", "templated": false, "mediaType": "application/json", "method": "GET" } ] } } ] }
200OK - List Assets Including Item Id
List the assets used by a site, expanding the item
field to include the asset's item id. Links are excluded for clarity.
Request
GET https://api.example.com/sites/management/api/v1/sites/{id}/assets?expand=item&links=none
Response Body
{ "totalResults": 2, "limit": 50, "count": 2, "hasMore": false, "offset": 0, "items": [ { "pageId": 100, "instanceId": "a47be99b-7b63-4918-bd2d-8373c8484036", "version": "2.4", "item": { "id": "CORE81C98B7935194159A2D1D3B0DBE948F5" } }, { "pageId": 120, "instanceId": "d952fa9d-56cc-4adf-a1f5-0f549f3c49a4", "version": "draft", "item": { "id": "CONT051B2BD577E24A3F804785E1CF21B7D3" } } ] }
Client Error Response Examples
This operation responds with following client error (4xx) responses with exception details in the response body. For a full list of response HTTP status codes and example bodies, consult the Response section of this operation.
404Not Found - Site Not Found
The site does not exist or has been deleted, or the authenticated user or client application does not have access to the site.
Error Code
OCE-SITEMGMT-009003
Resolution - Check Identifier
Check that the site identifier is valid.
Resolution - Check Membership
Check that the authenticated user is a member of the site or a site administrator.
Exception Detail Fields
This error type includes the following fields/values in the response:
Field Name | Description |
site | Site that does not exist or is not visible to the authenticated user. |
For detailed information about this exception detail type, consult the SiteNotFoundExceptionDetail schema in the definitions section of the swagger document.
Example Response Body
{ "type": "http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1", "title": "Site Not Found", "status": "404", "detail": "Site does not exist or has been deleted, or the authenticated user or client application does not have access to the site.", "o:errorCode": "OCE-SITEMGMT-009003", "site": { "id": "FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0" } }
Request
-
id: string
Immutable identifier for the site.
-
excludeFields(optional): string
Comma-delimited string of field names that you do not want in the response. Nested fields can be identified using a dot to separate the field names. Field names are case-sensitive. Field names are ignored if the field does not exist. To reference the fields of the collection the field name can be prepended with the
@
character (for example,@hasMore
). -
excludeLinks(optional): string
Comma-separated list of link relation names to exclude from the response.
-
expand(optional): string
Comma-delimited string of field names that you want to expand. Use the value
all
to expand all relationships.The following field names can be specified in the
expand
query parameter:Field Name Description item
The content item of the asset. -
expansionErrors(optional): string
Specify how errors in expansion are handled. If not specified, then the default is to include error details in the relationship field.
Valid values are:
-
ignore
- Ignore the error and do not expand the relationship. Relationship links are not included in the response -
include
- Include the error details instead of the expanded relationship. Relationship links are returned -
fail
- Fail the request with an expansion failure error response
-
-
fields(optional): string
Comma-delimited string of field names that you want in the response. Nested properties can be identified using a dot to separate the field names. Field names are case-sensitive. Field names are ignored if the field does not exist. To reference the fields of the collection the field name can be prepended with the
@
character (for example,@hasMore
). -
limit(optional): integer(int32)
Positive integer value that specifies the maximum number of items returned in the response. If not specified the service will choose an appropriate limit.
-
links(optional): string
Comma-separated list of link relation names to include in the response. By default, all links are returned.
The following links are provided by this resource:
Link Relationship Description parent
Describes where the parent resource can be read. Equivalent to an up
link, this link provides the link to the parent resource, such as the collection resource that contains a singular resource.self
Describes the current returned representation of the resource. Used for links that represent the resource itself. For example, if a resource is returned as part of a collection, the self link will provide the URL path for the individual resource. canonical
Describes the preferred representation of the requested resource. Used for links that represent the canonical form of the resource. For example, if a resource is returned as part of a collection, the canonical link will provide the URL path for the canonical form of the individual resource. child
Describes where a related or child resource can be read. Child links are returned in expandable properties and provide the location where unexpanded relationship details can be read. prev
Describes the previous page of results, if a previous page exists. Used with collection resources to provide a previous-page link based on the response to a paged request that specified the offset
andlimit
query parameters.next
Describes the next page of results, if a next page exists. Used with collection resources to provide a next-page link based on the response to a paged request that specified the offset
andlimit
query parameters.describedBy
Describes the schema resource providing metadata information about the resource. Used on collection, singular and relation resources to indicate where the schema resource is that describes the resource. -
offset(optional): integer(int64)
Non-negative integer value that specifies the index of the first item to be returned. The offset index begins at zero. By default, the offset is zero, which returns items starting from the first item in the collection.
-
return(optional): string
Specify the resource representation that should be used to control the response fields and links. If no representation is specified, the client-defined representation is returned, based on the values of the
fields
,excludeFields
,links
,excludeLinks
andexpand
query parameters.The following representations are supported with the
return
query parameter:Representation Description representation
Full resource representation includes all properties and links and expands most relationships. default
Default resource representation includes most properties and links. basic
Basic resource representation includes some properties and some links. minimal
Minimal resource representation, includes essential properties and no links.
Response
- application/json
- application/vnd.oracle.resource+json;type=collection
200 Response
-
Cache-Control: string
Directives for caching mechanisms.
-
Content-Length: string
Size of the response body.
-
Content-Type: string
Content type of the response.
object
-
items:
array items
Collection of Site Page Asset elements.
Introduced in release 21.1.3.
-
allOf
CollectionResource
All collections returned by REST APIs extend the standard collection definition. The definition provides information about the total number of items, the offset and limit details for the items returned, the number of items and an indicator to whether there are more items available.
array
Collection of Site Page Asset elements.
Introduced in release 21.1.3.All collections returned by REST APIs extend the standard collection definition. The definition provides information about the total number of items, the offset and limit details for the items returned, the number of items and an indicator to whether there are more items available.
-
object
SingularResource
All singular resources include the properties of the singular resource definition. A singular resource includes a list of links that provide relationships to other resources, or in the case of the self link the resource itself.
-
object
CollectionResource-allOf[1]
object
All singular resources include the properties of the singular resource definition. A singular resource includes a list of links that provide relationships to other resources, or in the case of the self link the resource itself.
-
links(optional):
array links
HATEOS link to related resources and actions or actions on this resource. Must include at least a 'self' link that contains a link to the canonical representation of the resource.
object
-
count(optional):
integer(int32)
Total number of resources in the response.
-
hasMore(optional):
boolean
Collection has more elements that match the request. Indicates whether there are more items to be returned when a paged request is made and the page was not big enough to return all elements.
-
limit(optional):
integer(int32)
Actual response size limit used. If the request specifies too large a limit, or does not specify a limit then the response will specify the limit used.
-
offset(optional):
integer(int64)
Actual response offset used. If the request specifies no offset then the actual offset is provided in the response.
-
totalResults(optional):
integer(int64)
Total number of resources that match the request. If provided, this is the total number of available items. If not specified the total is not known, or is not viable to return. Paging limits or offsets are ignored when calculating this value. Only returned if the
totalResults
parameter is supported and is set totrue
by the client.
-
allOf
SitePageAsset
Information about an asset that is used on a site page.
Introduced in release 21.1.3.
Information about an asset that is used on a site page.
Introduced in release 21.1.3.-
object
SingularResource
All singular resources include the properties of the singular resource definition. A singular resource includes a list of links that provide relationships to other resources, or in the case of the self link the resource itself.
-
object
SitePageAsset-allOf[1]
object
-
instanceId(optional):
string
Instance id.
Introduced in release 21.1.3. -
item(optional):
item
The content item of the asset.
Introduced in release 21.1.3. -
pageId(optional):
integer(int32)
Page id.
Introduced in release 21.1.3. -
version(optional):
string
Version that is in use on this page.
Introduced in release 21.1.3.
array
HATEOS link to related resources and actions or actions on this resource. Must include at least a 'self' link that contains a link to the canonical representation of the resource.
object
REST HATEOAS link and related metadata. If responses provide links (for example, a self
link to the resource itself) the links provided will include one or more of the properties defined on this link structure.
-
href(optional):
string
The target resource URI. URI RFC3986 or URI Template RFC6570. If the value is set to URI Template, then the
templated
property must be set totrue
. -
mediaType(optional):
string
Media type, as defined by RFC 2046, describing the link target.
-
method(optional):
string
HTTP method for requesting the target of the link.
Valid values are:
-
OPTIONS
- HTTP OPTIONS -
HEAD
- HTTP HEAD -
GET
- HTTP GET -
POST
- HTTP POST -
PUT
- HTTP PUT -
PATCH
- HTTP PATCH -
DELETE
- HTTP DELETE
-
-
profile(optional):
string(uri)
Link to the metadata of the resource, such as JSON-schema, that describes the resource expected when dereferencing the target resource.
-
rel(optional):
string
Name of the link relation that, in addition to the type property, can be used to retrieve link details.
-
templated(optional):
boolean
Boolean flag that specifies the
href
property is a URI or URI Template. The property can be assumed to befalse
if the property is not present.
The content item of the asset.
Introduced in release 21.1.3.-
allOf
ContentItem
A content item.
Introduced in release 20.1.1.
A content item.
Introduced in release 20.1.1.-
object
SingularResource
All singular resources include the properties of the singular resource definition. A singular resource includes a list of links that provide relationships to other resources, or in the case of the self link the resource itself.
-
object
ContentItem-allOf[1]
object
-
channels(optional):
channels
Channels this content item is in.
Introduced in release 20.1.1. -
description(optional):
string
Description of the item.
Introduced in release 20.1.1. -
id(optional):
string
Unique identifier for the item.
No assumptions should be made about the content of the field; the field should be treated as an opaque value.
Introduced in release 20.1.1. -
isPublished(optional):
boolean
Is item published.
Introduced in release 20.1.1. -
name(optional):
string
Short human-readable name to identify the item.
Introduced in release 20.1.1. -
publishedChannels(optional):
publishedChannels
Channels this content item is currently published to.
Introduced in release 20.1.1. -
repositoryId(optional):
string
Repository this content item is in.
No assumptions should be made about the content of the field; the field should be treated as an opaque value.
Introduced in release 20.1.1. -
slug(optional):
string
URL slug of the item.
Introduced in release 20.1.1. -
type(optional):
string
Item type.
Introduced in release 20.1.1.
Channels this content item is in.
Introduced in release 20.1.1.-
allOf
ContentItemChannels
A set of channel ids for a content item.
Channels this content item is currently published to.
Introduced in release 20.1.1.-
allOf
ContentItemChannels
A set of channel ids for a content item.
A set of channel ids for a content item.
-
object
SingularResource
All singular resources include the properties of the singular resource definition. A singular resource includes a list of links that provide relationships to other resources, or in the case of the self link the resource itself.
-
object
ContentItemChannels-allOf[1]
object
-
data(optional):
array data
Channels.
object
Channel identifier.
-
id(optional):
string
Unique identifier for the repository.
No assumptions should be made about the content of the field; the field should be treated as an opaque value.
-
name(optional):
string
Short unique human-readable name to identify the channel.
{
"totalResults":2,
"limit":50,
"count":2,
"hasMore":false,
"offset":0,
"items":[
{
"pageId":100,
"instanceId":"a47be99b-7b63-4918-bd2d-8373c8484036",
"version":"2.4",
"item":{
"links":[
{
"rel":"canonical",
"href":"http://api.example.com/content/management/api/v1.1/items/CORE81C98B7935194159A2D1D3B0DBE948F5",
"templated":false,
"mediaType":"application/json",
"method":"GET"
}
]
}
},
{
"pageId":120,
"instanceId":"d952fa9d-56cc-4adf-a1f5-0f549f3c49a4",
"version":"draft",
"item":{
"links":[
{
"rel":"canonical",
"href":"http://api.example.com/content/management/api/v1.1/items/CONT051B2BD577E24A3F804785E1CF21B7D3",
"templated":false,
"mediaType":"application/json",
"method":"GET"
}
]
}
}
]
}
400 Response
401 Response
403 Response
404 Response
-
Cache-Control: string
Directives for caching mechanisms.
-
Content-Length: string
Size of the response body.
-
Content-Type: string
Content type of the response.
-
object
ExceptionDetail
In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.
-
object
SiteNotFoundExceptionDetail-allOf[1]
object
In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.
-
detail(optional):
string
Description specific to this occurrence of the problem. The human-readable, potentially multi-line details describing the problem in more details.
-
instance(optional):
string(uri)
URI to the link that provides more detail about the error.
-
o:errorCode(optional):
string
Application error code, which is different from HTTP error code. This code should be used to check for specific errors, rather than comparing fields such as the
title
ordetail
. -
o:errorDetails(optional):
array o:errorDetails
Multiple errors can be organized in a hierarchical structure.
-
o:errorPath(optional):
string
XPath or JSON path to indicate where the error occurs.
-
status(optional):
integer(int32)
Corresponding HTTP status code for the error.
-
title(optional):
string
Short, human-readable summary of the problem. It is not advisable to use the title as a way of checking for specific errors, use the
o:errorCode
for this purpose. -
type(optional):
string(uri)
Absolute URI that identifies the problem type. When this URI dereferenced, it should provide a human-readable summary of the problem, for example, as a HTML page.
object
-
site(optional):
string
Site that does not exist or is not visible to the authenticated user.
array
Multiple errors can be organized in a hierarchical structure.
-
object
ExceptionDetail
In addition to HTTP error code and error messages, it is often desirable to provide additional information to the client when a request fails. In such cases, the additional information will be included in the response body.
{
"type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
"title":"Site Not Found",
"status":"404",
"detail":"Site does not exist or has been deleted, or the authenticated user or client application does not have access to the site.",
"o:errorCode":"OCE-SITEMGMT-009003",
"site":{
"id":"FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
}
}