Coalesce · Example Payload

Start Run

Example request and response for starting a Coalesce pipeline run

Data TransformationSnowflakeData PipelinesData CatalogData QualityAnalyticsAI

Start Run is an example object payload from Coalesce, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Start Run Example",
  "description": "Example request and response for starting a Coalesce pipeline run",
  "request": {
    "method": "POST",
    "url": "https://app.coalescesoftware.io/scheduler/startRun",
    "headers": {
      "accept": "application/json",
      "authorization": "Bearer <your-access-token>",
      "content-type": "application/json"
    },
    "body": {
      "environmentID": "env-abc123",
      "parallelism": 16,
      "parameters": {
        "MY_PARAM": "my_value"
      }
    }
  },
  "response": {
    "status": 200,
    "body": {
      "runCounter": 42
    }
  }
}