Internal site. Jolli authentication required to view.
Skip to Content
API ReferenceMetrics & DebuggingPOST /v0/pipelines/{pipeline_name}/testing

Test Endpoint

POST/v0/pipelines/{pipeline_name}/testingMetrics & Debugging

Try it

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

  • JSON web token (JWT) or API keyBearer token

Parameters

Path parameters

NameTypeRequiredDescription
pipeline_namestringYesUnique pipeline name

Query parameters

NameTypeRequiredDescription
set_platform_versionstringNo

Response

200Request successfully processed
404Pipeline with that name does not existapplication/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
405Endpoint is disabled. Set FELDERA_UNSTABLE_FEATURES="testing" to enable.application/json
  • object
    Information returned by REST API endpoints on error.
    • detailsobjectrequired
      Detailed error metadata. The contents of this field is determined by `error_code`.
    • error_codestringrequired
      Error code is a string that specifies this error type.
    • messagestringrequired
      Human-readable error message.
Request
curl -X POST 'https://api.example.com/v0/pipelines/{pipeline_name}/testing?set_platform_version=<set_platform_version>' \ -H 'Authorization: Bearer YOUR_TOKEN'
Response
{ "message": "Unknown pipeline name 'non-existent-pipeline'", "error_code": "UnknownPipelineName", "details": { "pipeline_name": "non-existent-pipeline" } }