Create a publishing acknowledgement

post

http://{PublishServerHost}/api/productCatalogManagment/v1/publishingAcknowledgement

Receives the acknowledgment from spoke system and update the publishing status corresponding to the spoke system.

Request

There are no request parameters for this operation.

Supported Media Types
Request Body - application/json ()
Root Schema : PublishingAcknowledgement
Type: object
Title: PublishingAcknowledgement
Is a detailed description of a acknowledgment of the published project from spoke system.
Show Source
Nested Schema : projectItemsStatus
Type: array
Contains the list of publish status of Project Items that are part of the publish
Show Source
Nested Schema : ProjectItemStatusRef
Type: object
Title: ProjectItemStatusRef
Project Item Publish Status reference.
Show Source
Back to Top

Response

201 Response

Your request is processed successfully.

400 Response

Your request couldn't be processed because it contains missing or invalid information, such as a validation error on an input field, a missing required value, and so forth.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

401 Response

Your request isn't authorized. The authentication credentials included with this request are missing or invalid.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

404 Response

Your request includes a resource URI that doesn't exist.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

405 Response

HTTP action specified in the request (DELETE, GET, POST, PUT) isn't supported for this request URI.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

409 Response

The request can't be completed due to a conflict with the current state of the resource.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source

500 Response

The server encountered something unexpected that prevented it from completing the request.
Body ()
Root Schema : Error
Type: object
Title: Error
Show Source
Back to Top

Examples

The following example shows how to create a publish job by submitting a POST request on the REST resource using cURL.

cURL Command

curl -H 'Authorization: Bearer<accessToken>' -X POST https://{FusionAppsHost}/api/productCatalogManagement/v1/publishingAcknowledgement' \ -H 'Content-Type: application/json' -D @create_publishack.json | json_pp

Example of Request Body

The following example shows the contents of the request body in JSON format.
{
    "status": "Success"
}
Back to Top