Skip to main content

Container

A container is a meta entity that groups records together and allows the planner to schedule those records as if it was one entity. It's a flexible tool to enforce business rules and they can be used in a variety of ways, such as creating trips, enforce work breakdown structures, manufacturing sequences, and more.

Upsert

Inserts or updates a container.

NameData TypeDefaultRequired
Namenvarchar(100)✔️
HandleDatedatetime
HandleLockedbitTrue
  • This endpoint is available in the import API endpoint /import via the procedure mboc_upsertContainer.
  • Example body:
    [
    {
    "StoredProcedureName": "mboc_upsertContainer",
    "ParameterNames": ["Name","HandleDate", "HandleLocked"],
    "ParameterValues": ["Container 1","2024-01-01", "false"]
    }
    ]

Delete

Removes a container and its members

NameData TypeDefaultRequired
Namenvarchar(100)✔️
  • This endpoint is available in the import API endpoint /import via the procedure mboc_deleteContainer.
  • Example body:
    [
    {
    "StoredProcedureName": "mboc_deleteContainer",
    "ParameterNames": ["Name"],
    "ParameterValues": ["Container 1"]
    }
    ]

Read more