Skip to main content
PATCH
/
v1beta1
/
telemetryrelay
/
pipelines
/
{ref.slug}
Update forwarding pipeline
curl --request PATCH \
  --url https://api.coreweave.com/v1beta1/telemetryrelay/pipelines/{ref.slug} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "source": {
    "slug": "<string>"
  },
  "enabled": true
}
'
{
  "pipeline": {
    "ref": {
      "slug": "<string>"
    },
    "spec": {
      "source": {
        "slug": "<string>"
      },
      "destination": {
        "slug": "<string>"
      },
      "enabled": true
    },
    "status": {
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "stateMessage": "<string>",
      "zonesActive": [
        {
          "zoneSlug": "<string>",
          "clusters": [
            {
              "id": "<string>"
            }
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
default:Bearer [CW-API-TOKEN]
required

CoreWeave API access token sent as a bearer token.

Path Parameters

ref.slug
string
required

Body

application/json

Configuration for a forwarding pipeline. source references a TelemetryStream by slug; destination references a ForwardingEndpoint by slug. Set enabled: false to pause forwarding without deleting the pipeline.

source
object
destination
object

ForwardingEndpointRef uniquely identifies a forwarding endpoint within an organization.

Endpoints are referenced by a human-readable slug that must be unique per organization.

enabled
boolean

Response

OK

pipeline
object
Last modified on June 15, 2026