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.

dryRun
boolean
Default: "false"

Whether the run should include a dry run.

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.

dryRun
boolean
Default: "false"

Whether the run should include a dry run.

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": {
    }
}

Connectors: Approve Run

Approves a dry run that is ready for review. The changes from the dry run will be applied once the run is approved.

path Parameters
accountId
required
string
connectorId
required
string

ID of the Connector.

runUid
string

UID of the run to be approved.

query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

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

Connectors: Cancel Run

Cancels a non-terminal run.

path Parameters
accountId
required
string
connectorId
required
string

ID of the Connector.

runUid
string

UID of the run to be cancelled.

query Parameters
v
required
string

A date in YYYYMMDD format.

Responses

Response samples

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