v1

latestOpenAPI 3.1.0MIT2026-08-0492100246.4 KB
teams

Increase the usage of a plugin. This can incur billing costs and should be used only by plugin SDKs.

post/teams/{team_name}/usage

Path parameters

team_namestring required

The unique name for the team.

Example:cloudquery

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.

rowsinteger required

The total number of additional rows used by the plugin.

request_idstring uuid required

A unique ID associated with the usage increase.

installation_idstring

Installation ID associated with the platform, for platform syncs.

Example request

{
  "plugin_team": "cloudquery",
  "plugin_kind": "source",
  "plugin_name": "aws-source",
  "tables": [
    {
      "name": "my_table",
      "rows": 100
    }
  ],
  "rows": 1000000,
  "request_id": "123e4567-e89b-12d3-a456-426614174000"
}

Response

Success (the plugin usage was increased). It may take some time to reflect in the usage list.