Skip to main content
Top-level work container — a project, queue, product line, or service queue. Every DataItem belongs to exactly one container. Containers carry an owner and one or more processes (each defining a workflow + field schema).

Sample JSON

Copy, edit, paste. Server-set fields (id, created, tenantId, …) are omitted from the example — they’re populated by the server on response.

What Ekso fills in

These fields are managed by the server. You don’t pass them on writes — they appear on the response.
  • lastSequence — Counter for the next item sequence number. Server increments this every time POST /api/item creates an item against this container.

Fields

FieldTypeRequiredNotes
entitystring • nullableServer-setSet by the server. Read-only on writes.
codestringRequiredShort human-readable code. Unique per tenant. Used as a prefix in item identifiers (FEN-123).
namestringRequiredDisplay name shown across the UI and reports.
descriptionstringRequiredLong-form description. Plain text in the database; some surfaces render markdown.
labelstringOptionalId of a ConfigLabel for visual grouping — colour coded across boards and lists.
lastSequenceintegerServer-setServer-managed counter. The next item created against this container will be code-(lastSequence+1).
ownerstringOptionalUser id of the owning user. The owner has implicit ChangeOwn / DeleteOwn rights regardless of explicit role grants.
archivedbooleanOptionalWhen true, the container is hidden from default lists; items remain queryable.
rolearray<DataRole>OptionalPer-role access grants. Each entry pairs an AppRole with the user-group ids that hold that role on this container.
processarray<DataProcess>OptionalArray of DataProcess references attached to this container. The first acts as the default for new items.
tenantIdstringServer-setSet by the server. Read-only on writes.
idstringServer-setSet by the server. Read-only on writes.
createdstring (date-time)Server-setSet by the server. Read-only on writes.
createdBystringServer-setSet by the server. Read-only on writes.
updatedstring (date-time)Server-setSet by the server. Read-only on writes.
updatedBystringServer-setSet by the server. Read-only on writes.
deletedbooleanServer-setSet by the server. Read-only on writes.

Used by

Request body

  • POST /api/container
  • PUT /api/container

Response body

  • GET /api/container/{id}
  • GET /api/container
  • POST /api/container

CLI

ekso container — see the command branches page for available verbs. Body for create / update verbs typically passed via --data @file.json matching the sample JSON above.