Get Metadata
Retrieves all metadata of a specific file. This endpoint is subject to audit.
Authorizations
AuthorizationstringRequired
The File Management API uses JWT (JSON Web Tokens) for authentication.
Obtaining a Token
To retrieve a valid token, you must call the login/idm/tokens endpoint.
- Requirements: Use a Service Account that has been assigned the Content Export Reader role.
- Response: The JWT will be returned in the
access_tokenfield of the JSON response. - Reference: For detailed steps on the handshake, see the OAuth2 Authenticate documentation.
Using the Token
Once obtained, include the token in the Authorization header for all API requests:
Authorization: Bearer <access_token>
Error Codes
401 Unauthorized: Token is missing, expired, or invalid.403 Forbidden: Authenticated but lacks the Content Export Reader role.
Path parameters
fileIdstringRequiredExample:
The unique ID of the file.
internal_file_id_1Query parameters
typestring · enumRequiredPossible values:
The type of file being managed.
Responses
200
File metadata retrieved successfully.
application/json
401
Unauthorized - Authentication failed.
application/json
403
Forbidden - Invalid entitlements.
application/json
404
Not Found - File not found.
application/json
500
Internal Server Error.
application/json
get
/files/v1/{fileId}/metadataLast updated
Was this helpful?