Skip to main content
GET
/
opportunity-stages
/
{id}
Get an opportunity stage
curl --request GET \
  --url https://www.ruddr.io/api/workspace/opportunity-stages/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "e9c3a7d2-4f18-4b65-90d8-f1a2b6e03c49",
  "name": "Qualified Lead",
  "description": "The lead has shown interest and meets basic qualifying criteria for the service offering.",
  "probability": 0.2,
  "statusId": "open",
  "isActive": true,
  "opportunityPipelineId": "b9c85ac3-1a1d-4f31-a0c5-6e7d3d8ee0b2",
  "createdAt": "2024-06-12T14:30:21.482Z"
}
A stage in the sales process used to track the progress of an opportunity.

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 stage uuid.

Response

200

id
string

The unique identifier for the object.

name
string

The name of the opportunity stage.

description
string | null

The description of the opportunity stage.

probability
number

The win probability for opportunities at this stage, expressed as a decimal between 0 and 1.

statusId
enum<string>

The status of the stage.

Available options:
open,
won,
lost
isActive
boolean

Whether the opportunity stage is active.

opportunityPipelineId
string

The unique identifier for the parent opportunity pipeline.

createdAt
string<date-time>

The timestamp when the object was created.