Builds

This page is intended for guidance only. For a full up to date specification of the API, please see our self-generating docs at https://api.moropo.com/docs.

This endpoint is used for the upload of builds

API URL - https://api.moropo.com/builds

Available actions

  1. 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;

Expected Response

{
  "message": "Build created successfully.",
  "buildId": integer
}

Last updated