Get archive process details by its archiveGUID

get

/ArchiveService/api/v1/archives/{archiveGUID}

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Successfully retrieved archival process details
Body ()
Root Schema : ArchivalResponse
Type: object
Archival Response Schema
Show Source

404 Response

No archival process details found for the archiveGUID
Back to Top

Examples

This example describes how the service will provide all the batch details of an Archival job.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl \
  -X GET \
  -H "Content-Type: application/json" \
  -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \
  -L "http:server:port/ArchiveService/api/v1/archives/{archiveGUID}"

Example Response Body

The following shows an example of the response body in JSON format:

{
    "archiveGUID": "FC07A74B-421B-C8CC-E053-05914C649109",
    "archiveName": "ARCHIVE_20230519071310",
    "archiveStatus": "COMPLETED",
    "archivedCount": 1,
    "batchSize": 2,
    "createdBy": "root",
    "createdDate": "2023-05-19",
    "endTime": "2023-05-19T07:13:11.211Z",
    "entityType": "ACTIVITY",
    "expectedCount": 1,
    "startTime": "2023-05-19T07:13:10.450Z"
}

Back to Top