Skip to main content
GET
/
opportunity-pipelines
/
{id}
Get an opportunity pipeline
curl --request GET \
  --url https://www.ruddr.io/api/workspace/opportunity-pipelines/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "b9c85ac3-1a1d-4f31-a0c5-6e7d3d8ee0b2",
  "name": "Sales",
  "description": "Main sales pipeline for tracking new business opportunities.",
  "isActive": true,
  "createdAt": "2025-03-10T14:22:45.183Z"
}
A pipeline used to categorize and track opportunities through different stages.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The opportunity pipeline uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the opportunity pipeline.

description
string | null

The description of the opportunity pipeline.

isActive
boolean

Whether the opportunity pipeline is active.

createdAt
string<date-time>

The timestamp when the object was created.