Update a release channel

Updates the specified release channel by setting the values of the parameters passed. Any parameters not provided will be left unchanged.

PATCH/v3/release-channels/{id}
JWT
release:write

Parameters

NameTypeInDescription
id*stringpathUnique identifier for the release channel.

Request Body Schema

PropertyTypeDescriptionConstraints
descriptionstringDescription for the channel.min: 0, max: 256
displayNamestringDisplay name of the channel.min: 1, max: 256
privatebooleanPrivate channels don't appear in the customer portal.
productIdsarrayArray of product IDs to associate with this release channel.items: string

Request Example

{
  "description": "string",
  "displayName": "string",
  "private": true,
  "productIds": [
    "string"
  ]
}
Triggers webhook: releaseChannel.updated
POST <your-webhook-url>
{
  "event": "releaseChannel.updated",
  "data": {
    "id": "string",
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "name": "string",
    "displayName": "string",
    "description": "string",
    "private": true,
    "productIds": [
      "string"
    ]
  },
  "triggeredAt": "string"
}

Responses

200 OK
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "displayName": "string",
  "description": "string",
  "private": true,
  "productIds": [
    "string"
  ]
}