cURL
curl --request GET \ --url https://productlane.com/api/v1/companies/linear-options \ --header 'Authorization: Bearer <token>'
{ "statuses": [ { "id": "<string>", "name": "<string>", "color": "<string>" } ], "tiers": [ { "id": "<string>", "name": "<string>" } ] }
Get available Linear customer statuses and tiers for your workspace. Returns null if Linear is not connected. Authentication is required.
GET /api/v1/companies/linear-options
{ "statuses": [ { "id": "status_123", "name": "Active", "color": "#00ff00" }, { "id": "status_456", "name": "Inactive", "color": "#ff0000" } ], "tiers": [ { "id": "tier_123", "name": "Enterprise" }, { "id": "tier_456", "name": "Pro" } ] }
{ "statuses": null, "tiers": null }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
Show child attributes