GET
/
billing
/
v1
/
org
/
files
Get generated report list
curl --request GET \
  --url https://api.gcore.com/billing/v1/org/files \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "user_id": 123,
      "client_id": 123,
      "task_type": "Report",
      "status": "Pending",
      "parameters": {},
      "processing_notes": "<any>"
    }
  ]
}

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

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

ordering
string

Which field to use when ordering the results.

uuid
string<uuid>

Response

200 - application/json

The response is of type object.