Skip to main content
GET
/
company-spend-tiers
/
{id}
Get a company spend tier
curl --request GET \
  --url https://www.ruddr.io/api/workspace/company-spend-tiers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "b3e7c42f-91d5-4a8e-bc6f-2d053a197084",
  "name": "Enterprise",
  "amount": 50000,
  "currency": "USD",
  "isActive": true,
  "createdAt": "2025-01-15T20:47:03.284Z"
}
A tier used to categorize companies based on their annual spend.

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 company spend tier uuid

Response

200

id
string

The unique identifier for the object.

name
string

The name of the company spend tier.

amount
number

The amount of the company spend tier.

currency
string

The currency code for the company spend tier.

isActive
boolean

Whether the company spend tier is active.

createdAt
string<date-time>

The timestamp when the object was created.