APIPricing

Configure seat price

Configure a seat price, closing any prior open row for the same provider/plan.

POST/seat-pricing

Configure a seat price, closing any prior open row for the same provider/plan.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

A configured monthly seat price for a provider's subscription plan.

Response Body

application/json

application/json

curl -X POST "https://example.com/seat-pricing" \  -H "Content-Type: application/json" \  -d '{    "provider": "claude",    "plan": "string",    "monthly_rate": 0  }'
{  "id": null,  "provider": "claude",  "plan": "string",  "monthly_rate": 0,  "effective_from": "2019-08-24T14:15:22Z",  "effective_to": "2019-08-24T14:15:22Z"}