# Get supported file types

This endpoint returns all file types supported by the platform,
including file extensions and icon metadata used for display purposes.
The data is served from the platform cache and is sorted alphabetically
by file type name.
            
Use cases:

- Validate file uploads against supported file types
- Display allowed file formats in upload components
- Render file-type icons in the user interface

Endpoint: GET /api/v1/filetypes

## Response 200 fields (text/plain):

  - `data` (array,null)

  - `data.fileTypeId` (string)

  - `data.fileTypeName` (string,null)

  - `data.fileTypeIconUrl` (string,null)

  - `data.fileExtentions` (array,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


