Skip to Content

Test Endpoint

POST/v0/pipelines/{pipeline_name}/testing
Authentication
Parameters

This endpoint is used as part of the test harness. Only available if the testing unstable feature is enabled. Do not use in production.

Authentication

SchemeTypeDetails
JSON web token (JWT) or API keyBearer tokenAuthorization header · Use a JWT token obtained via an OAuth2/OIDC login workflow or an API key obtained via the `/v0/api-keys` endpoint.

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name

Query parameters

NameTypeRequiredDescription
set_platform_versionstringNo

Response

Request successfully processed
Request
curl -X POST '/v0/pipelines/{pipeline_name}/testing?set_platform_version=%3Cset_platform_version%3E' \
  -H 'Authorization: Bearer YOUR_TOKEN'
Response
Pipeline with that name does not exist
{ "message": "Unknown pipeline name 'non-existent-pipeline'", "error_code": "UnknownPipelineName", "details": { "pipeline_name": "non-existent-pipeline" } }