Looking at the Apigee docs, there doesn't seem to be an indication of the maximum allowed file size for assets in API BaaS.
Currently I'm trying to POST a 39MB archive using the following CURL command:
curl -X PUT -i -F name="archive" -F file=@"/path/to/archive.zip" "https://api.usergrid.com/{org}/{app}/archives/{uuid}"
And it's throwing back:
HTTP/1.1 413 Request Entity Too Large
Content-Type: application/json
Content-Length: 98
Connection: Close
{
"fault":
{
"faultstring": "Body buffer overflow",
"detail":
{
"errorcode": "protocol.http.TooBigBody"
}
}
}