# Request File Upload Create a file in S3 using returned upload link. Endpoint: POST /files/upload Version: 2 Security: apiKey ## Request fields (application/json): - `url` (string, required) File name which will be uploaded to S3. Example: "bankaccountdata.csv" ## Response 200 fields (application/json): - `url` (string) File name of the uploaded file to S3. Example: "bankaccountdata.csv" - `expiresAt` (string) Date of expiration (ISO 8601-compliant). Example: "2025-08-29T09:46:42Z" - `uploadLink` (string) Link to which the file can be uploaded. Example: "https://s3.amazonaws.com/cdq-bucket/bankaccountdata.csv?AWSAccessKeyId=AKIAIOSFODNN7EXAMPLE&Expires=1234567890&Signature=exampleSignature" - `uploadMethod` (string) HTTP method to be used for the file upload. Example: "PUT"