Skip to main content
POST
/
opportunity-pipelines
Create an opportunity pipeline
curl --request POST \
  --url https://www.ruddr.io/api/workspace/opportunity-pipelines \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "isActive": true
}
'
{
  "id": "e4a7c2d1-8f35-4b69-90d3-a1e2f6c09b75",
  "name": "Enterprise Sales",
  "description": "Pipeline for enterprise-level deals and partnerships.",
  "isActive": true,
  "createdAt": "2025-06-20T08:14:33.751Z"
}
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.

Body

application/json
name
string
required

The name of the opportunity pipeline. Max 255 characters.

description
string | null

The description of the opportunity pipeline. Max 5000 characters.

isActive
boolean

Whether the opportunity pipeline is active. Defaults to true if not provided.

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.