Bulk Update Channel Content Overrides

Updates multiple existing channel content overrides in a single operation. Supports partial success — individual failures don't affect successful updates.

PATCH/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk
API
Management
Updated
Apr 26, 2026

management-api:PATCH:/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk

Updates multiple existing channel content overrides in a single operation. Supports partial success — individual failures don't affect successful updates.

API ownership

  • API family: Management API
  • Best for: Trusted back-office workflows that create, update, organize, or delete merchant-owned data.
  • Do not use from: Browser-only storefront code or public clients.
  • Guide route: /apis/management/latest

The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.

Operation

  • Method: PATCH
  • Path: /api/v1/\{team_slug\}/\{app_slug\}/channels/\{channel_id\}/content/bulk
  • Summary: Bulk Update Channel Content Overrides
  • Description: Updates multiple existing channel content overrides in a single operation. Supports partial success — individual failures don't affect successful updates.
  • OpenAPI contract: management-api
  • Operation ID: Not documented in the OpenAPI contract.

Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.

Parameters3 parameters
NameInRequiredTypeDescription
team_slugpathYesstringTeam slug
app_slugpathYesstringApp slug
channel_idpathYesstringChannel ID
Request bodyDocumented body
  • Required: Yes
  • Description: Channel content data to update
  • Content: application/json (object)

Bulk Update Channel Content Payload

PropertyTypeRequiredDetails
contentobject[]YesmaxItems: 100

Bulk Update Channel Content Item

PropertyTypeRequiredDetails
content_idstringYes-
relationshipsstring[]No-
translationsobject[]No-
valuestringNo-

Localized Value

PropertyTypeRequiredDetails
language_codestringNo-
valuestringNo-

Generated example (synthetic):

{
  "content": [
    {
      "content_id": "string",
      "relationships": [
        "string"
      ],
      "translations": [
        {
          "language_code": null,
          "value": null
        }
      ],
      "value": "string"
    }
  ]
}
Responses4 statuses
StatusDescriptionContent
200OKapplication/json (object)
400Bad Requestapplication/json (object)
404Not Foundapplication/json (object)
500Internal Server Errorapplication/json (object)

200 - object

Bulk Update Channel Content Response

PropertyTypeRequiredDetails
dataobjectNo-
detailsstring[]NoAdditional contextual information about the response. Used to provide supplementary details beyond the main data payload, such as validation warnings or processing notes
successbooleanNo-
Bulk Update Channel Content
PropertyTypeRequiredDetails
failedobject[]No-
successfulobject[]No-
Bulk Update Channel Content Failed Update
PropertyTypeRequiredDetails
payloadobjectNo-
reasonstringNo-
Channel Content
PropertyTypeRequiredDetails
created_atstringNo-
field_typestringNo-
idstringNo-
parent_idstringNo-
parent_typestringNo-
previewstring[]No-
relationshipsstring[]No-
translationsobject[]No-
updated_atstringNo-
valuestringNo-

Generated example (synthetic):

{
  "data": {
    "failed": [
      {
        "payload": {
          "content_id": null,
          "relationships": null,
          "translations": null,
          "value": null
        },
        "reason": "string"
      }
    ],
    "successful": [
      {
        "created_at": "string",
        "field_type": "string",
        "id": "string",
        "parent_id": "string",
        "parent_type": "string",
        "preview": [],
        "relationships": [],
        "translations": [],
        "updated_at": "string",
        "value": "string"
      }
    ]
  },
  "details": [
    "string"
  ],
  "success": false
}

400 - object

Error Message

PropertyTypeRequiredDetails
detailsstring[]No-
messagestringNo-
successbooleanNo-

Generated example (synthetic):

{
  "details": [
    "string"
  ],
  "message": "string",
  "success": false
}

404 - object

Error Message

PropertyTypeRequiredDetails
detailsstring[]No-
messagestringNo-
successbooleanNo-

Generated example (synthetic):

{
  "details": [
    "string"
  ],
  "message": "string",
  "success": false
}

500 - object

Error Message

PropertyTypeRequiredDetails
detailsstring[]No-
messagestringNo-
successbooleanNo-

Generated example (synthetic):

{
  "details": [
    "string"
  ],
  "message": "string",
  "success": false
}

Contract identity

Use these fields to confirm you are implementing the intended endpoint contract.

  • API family: Management API
  • Method: PATCH
  • Path: /api/v1/\{team_slug\}/\{app_slug\}/channels/\{channel_id\}/content/bulk
  • Operation ID: Not documented in the OpenAPI contract.
  • OpenAPI tag: Channels, ChannelContent, Bulk
  • OpenAPI summary: Bulk Update Channel Content Overrides

Bulk Update Channel Content Overrides

# Bulk Update Channel Content Overrides Updates multiple existing channel content overrides in a single operation. Supports partial success — individual failures don't affect successful updates.
PATCH /api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk
Purpose

Updates multiple existing channel content overrides in a single operation.

Required inputs

team_slug path app_slug path channel_id path

Primary response

200 · OK

Operation key

management-api:PATCH:/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk

## API ownership - API family: Management API - Best for: Trusted back-office workflows that create, update, organize, or delete merchant-owned data. - Do not use from: Browser-only storefront code or public clients. - Guide route: [/apis/management/latest](/apis/management/latest) The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation. ## Operation - Method: `PATCH` - Path: `/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk` - Summary: Bulk Update Channel Content Overrides - Description: Updates multiple existing channel content overrides in a single operation. Supports partial success — individual failures don't affect successful updates. - OpenAPI contract: management-api - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `management-api:PATCH:/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk` Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID. ## Parameters | Name | In | Required | Type | Description | | --- | --- | --- | --- | --- | | team_slug | path | Yes | string | Team slug | | app_slug | path | Yes | string | App slug | | channel_id | path | Yes | string | Channel ID | ## Request body - Required: Yes - Description: Channel content data to update - Content: application/json (object) ### Bulk Update Channel Content Payload | Property | Type | Required | Details | | --- | --- | --- | --- | | `content` | object[] | Yes | maxItems: 100 | #### Bulk Update Channel Content Item | Property | Type | Required | Details | | --- | --- | --- | --- | | `content_id` | string | Yes | - | | `relationships` | string[] | No | - | | `translations` | object[] | No | - | | `value` | string | No | - | #### Localized Value | Property | Type | Required | Details | | --- | --- | --- | --- | | `language_code` | string | No | - | | `value` | string | No | - | **Generated example (synthetic):** ```json { "content": [ { "content_id": "string", "relationships": [ "string" ], "translations": [ { "language_code": null, "value": null } ], "value": "string" } ] } ``` ## Responses | Status | Description | Content | | --- | --- | --- | | 200 | OK | application/json (object) | | 400 | Bad Request | application/json (object) | | 404 | Not Found | application/json (object) | | 500 | Internal Server Error | application/json (object) | ### 200 - object #### Bulk Update Channel Content Response | Property | Type | Required | Details | | --- | --- | --- | --- | | `data` | object | No | - | | `details` | string[] | No | Additional contextual information about the response. Used to provide supplementary details beyond the main data payload, such as validation warnings or processing notes | | `success` | boolean | No | - | ##### Bulk Update Channel Content | Property | Type | Required | Details | | --- | --- | --- | --- | | `failed` | object[] | No | - | | `successful` | object[] | No | - | ##### Bulk Update Channel Content Failed Update | Property | Type | Required | Details | | --- | --- | --- | --- | | `payload` | object | No | - | | `reason` | string | No | - | ##### Channel Content | Property | Type | Required | Details | | --- | --- | --- | --- | | `created_at` | string | No | - | | `field_type` | string | No | - | | `id` | string | No | - | | `parent_id` | string | No | - | | `parent_type` | string | No | - | | `preview` | string[] | No | - | | `relationships` | string[] | No | - | | `translations` | object[] | No | - | | `updated_at` | string | No | - | | `value` | string | No | - | **Generated example (synthetic):** ```json { "data": { "failed": [ { "payload": { "content_id": null, "relationships": null, "translations": null, "value": null }, "reason": "string" } ], "successful": [ { "created_at": "string", "field_type": "string", "id": "string", "parent_id": "string", "parent_type": "string", "preview": [], "relationships": [], "translations": [], "updated_at": "string", "value": "string" } ] }, "details": [ "string" ], "success": false } ``` ### 400 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `details` | string[] | No | - | | `message` | string | No | - | | `success` | boolean | No | - | **Generated example (synthetic):** ```json { "details": [ "string" ], "message": "string", "success": false } ``` ### 404 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `details` | string[] | No | - | | `message` | string | No | - | | `success` | boolean | No | - | **Generated example (synthetic):** ```json { "details": [ "string" ], "message": "string", "success": false } ``` ### 500 - object #### Error Message | Property | Type | Required | Details | | --- | --- | --- | --- | | `details` | string[] | No | - | | `message` | string | No | - | | `success` | boolean | No | - | **Generated example (synthetic):** ```json { "details": [ "string" ], "message": "string", "success": false } ``` ## Contract identity Use these fields to confirm you are implementing the intended endpoint contract. - API family: Management API - Method: `PATCH` - Path: `/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk` - Operation ID: Not documented in the OpenAPI contract. - Stable operation key: `management-api:PATCH:/api/v1/{team_slug}/{app_slug}/channels/{channel_id}/content/bulk` - OpenAPI tag: Channels, ChannelContent, Bulk - OpenAPI summary: Bulk Update Channel Content Overrides