POST file with metadata

Hello, You can upload files, with the content in base64 encode. Here is an example with an S3 to upload a File:

POST /api/v2/url HTTP/1.1
Host: domainName
X-DreamFactory-Api-Key: Your DreamFactoryApiKey
Content-Type: application/json

{
“resource”: [{
“name”: “FileName.txt”,
“type”: “file”,
“is_base64”: true,
“content”: “file content with base64 encode goes here”
}
]
}