Skip to main content
GET
/
opportunity-stages
List opportunity stages
curl --request GET \
  --url https://www.ruddr.io/api/workspace/opportunity-stages \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "id": "7e3f1b2c-94d5-4a8e-b612-f09c3d7e5a21",
      "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": "2025-03-10T14:22:45.183Z"
    }
  ],
  "hasMore": false
}
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.

Query Parameters

startingAfter
string

A cursor ID (uuid) used to request the next page of results. If not provided, defaults to the first page of results.

endingBefore
string

A cursor ID (uuid) used to request the previous page of results. Is mutually exclusive with startingAfter.

limit
integer

The maximum number of results to be returned. Can be any number from 1 to 100. Defaults to 10, if not provided.

name
string

Filter by name when it exactly matches the provided keyword.

Response

200

results
object[]

The list of results for the current page.

hasMore
boolean

Whether there are more results available after this page.