API Endpoint api.exoscale.com/compute
Protocol HTTPS
Port 443
Authentication True

Making API requests

To make API requests against our Account and Billing API please refer to the Compute API technical information regarding request structure and authentication.

Organizations

GET listOrganizations

Description

List all the organizations accessible with your API keys and display administrative information about each organization. Can be used to query the current credit and status.

Request Parameters

Parameter Description Required
status

the status of the organizations from active, suspended, terminated

name

the name of the organization

Answer

{
  "listorganizationsresponse": {
    "count": 1,
    "organization": [
      {
        "description": "",
        "address": "",
        "zip_code": "",
        "name": "",
        "roles": [
          {
            "role": "",
            "name": "",
            "email": ""
          }
        ],
        "city": "",
        "created": "2019-08-22T14:03:07.434Z",
        "payer": "",
        "vat_number": "",
        "subscriptions": [],
        "currency": "EUR",
        "status": "active",
        "client_id": "",
        "uuid": "",
        "discount": {
          "code": "",
          "description": ""
        },
        "display_name": "Full Name of Organization",
        "credit": "0.00000",
        "country": "DE"
      }
    ]
  }
}