GET
/
v1
/
files
/
List files in organization
curl --request GET \
  --url https://managexrapi.com/v1/files/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "data": [
    {
      "id": "DLO133U5NFLMAL1",
      "url": "https://storage.googleapis.com/managexr-files/org_456/files/file_123abc.mp4",
      "name": "main_assets_all.bundle",
      "size": 1204975930,
      "md5": "7ah69cMtXyaz5OfsCRtOjQ==",
      "description": "Content bundle for training app",
      "libraryDirectoryPath": "/"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key based authentication where <encoded-value> is the Base64 encoding of API_KEY_ID:API_KEY_SECRET

  • Username: The API Key ID.
  • Password: The API Key Secret.

Query Parameters

organizationId
string

Unique identifier of the organization. Defaults to the organization associated with the API key if no id supplied.

Response

200 - application/json

An array of all files in the organization

The response is of type object.