GET
/
fastedge
/
v1
/
admin
/
apps
/
client
/
{client_id}
Get apps for the specified client (use /v1/admin/apps instead)
curl --request GET \
  --url https://api.gcore.com/fastedge/v1/admin/apps/client/{client_id} \
  --header 'Authorization: <api-key>'
{
  "apps": [
    {
      "id": 123,
      "name": "<string>",
      "url": "<string>",
      "status": 123,
      "binary": 123,
      "comment": "<string>",
      "api_type": "<string>",
      "debug_until": "2023-11-07T05:31:56Z",
      "template": 123,
      "template_name": "<string>",
      "networks": [
        "<string>"
      ],
      "upgradeable_to": 123,
      "plan_id": 123,
      "plan": "<string>",
      "client_id": 123,
      "reseller_id": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

client_id
integer
required

ID of the client

Response

200
application/json

Ok

The response is of type object.