Documentation Index
Fetch the curated documentation index at: https://grafana_com_website/llms.txt
Fetch the complete documentation index at: https://grafana_com_website/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: /docs/grafana-cloud/testing/k6/reference/cloud-rest-api/deprecated-rest-api/organizations.md (append .md) or send Accept: text/markdown to /docs/grafana-cloud/testing/k6/reference/cloud-rest-api/deprecated-rest-api/organizations/. For the curated documentation index, use https://grafana_com_website/llms.txt. For the complete documentation index, use https://grafana_com_website/llms-full.txt.
Organizations Legacy API
Warning
The Grafana Cloud k6 endpoints under this section are deprecated and planned for removal in the near future. Migrate to the latest API endpoints to avoid disruptions.
List organizations
Returns a list of organizations associated with the authenticated user along with organization details.
GET https://api.k6.io/v3/organizations
{
"organizations": [
{
"id": 0,
"name": "string",
"owner_id": 0,
"description": "string",
"billing_address": "string",
"billing_country": "string",
"billing_email": "user@example.com",
"vat_number": "string",
"created": "2020-08-13T18:28:45Z",
"updated": "2020-08-13T18:28:45Z",
"is_default": true
}
]
}Read organization details
Returns details for the specified organization.
GET https://api.k6.io/v3/organizations/{organization_id}
| Path Parameter | Type | Description |
|---|---|---|
| organization_id | integer | A unique integer value identifying this organization. |
{
"organization": {
"id": 0,
"name": "string",
"owner_id": 0,
"description": "string",
"billing_address": "string",
"billing_country": "string",
"billing_email": "user@example.com",
"vat_number": "string",
"created": "2020-08-13T18:28:45Z",
"updated": "2020-08-13T18:28:45Z",
"is_default": true
}
}Was this page helpful?
Related resources from Grafana Labs


