Skip to content
Download OpenAPI description
Languages
Servers
Mock server

https://docs.zimark.link/_mock/api/

https://api.zimark-staging.link/

https://api.zimark.link/

Calibration Integration

External API for integration systems with token-based authentication

Operations

Manifest

API endpoints for managing manifests and their associated assets/tracks.

A manifest is a container that groups assets/pallets for tracking purposes.

Operations

Delete manifest asset loading record by track identifier

Request

Deletes an unassigned (non-expected) asset loading record by track identifier.

Security
X-AUTH-KEY
Path
manifestExternalIdstringrequired

Unique external identifier of the manifest

Example: MAN-2024-001
trackIdentifierstringrequired

Track identifier (WMS id)

Example: TRACK-123456
curl -i -X DELETE \
  https://docs.zimark.link/_mock/api/integration/rest/api/v1/manifest/MAN-2024-001/asset-loading/track/TRACK-123456 \
  -H 'X-AUTH-KEY: YOUR_API_KEY_HERE'

Responses

OK

Delete manifest asset loading record by marker value

Request

Deletes an unassigned (non-expected) asset loading record by marker value.

Security
X-AUTH-KEY
Path
manifestExternalIdstringrequired

Unique external identifier of the manifest

Example: MAN-2024-001
markerValuestringrequired

Marker value

Example: 33123456123
curl -i -X DELETE \
  https://docs.zimark.link/_mock/api/integration/rest/api/v1/manifest/MAN-2024-001/asset-loading/marker/33123456123 \
  -H 'X-AUTH-KEY: YOUR_API_KEY_HERE'

Responses

OK

Request

Security
X-AUTH-KEY
Path
manifestExternalIdstringrequired
Bodyapplication/jsonrequired
assetsArray of stringsnon-emptyrequired

List of asset (track) identifiers to add or update on the manifest.

customFieldsArray of objects(ManifestCustomFieldV1Dto)

Optional custom fields to apply to the manifest during the upsert operation.

curl -i -X POST \
  'https://docs.zimark.link/_mock/api/integration/rest/api/v1/manifest/{manifestExternalId}/upsert-assets' \
  -H 'Content-Type: application/json' \
  -H 'X-AUTH-KEY: YOUR_API_KEY_HERE' \
  -d '{
    "assets": [
      "string"
    ],
    "customFields": [
      {
        "fieldKey": "string",
        "fieldValue": "string"
      }
    ]
  }'

Responses

Ok

Body*/*
uuidstring
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations
Operations