v1

latestOpenAPI 3.1.0MIT2026-08-0492100246.4 KB
plugins

Create a new plugin notification request.

post/plugin-notification-requests

Request body

plugin_teamstring required

The unique name for the team.

plugin_kind'source' | 'destination' | 'transformer' required

The kind of plugin, ie. source or destination.

plugin_namestring required

The unique name for the plugin.

Example request

{
  "plugin_team": "cloudquery",
  "plugin_kind": "source",
  "plugin_name": "aws-source"
}

Response

Created

plugin_teamstring required

The unique name for the team.

plugin_kind'source' | 'destination' | 'transformer' required

The kind of plugin, ie. source or destination.

plugin_namestring required

The unique name for the plugin.

created_atstring date-time required
sent_atstring date-time
status'pending' | 'sent'

Status of a plugin notification request

Example response

{
  "plugin_team": "cloudquery",
  "plugin_kind": "source",
  "plugin_name": "aws-source",
  "created_at": "2017-07-14T16:53:42Z",
  "sent_at": "2017-07-14T16:53:42Z"
}