Performance Profile JSON
Retrieve the circuit performance profile in JSON format of a running or paused pipeline.
Authentication
| Scheme | Type | Details |
|---|---|---|
JSON web token (JWT) or API key | Bearer token | Authorization 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
| Name | Type | Required | Description |
|---|---|---|---|
pipeline_name | string | Yes | Unique pipeline name |
Response
Circuit performance profile in JSON format
- object
curl -X GET '/v0/pipelines/{pipeline_name}/circuit_json_profile' \
-H 'Authorization: Bearer YOUR_TOKEN'Circuit performance profile in JSON format
{}{
"message": "Unknown pipeline name 'non-existent-pipeline'",
"error_code": "UnknownPipelineName",
"details": {
"pipeline_name": "non-existent-pipeline"
}
}