Validate package export
Performs a dry run/validation operation for export. It gathers the metadata about all the entities in the content graph that will be exported as part of the package export. In case of any permission exceptions where certain entities are skipped from the export then the user is alerted about the missed entities.
Request
URI
GET
https://{api_host}/content-management-service/api/packages/{id}/validate
COPY
Path Parameters
string
id
Required
The UUID of the package
Responses
200
Successful operation
Returns OperationInfo of type(s) */*
{
"operationStatus": "string",
"operationResults": [
{
"operationErrors": [
{
"errorMessage": "string",
"errorCode": 0
}
],
"operationStatus": "string",
"contentId": "string",
"contentTypeId": "string",
"messages": [
"string"
],
"contentName": "string"
}
],
"operationType": "string"
}
string
operationStatus
Optional
operationStatus
Possible values are : SUCCESS, FAILED, WARNING,
string
operationType
Required
operationType
Possible values are : IMPORT, EXPORT, IMPORT_DRY_RUN, EXPORT_DRY_RUN,