Plane docs
ApiSchemas

ChannelTokenIssued

One shape from the contract, as it appears on the wire.

Used by channels.issueToken

JSON Schema

{
  "type": "object",
  "properties": {
    "channelId": {
      "$ref": "#/components/schemas/ChannelId"
    },
    "kind": {
      "$ref": "#/components/schemas/IssuableChannelKind"
    },
    "token": {
      "type": "string"
    },
    "expiresAt": {
      "type": "string"
    }
  },
  "required": [
    "channelId",
    "kind",
    "token",
    "expiresAt"
  ],
  "additionalProperties": false
}

On this page