Website logo
Docs
API Reference
Postman Collection
Release Notes
Navigate through spaces
⌘K
Introduction
Overview
Getting started with the OS1 Platform
Getting started with building Apps
Concepts
Working with Callbacks
Console UI Overview
Custom Code
Working with GraphQL
Custom Attributes Ownership
Attribute-Based Access Control (ABAC)
Data Listing and Query (DLQS) Search
Core API dev guides
Overview
Authentication And Authorization
Participant
Container
Dispatch
Orchestrator
Workflow
Secure Data Storage
File Management
State Machine
Entity
Notification
Motion Tracking System
Location
Platform Order Management
Address
Scheduler
Logistics Framework API Dev guides
Overview
LogisticsOrder API
User API
Facility API
Vehicle API
How-To Guides
Integrate Your Application with Console UI
Integrate with Participants
Integrate with Containers
Integrate with Users
Integrate with Vehicles
Integrate with Facilities
Integrate with Entities
Integrate with Dispatch
Integrate with Logistics Order
Integrate with Platform Order Management
Integrate with Location Service
Integrate with Orchestrator
GraphQl Schemas
GraphQL: Dispatch Queries
GraphQL: Order Queries
GraphQL: Workflow Queries
GraphQL: Container Queries
Platform SDKs
SDK Overview
Sample Apps
Vehicle Management App
Container App
Resources
FAQs
Glossary
Data Types Used in OS1
Development Guidelines
Entity, Event, and Reason Codes
Service/API Level Error Codes
Docs powered by Archbee
How-To Guides
Integrate with Containers

How To: Bulk Containerize/Decontainerize

2min


How to use Bulk Containerization

For the Bulk containerization API endpoint, check the attributes required in the payload below.

JSON
{
  "parentId": "pallet:9c9b1138-7cdd-11eb-9439-0242ac130002",
  "childContainerType": "palletChild",
  "childIds": [
    "palletChild:9c9b1138-7cdd-11eb-9439-0242ac130002",
    "palletChild:9c9b1138-7cdd-11eb-9439-0242ac130003"
  ],
  "subState": "closed",
  "trackingDetails": [
    {
      "operator": "Delhivery",
      "trackingId": "132121232423232",
      "isPrimary": false
    }
  ],
  "attributes": {},
  "items": [
    {
      "name": "pant/shirt",
      "code": "string",
      "cost": {
        "unit": {
          "amount": 0,
          "currency": "string"
        },
        "total": {
          "amount": 0,
          "currency": "string"
        }
      },
      "quantity": {
        "value": 0,
        "unit": "cm"
      }
    }
  ],
  "scannableId": "string",
  "isHazmat": false,
  "isContainerizable": true,
  "isReusable": false,
  "action": "CONTAINERIZE",
  "callback": {
    "url": "https://www.examplecallback.com",
    "meta": "string"
  }
}


How to use Bulk-Decontainerization

For Bulk Decontainerization, change the value for the action attribute to "DECONTAINERIZE" in the payload shown above for containerization.

Updated 16 Aug 2023
Did this page help you?
PREVIOUS
How to: Implement Custom Code in Container Services
NEXT
How To: Create & Update Containers In Batch
Docs powered by Archbee
TABLE OF CONTENTS
How to use Bulk Containerization
How to use Bulk-Decontainerization
Docs powered by Archbee