files

Api reference content
get/api/files

Retrives all files stored in this AIP Gate. Results can be paged with query parameters start and limit.

Parameters

ParameterPlaceRequiredDescription
startqueryrequiredFirst item in page
limitqueryrequiredNumber of items in page

Responses

StatusDescription
200
application/json
{
  "_links": {
    "next": "string",
    "base": "string",
    "self": "string"
  },
  "start": "double",
  "limit": "double",
  "results": [
    {
      "id": "string",
      "name": "string",
      "category": "bgm | messages | events",
      "folder_id": "string",
      "folder": "string",
      "size": "double",
      "duration": "double",
      "download": "string"
    }
  ]
}
400
application/json
{
  "errors": "[string]"
}