Endpoints

Add data to the data lake

Route: POST Api/Data/{dataCollection}
Header: Content-Type set to the MIME type of the payload
Example: <xml><foo>bar</foo></xml> with Content-Type: application/xml

Post data direct to a trigger

Route: POST Api/Data/DirectToTrigger/{triggerName}
Header: Content-Type set to the MIME type of the payload
Example: <xml><foo>bar</foo></xml> with Content-Type: application/xml

Test a pipeline without a trigger

Route: POST Api/Pipelines/{pipelineName}/test
Body: Key-value pairs, where the keys are the names of the inputs and the values the input values of the pipeline.
Example: {"input1": "foo", "input2": "bar"}

See failed pipelines

Route: GET Api/FailedPipelineContext

Retry a failed pipeline

Route: POST Api/FailedPipelineContext/Retry/{id}


Related Articles