Organizations
List your organizations
Returns all organizations you are a member of.
Returns all organizations you are a member of.
Authorization
apiKey AuthorizationBearer <token>
API key starting with tektona_. Create one at app-dev.tektona.ai under API Keys.
In: header
Query Parameters
cursor?string
Opaque pagination cursor from a previous response
limit?integer
Maximum number of items to return (1–100)
Default
20Format
int32Range
1 <= value <= 100Response Body
application/json
application/problem+json
curl -X GET "https://api-dev.tektona.ai/v1/orgs"{ "$schema": "https://api-dev.tektona.ai/schemas/ListOrgsBody.json", "items": [ { "$schema": "https://api-dev.tektona.ai/schemas/OrgResponse.json", "created_at": "string", "default_location_id": "eu", "default_project_role": "none", "display_name": "My Organization", "id": "string", "name": "my-org", "updated_at": "string" } ], "pagination": { "has_more": true, "next_cursor": "string", "total_count": 0 }}{ "$schema": "https://api-dev.tektona.ai/schemas/ErrorModel.json", "detail": "Property foo is required but is missing.", "errors": [ { "location": "string", "message": "string", "value": null } ], "instance": "https://example.com/error-log/abc123", "status": 400, "title": "Bad Request", "type": "https://example.com/errors/example"}