# List active manifests on a gate Returns all currently active manifests on a Multi-Manifest Gate, each with its loading progress (loadedAssetsCount / totalAssetsCount). Endpoint: GET /integration/rest/api/v1/gate/{gateExternalId}/manifest Version: v0 Security: X-AUTH-KEY ## Path parameters: - `gateExternalId` (string, required) External identifier of the gate Example: "GATE-A1" ## Response 200 fields (*/*): - `createDate` (string) - `updateDate` (string) - `deepLink` (string) Deep link URL to open this entity in Ops.App. - `externalIdentifier` (string) External unique identifier for this manifest. - `manifestStatus` (string) Current status of the manifest. Enum: "PLANNED", "TO_DO", "IN_PROGRESS", "COMPLETED", "CANCELLED" - `closeDate` (string) Timestamp when the manifest was closed/completed. - `activateDate` (string) Timestamp when the manifest was activated. - `tracksCount` (integer) Planning view: total tracks (assets) currently included in this manifest, regardless of loading state. For Total/Loaded execution counts use totalAssetsCount and loadedAssetsCount. - `totalAssetsCount` (integer) Total assets attached to this manifest, excluding invalid loadings (WRONGLY_LOADED, UNKNOWN_LOADING). - `loadedAssetsCount` (integer) Successfully loaded assets in this manifest, excluding invalid loadings. - `gate` (object) Assigned gate for this manifest (loading/unloading point). - `gate.name` (string) Human-readable gate name. - `gate.externalIdentifier` (string) External unique identifier of the gate. - `gate.status` (string) Current operational status of the gate. Enum: "AVAILABLE", "LOADING", "OUT_OF_SERVICE" - `gate.gateType` (string) Gate type. SINGLE_MANIFEST allows one active manifest at a time; MULTI_MANIFEST allows several manifests active simultaneously. Enum: "SINGLE_MANIFEST", "MULTI_MANIFEST" - `customFields` (array) Custom key–value fields attached to the manifest. - `customFields.fieldKey` (string) Unique key (name) of the custom field. This must match the configured field name. - `customFields.fieldValue` (string) Value of the custom field as a string. For numeric fields, send the number as a string. - `validationErrors` (object) Validation errors related to this manifest, if any. - `validationErrors.duplicatedTracks` (array) List of duplicated track issues (same asset added multiple times to the manifest). - `validationErrors.duplicatedTracks.trackIdentifier` (string) Business identifier of the duplicated track. - `validationErrors.duplicatedTracks.addedToManifests` (array) List of manifest identifiers where this track is already present. - `validationErrors.nonExistingTracks` (array) Asset identifiers that could not be found. - `validationErrors.deactivatedTracks` (array) Asset identifiers that are deactivated and cannot be added. - `proofOfShipmentUrl` (string) URL to the proof-of-shipment document. - `deleted` (boolean) Indicates whether the manifest is soft-deleted. - `shipmentSummaryUrl` (string) Public URL to the Shipment Summary page for this manifest. Present only when manifest status is COMPLETED. Does not expire. ## Response 400 fields (*/*): - `code` (string) Error code - `message` (string) Error message - `timeStamp` (integer) Timestamp - `correlationId` (string) Correlation id ## Response 404 fields (*/*): - `code` (string) Error code - `message` (string) Error message - `timeStamp` (integer) Timestamp - `correlationId` (string) Correlation id ## Response 500 fields (*/*): - `code` (string) Error code - `message` (string) Error message - `timeStamp` (integer) Timestamp - `correlationId` (string) Correlation id