List zones

Returns a list of all zones on the system for the current identity.

GET
https://api.katapult.io/core/v1/zones

If successful, this endpoint will return a 200 OK status.

Returned Object

When the request is successful, you can expect an object matching the specification below to be returned.

{
    zones: [ Zone {
        id: String
        name: String
        permalink: String?
        data_center: DataCenter {
            id: String
            name: String
            permalink: String?
        }
    } ]
}