Builds
This endpoint is used for the upload of builds
API URL - https://api.moropo.com/builds
Available actions
Upload Build
Example - Uploading a Build
Note this request uses POST to inform the API that a build is being uploaded
curl -X 'POST' \
'https://api.moropo.com/builds' \
-H 'accept: */*' \
-H 'x-app-api-key: MOROPO_API_KEY' \
-H 'Content-Type: multipart/form-data' \
-F 'file=@FILE_NAME;type=application/zip'Where;
MOROPO_API_KEYis the API key for the target app, found in your Moropo settings.FILE_NAMEis the name of the build file being uploaded. Must conform to the build file requirements laid out in Producing an iOS Build and Producing an Android Build.
Expected Response
{
"message": "Build created successfully.",
"buildId": integer
}Last updated
Was this helpful?