Unpublish a Site

post

/sites/management/api/v1/sites/{id}/unpublish

EXTENDED OPERATION

Unpublish the site, freeing up resources that are taken by the published site artifacts. Updates can only be unpublished if the site is offline.

Introduced in release 19.4.1.

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

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/unpublish

Introduced in release 19.4.1.

Redirection Response Examples

This operation responds with the following redirection (3xx) responses. For a full list of response HTTP status codes and example bodies, consult the Response section of this operation. Note: Depending on the client technology used to invoke this operation a 2xx response may be returned if the redirection is followed automatically.

303See Other

On successful execution of this operation a 303 status code is returned with a Location header where the results of the operation can be read.

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.

403Forbidden - Site Operation Forbidden

Your sharing role within the site does not allow you to perform the operation.

Error Code

OCE-SITEMGMT-009026

Resolution - Change the Sharing Role

Change the sharing role given to the authenticated user to the required role or higher.

Resolution - Change the Application Role

Ensure the user has a Standard User or Enterprise User Application Role.

Exception Detail Fields

This error type includes the following fields/values in the response:

Field NameDescription
siteSite on which the operation is being performed.

For detailed information about this exception detail type, consult the SiteOperationForbiddenExceptionDetail 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 Operation Forbidden",
  "status": "403",
  "detail": "You do have a sharing role in this site, but your role does not allow you to use this operation.",
  "o:errorCode": "OCE-SITEMGMT-009026",
  "site": {
    "id": "FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
  }
}

Introduced in release 19.1.5.

403Forbidden - Storage Limit Reached

Storage transfer limit has been reached. Billing limits have been set on the amount of storage available by the system administrator.

Error Code

OCE-SITEMGMT-009098

Resolution - Increase Storage Limit

Get a system administrator to increase the storage limit.

Exception Detail Fields

This error type includes the following fields/values in the response:

Field NameDescription
usedStorage used, in GB.
limitStorage limit, in GB.

For detailed information about this exception detail type, consult the StorageLimitReachedExceptionDetail 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": "Storage Limit Reached",
  "status": "403",
  "detail": "Storage limit has been reached.",
  "o:errorCode": "OCE-SITEMGMT-009098",
  "used": 1.23456789,
  "limit": 1.23456789
}

Introduced in release 20.3.1.

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 NameDescription
siteSite 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"
  }
}

409Conflict - Invalid Site Publish Status

A site operation cannot be performed because the site is in the wrong publish state. An example is attempting to bring a site online that is unpublished, or renaming a published site.

Error Code

OCE-SITEMGMT-009031

Resolution - Unpublish Site Before Updating Security Level

While a site is published, the site security level cannot be changed from a public to a secure site or vice versa. In order to change whether a site requires sign-in or not requires the site to be offline and unpublished.

Resolution - Unpublish Site Before Renaming

In order to rename a site it must be offline and unpublished.

Exception Detail Fields

This error type includes the following fields/values in the response:

Field NameDescription
siteSite on which the operation is being performed.
publishStatusSite publish status. Valid values are:
  • unpublished - Site is unpublished. No published files on runtime site environment
  • draft - Site has draft updates. Published files exist on runtime site environment, but there are new unapproved updates in base site
  • approved - Site has approved updates. Published files exist on runtime site environment, but there are new approved updates in base site
  • published - Site is published. Published files exist on runtime site environment
requiredStatusRequired site publish status. Valid values are:
  • unpublished - Site is unpublished. No published files on runtime site environment
  • draft - Site has draft updates. Published files exist on runtime site environment, but there are new unapproved updates in base site
  • approved - Site has approved updates. Published files exist on runtime site environment, but there are new approved updates in base site
  • published - Site is published. Published files exist on runtime site environment

For detailed information about this exception detail type, consult the InvalidSitePublishStatusExceptionDetail 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": "Invalid Site Publish Status",
  "status": "409",
  "detail": "Operation cannot be performed on a site with publish status '{publishStatus}'.",
  "o:errorCode": "OCE-SITEMGMT-009031",
  "site": {
    "id": "FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
  },
  "publishStatus": "unpublished",
  "requiredStatus": [
      "unpublished"
  ]
}

409Conflict - Invalid Site Status

A site operation cannot be performed because the site is in the wrong state. An example attempting to bring a site online that is already online, or renaming an online site.

Error Code

OCE-SITEMGMT-009013

Resolution - Take Site Offline Before Updating Security Level

While a site is online, the site security level cannot be changed from a public to a secure site or vice versa. In order to change whether a site requires sign-in or not requires the site to be offline and unpublished.

Resolution - Take Site Offline Before Renaming

In order to rename a site it must be offline and unpublished.

Exception Detail Fields

This error type includes the following fields/values in the response:

Field NameDescription
siteSite on which the operation is being performed.
runtimeStatusSite. Valid values are:
  • offline - Site is offline. Site has not been activated, or was activated and was deactivated
  • online - Site is online. Site has been activated
requiredStatusRequired site status. Valid values are:
  • offline - Site is offline. Site has not been activated, or was activated and was deactivated
  • online - Site is online. Site has been activated

For detailed information about this exception detail type, consult the InvalidSiteRuntimeStatusExceptionDetail 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": "Invalid Site Status",
  "status": "409",
  "detail": "Operation cannot be performed on a site with status '{runtimeStatus}'.",
  "o:errorCode": "OCE-SITEMGMT-009013",
  "site": {
    "id": "FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
  },
  "runtimeStatus": "offline",
  "requiredStatus": "offline"
}

409Conflict - Site Deleted

The operation cannot be performed on a soft deleted site. This error can only occur when the includeDeleted query parameter is set to true.

Error Code

OCE-SITEMGMT-009059

Resolution - Restore Site

Restore the site and then try the operation again.

Exception Detail Fields

This error type includes the following fields/values in the response:

Field NameDescription
siteSite that is soft deleted, if the site identifier has been provided.

For detailed information about this exception detail type, consult the SiteDeletedExceptionDetail 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 Deleted",
  "status": "409",
  "detail": "The operation cannot be performed as the site has been soft deleted.",
  "o:errorCode": "OCE-SITEMGMT-009059",
  "site": {
    "id": "FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
  }
}

Introduced in release 19.4.1.

Request

Path Parameters
Query Parameters
  • Resources that have been marked for deletion can be read, modified, and support extended operations as long this query parameter is set to true. When the includeDeleted query parameter is not sent then the response to read, modification, and extended operations will be identical to that which would be returned if the resource was permanently deleted.

Back to Top

Response

303 Response

See Other
Headers

400 Response

Bad Request

401 Response

Unauthorized

403 Response

Forbidden
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SiteOperationForbiddenExceptionDetail
Introduced in release 19.1.5.
Match All
Show Source
Nested Schema : ExceptionDetail
Type: 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.

Show Source
Nested Schema : SiteOperationForbiddenExceptionDetail-allOf[1]
Type: object
Show Source
Nested Schema : o:errorDetails
Type: array

Multiple errors can be organized in a hierarchical structure.

Show Source
Nested Schema : items
Match All
Show Source
  • 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.

Example Response (Site Operation Forbidden)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Site Operation Forbidden",
    "status":"403",
    "detail":"You do have a sharing role in this site, but your role does not allow you to use this operation.",
    "o:errorCode":"OCE-SITEMGMT-009026",
    "site":{
        "id":"FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
    }
}
Example Response (Storage Limit Reached)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Storage Limit Reached",
    "status":"403",
    "detail":"Storage limit has been reached.",
    "o:errorCode":"OCE-SITEMGMT-009098",
    "used":1.23456789,
    "limit":1.23456789
}

404 Response

Not Found
Headers
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : SiteNotFoundExceptionDetail
Match All
Show Source
Nested Schema : ExceptionDetail
Type: 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.

Show Source
Nested Schema : SiteNotFoundExceptionDetail-allOf[1]
Type: object
Show Source
Nested Schema : o:errorDetails
Type: array

Multiple errors can be organized in a hierarchical structure.

Show Source
Nested Schema : items
Match All
Show Source
  • 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.

Example Response (Site Not Found)
{
    "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"
    }
}

409 Response

Conflict
Body ()
Root Schema : schema
Match All
Show Source
Nested Schema : InvalidSitePublishStatusExceptionDetail
Match All
Show Source
Nested Schema : ExceptionDetail
Type: 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.

Show Source
Nested Schema : InvalidSitePublishStatusExceptionDetail-allOf[1]
Type: object
Show Source
  • Site publish status.

    Valid values are:

    • unpublished - Site is unpublished. No published files on runtime site environment
    • draft - Site has draft updates. Published files exist on runtime site environment, but there are new unapproved updates in base site
    • approved - Site has approved updates. Published files exist on runtime site environment, but there are new approved updates in base site
    • published - Site is published. Published files exist on runtime site environment

  • requiredStatus

    Required site publish status.

    Valid values are:

    • unpublished - Site is unpublished. No published files on runtime site environment
    • draft - Site has draft updates. Published files exist on runtime site environment, but there are new unapproved updates in base site
    • approved - Site has approved updates. Published files exist on runtime site environment, but there are new approved updates in base site
    • published - Site is published. Published files exist on runtime site environment

  • Site on which the operation is being performed.

Nested Schema : o:errorDetails
Type: array

Multiple errors can be organized in a hierarchical structure.

Show Source
Nested Schema : items
Match All
Show Source
  • 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.

Nested Schema : requiredStatus
Type: array

Required site publish status.

Valid values are:

  • unpublished - Site is unpublished. No published files on runtime site environment
  • draft - Site has draft updates. Published files exist on runtime site environment, but there are new unapproved updates in base site
  • approved - Site has approved updates. Published files exist on runtime site environment, but there are new approved updates in base site
  • published - Site is published. Published files exist on runtime site environment

Show Source
Example Response (Invalid Site Publish Status)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Invalid Site Publish Status",
    "status":"409",
    "detail":"Operation cannot be performed on a site with publish status '{publishStatus}'.",
    "o:errorCode":"OCE-SITEMGMT-009031",
    "site":{
        "id":"FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
    },
    "publishStatus":"unpublished",
    "requiredStatus":[
        "unpublished"
    ]
}
Example Response (Invalid Site Status)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Invalid Site Status",
    "status":"409",
    "detail":"Operation cannot be performed on a site with status '{runtimeStatus}'.",
    "o:errorCode":"OCE-SITEMGMT-009013",
    "site":{
        "id":"FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
    },
    "runtimeStatus":"offline",
    "requiredStatus":"offline"
}
Example Response (Site Deleted)
{
    "type":"http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.4.1",
    "title":"Site Deleted",
    "status":"409",
    "detail":"The operation cannot be performed as the site has been soft deleted.",
    "o:errorCode":"OCE-SITEMGMT-009059",
    "site":{
        "id":"FCA9C0E5CDCB549A19FFB85987A2352778961003B8A0"
    }
}

413 Response

Payload Too Large

429 Response

Too Many Requests

500 Response

Internal Server Error

501 Response

Not Implemented

502 Response

Bad Gateway

503 Response

Service Unavailable

504 Response

Gateway Timeout
Back to Top