v1

latestOpenAPI 3.1.0MIT2026-08-0492100246.4 KB
plugins

DEPRECATED. Plugin prices are now managed by category. This endpoint will be removed in the near future and currently returns only empty data.

post/plugins/{team_name}/{plugin_kind}/{plugin_name}/upcoming-price-changes

Path parameters

team_namestring required

The unique name for the team.

Example:cloudquery
plugin_kind'source' | 'destination' | 'transformer' required

The kind of plugin, ie. source or destination.

Example:source
plugin_namestring required

The unique name for the plugin.

Example:aws-source

Request body

usd_per_rowstring required

The price per row in USD. This is used to calculate the price of a sync.

free_rows_per_monthinteger required

The number of rows that can be synced for free each month.

effective_fromstring date-time required

The date and time the price came (or will come) into effect.

Example request

{
  "usd_per_row": "0.0001",
  "free_rows_per_month": 1000,
  "effective_from": "2024-01-02T00:00:00Z"
}

Response

Response

idstring uuid required

ID of the price change

usd_per_rowstring required

The price per row in USD. This is used to calculate the price of a sync.

free_rows_per_monthinteger required

The number of rows that can be synced for free each month.

effective_fromstring date-time required

The date and time the price came (or will come) into effect.

Example response

{
  "id": "12345678-1234-1234-1234-1234567890ab",
  "usd_per_row": "0.0001",
  "free_rows_per_month": 1000,
  "effective_from": "2024-01-02T00:00:00Z"
}