Connectors: Push Data

Pushes data to be saved for and processed by a specified Connector. A run will be initiated with the data provided.

path Parameters
accountId
required
string
connectorId
required
string

ID of the Connector.

query Parameters
v
required
string

A date in YYYYMMDD format.

runMode
string
Default: "DEFAULT"
Enum: "DEFAULT" "COMPREHENSIVE" "DELETION"

The run mode of the Connector.

Request Body schema: text/plain

The data to be saved for and processed by the Connector.

string

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": {
    }
}

Connectors: Trigger

Triggers a run of the specified Connector.

path Parameters
accountId
required
string
connectorId
required
string

ID of the Connector.

query Parameters
v
required
string

A date in YYYYMMDD format.

runMode
string
Default: "DEFAULT"
Enum: "DEFAULT" "COMPREHENSIVE" "DELETION"

The run mode of the Connector.

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": {
    }
}

Connectors: Get Run

Retrieve information for a Run with a given ID and Connector ID.

path Parameters
accountId
required
string
connectorId
required
string

ID of the Connector.

runUid
required
string

UID of the Run.

query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

Content type
application/json
{
  • "meta": {
    },
  • "response": {
    }
}
Feedback