v5

latestOpenAPI 3.1.02026-07-31151195455.5 KB
bundles

Creates a bundle.

post/bundles

Request body

namestring required

The name of the bundle.

descriptionstring

A brief description of the bundle.

admin_owner_idstring required

The ID of the bundle's admin owner.

Example request

{
  "name": "Engineering Team Bundle",
  "description": "Engineering team bundle.",
  "admin_owner_id": "7870617d-e72a-47f5-a84c-693817ab4567"
}

Response

The bundle successfully created.

bundle_idstring uuid

The ID of the bundle.

namestring

The name of the bundle.

descriptionstring

The description of the bundle.

created_atstring date-time

The creation timestamp of the bundle, in ISO 8601 format

updated_atstring date-time

The last updated timestamp of the bundle, in ISO 8601 format

admin_owner_idstring uuid

The ID of the owner of the bundle.

total_num_itemsinteger

The total number of items in the bundle.

total_num_resourcesinteger

The total number of resources in the bundle.

total_num_groupsinteger

The total number of groups in the bundle.

Example response

{
  "bundle_id": "a381e7a3-e5e0-4c48-b1d6-4ccb4c191bc1",
  "name": "Bundle 1",
  "description": "Description of bundle 1",
  "admin_owner_id": "4aed3e8a-727b-4d72-8010-3b8710c50bec",
  "total_num_items": 15,
  "total_num_resources": 10,
  "total_num_groups": 5
}