Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Paste code macro
languagehttp
themeSunburst
GET https://api.machlake.com/v1/lakes
Content-Type: application/json; charset=utf8
x-api-key: {API Key}

...

Paste code macro
languagehttp
themeSunburst
GET https://api.machlake.com/v1/lakes/
Content-Type: application/json; charset=utf8
x-api-key: {API Key}

...

Paste code macro
languagejson
themeSunburst
Status 200

{
    "statussuccess": true,
    "reason": "get lake list success",
    "data" : {
        "lake": [
            {
                "lake_id": "lake01",
                "lake_info": {
                    "lake_name": "My Lake1",
                    "lake_plan": "basic",
                    "region"   : "aws1.kor",
                    "timezone" : "America/Los_Angeles"
                }
            },
            {
                "lake_id": "lake02",
                "lake_info": {
                    "lake_name": "My Lake2",
                    "lake_plan": "enterprise",
                    "region"   : "aws1.kor",
                    "timezone" : "Asia/Seoul"
                }
            }
        ]
    }
}

...