Create a release platform

Creates a new release platform.

POST/v3/release-platforms
JWT
release:write

Request Body Schema

PropertyTypeDescriptionConstraints
name*stringName of the platform.min: 1, max: 256
displayName*stringDisplay name of the channel.min: 1, max: 256
descriptionstringDescription for the platform.min: 0, max: 256
productIdsarrayArray of product IDs to associate with this release platform. If provided, ProductId is ignored. If not provided, ProductId is used.items: string

Request Example

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

Responses

201 Created
{
  "id": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "name": "string",
  "displayName": "string",
  "description": "string",
  "productIds": [
    "string"
  ]
}