Create a publishing acknowledgement

post

http://{PublishServerHost}/api/productCatalogManagement/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
A detailed description of an acknowledgment of the published project from a spoke system.
Show Source
Nested Schema : projectItemsStatus
Type: array
A list of project items status associated with the publishing acknowledgement.
Show Source
Nested Schema : ProjectItemStatusRef
Type: object
Title: ProjectItemStatusRef
The project Item Publish Status reference.
Show Source
Back to Top

Response

201 Response

The publishing acknowledgement was created 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
The error resource.
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
The error resource.
Show Source

404 Response

The resource with the specified URI couldn't be found.
Body ()
Root Schema : Error
Type: object
Title: Error
The error resource.
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
The error resource.
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
The error resource.
Show Source

500 Response

The server encountered something unexpected that prevented it from completing the request.
Body ()
Root Schema : Error
Type: object
Title: Error
The error resource.
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