v31

latestSwagger 2.0Open Government Licence v3.0raw.githubusercontent.com2026-06-01111230.6 KB
Private

Add a dataset item to a bundle

Adds the dataset item to the list of items to be published as part of the bundle

post/bundles/{id}/contents

Request body

bundle_idstring

The ID of the bundle the content item is associated with.

content_type'DATASET' required

The type of content the item is.

idstring

An auto generated ID field to identify the item

state'APPROVED' | 'PUBLISHED'

The approval status of the item. Pre-release, this field will be hydrated from the dataset API when requested. Post-release, the bundle API will store a snapshot of the dataset metadata to be returned on subsequent requests.

Example request

{
  "bundle_id": "9e4e3628-fc85-48cd-80ad-e005d9d283ff",
  "metadata": {
    "dataset_id": "cpih",
    "edition_id": "march",
    "title": "Consumer Prices Index",
    "version_id": 1
  },
  "id": "de3bc0b6-d6c4-4e20-917e-95d7ea8c91dc",
  "state": "PUBLISHED",
  "links": {
    "edit": "https://publishing.ons.gov.uk/data-admin/series/cpih/editions/time-series/versions/1",
    "preview": "https://publishing.ons.gov.uk/inflationandpriceindices/datasets/cpih/editions/time-series/versions/1"
  }
}

Response

Content was added

bundle_idstring

The ID of the bundle the content item is associated with.

content_type'DATASET' required

The type of content the item is.

idstring

An auto generated ID field to identify the item

state'APPROVED' | 'PUBLISHED'

The approval status of the item. Pre-release, this field will be hydrated from the dataset API when requested. Post-release, the bundle API will store a snapshot of the dataset metadata to be returned on subsequent requests.

Example response

{
  "bundle_id": "9e4e3628-fc85-48cd-80ad-e005d9d283ff",
  "metadata": {
    "dataset_id": "cpih",
    "edition_id": "march",
    "title": "Consumer Prices Index",
    "version_id": 1
  },
  "id": "de3bc0b6-d6c4-4e20-917e-95d7ea8c91dc",
  "state": "PUBLISHED",
  "links": {
    "edit": "https://publishing.ons.gov.uk/data-admin/series/cpih/editions/time-series/versions/1",
    "preview": "https://publishing.ons.gov.uk/inflationandpriceindices/datasets/cpih/editions/time-series/versions/1"
  }
}