v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List connected clouds

Returns a list of all the active clouds connected in your account

get/clouds

Query parameters

pageinteger

Pagination parameter, starts at 0.

per_pageinteger

Amount of items returned

Response

A list of clouds connected to your account

idinteger required

The ID of the connected cloud in Aikido.

namestring required

A name for this cloud environment.

provider'aws' | 'gcp' | 'azure' required

The provider of the connected cloud environment.

environment'production' | 'staging' | 'development' | 'mixed' required

Indicates for what environment this cloud is responsible.

external_idstring required

The ID of the connected environment for the respective provider.

Example response

[
  {
    "id": 1,
    "name": "AWS Cloud environment",
    "provider": "aws",
    "environment": "production",
    "external_id": "000000000000"
  }
]