Available continents

Get a list of available continents.

Request

Endpoint: /api/continents
Method: GET
Headers: Accept: application/vnd.cloudlx.v1+json
Authorization: Bearer <access_token>

Response

Example:

                                
    {
        "continents": [
            {
                "id": 1,
                "name": "EMEA"
            },
            {
                "id": 2,
                "name": "AMERICAS"
            },
            ...
        ]
    }
                                
                            

Back to top