API changes for v2 API, August 29, 2024
On August 29, 2024, the mittwald API introduced new optional request parameters 'token' for the GET operations related to retrieving files and their metadata, enhancing flexibility in API requests.
Summary
- The 
GET /v2/files/{fileId}operation now includes a new optional query request parameter calledtoken. - The 
GET /v2/files/{fileId}/metaoperation has been updated to include two new optional request parameters: a header parameter namedTokenand a query parameter namedtoken. - The 
GET /v2/files/{fileId}/{fileName}operation now includes a new optional query request parameter calledtoken. 
Disclaimer: This summary is AI-generated. If you find any discrepancies, please refer to the detailed changes below.
Detailed changes
Changes in "Get a File"
- added the new optional 'query' request parameter 'token'
 
For details, refer to the GET/ endpoint.
Changes in "Get a File's meta"
- 
added the new optional 'header' request parameter 'Token'
 - 
added the new optional 'query' request parameter 'token'
 
For details, refer to the GET/ endpoint.
Changes in "Get a File"
- added the new optional 'query' request parameter 'token'
 
For details, refer to the GET/ endpoint.
Client package releases
mittwald PHP SDK Release v2.1.54
The mittwald PHP SDK has been updated to version v2.1.54. This release introduces new features and changes to enhance the functionality of the SDK.
Added Features
- Token Parameter: A new 
tokenparameter has been introduced across multiple request classes (GetFileRequest,GetFileMetaRequest, andGetFileWithNameRequest). This allows for token-based authentication or authorization in API requests. 
Changes
GetFileRequest
- Added a new property for 
tokenwith validation rules. - Introduced 
getToken(),withToken(string $token), andwithoutToken()methods. - Updated methods to handle 
tokenduring input and output processing. 
GetFileMetaRequest
- Added a new property for 
tokenwith validation rules. - Introduced 
getToken(),withToken(string $token), andwithoutToken()methods. - Updated methods to handle 
tokenduring input and output processing. 
GetFileWithNameRequest
- Added a new property for 
tokenwith validation rules. - Introduced 
getToken(),withToken(string $token), andwithoutToken()methods. - Updated methods to handle 
tokenduring input and output processing. 
For more details, visit the release page.