title | category | description | tags | |||||
---|---|---|---|---|---|---|---|---|
Deploy API |
API Documentation |
APIs which can be used to deploy Mendix apps to licensed nodes |
|
The Deploy API allows you to manage application environments in the Mendix Cloud. You can retrieve the status of, and start and stop, applications. You can also configure new model versions and deploy them to application environments. To create and manage deployment packages you need, in addition, the Build API.
This image provides a domain model representation of the concepts discussed below and how these are related:
The Deploy API requires authentication via API keys that are bound to your Mendix account (for more information, see Authentication).
As APIs are designed for automated systems, the Deploy API does not require the two-factor authentication which is normally required to make changes to production environments. This is a potential security risk. Therefore, the Technical Contact of an application needs to allow API access explicitly for team members that want to use the Deploy API. This can be configured from the Node Security screen under Project Settings. By default, API access is already enabled for test and acceptance environments for all team members. To perform an action via the Deploy API, such as transporting a new deployment package, both the Transport and API Access permissions need to be enabled.
{{% alert type="info" %}} Only Retrieve apps, Create Free App Environment and Retrieve app API calls are supported for Free Apps. Please note that most API calls — with the exception of Upload Package — require that the Content-Type header be set to application/json. {{% /alert %}}
Retrieves all licensed apps and Free Apps to which the authenticated user has access as a regular user.
{{% alert type="info" %}} The Nodes screen in the Developer Portal shows all the licensed apps which are returned by this request, but does not show any Free Apps, while the My Apps screen shows both licensed apps and Free Apps. {{% /alert %}}
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/
Example Request
GET /api/1/apps/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
List of objects with the following key-value pairs:
- AppId (String): Sub-domain name of the app.
- Name (String): Name of the app.
- ProjectId (String): Developer Portal Project identifier.
- Url (String): Production or Free App URL to access your app.
Example Output
[{
"Name": "Calculation App",
"Url": "https://calc.mendixcloud.com",
"ProjectId": "fae5de74-69c2-4488-a4de-abf89daac63e",
"AppId": "calc"
},{
"Name": "Tic Tac Toc",
"Url": "https://tictactoc.mendixcloud.com",
"ProjectId": "f5129445-b638-42f4-8108-5f370c85dc57",
"AppId": "tictactoc"
}]
Creates a Free App for a requested project id.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/
Request Parameter
An object with the following key-value pair:
- ProjectId (String) : The Developer Portal project identifier that should be linked to the new Free App. This value can be found under Settings > General, and it is represented as App ID.
Example Request
POST /api/1/apps/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"ProjectId" : "f5129445-b638-42f4-8108-5f370c85dc57"
}
Response object with the following fields:
- AppId (String): Sub-domain name of the app.
- Name (String): Name of the app.
- ProjectId (String): Developer Portal Project identifier.
- Url (String): Production or Free App URL to access your app.
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PROJECTID | Invalid ProjectId |
400 | APPLICATION_ALREADY_EXISTS | Application already exists |
Example Output
{
"Name": "Calculation App",
"Url": "https://calc.mendixcloud.com",
"ProjectId": "fae5de74-69c2-4488-a4de-abf89daac63e",
"AppId": "calc"
}
Retrieves a specific app to which the authenticated user has access as a regular user. This app can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>
Request Parameter
- AppId (String): Sub-domain name of an app.
Example Request
GET /api/1/apps/calc/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Object with the following key-value pairs:
- AppId (String): Sub-domain name of the app.
- Name (String): Name of the app.
- Url (String): Production or Free App URL to access your app.
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_APPID | Invalid AppId |
404 | APP_NOT_FOUND | App not found |
Example Output
{
"AppId": "calc",
"ProjectId": "543857rfds-dfsfsd12c5e24-3224d32eg",
"Url": "https://calc.mendixcloud.com",
"Name": "Calculation App"
}
Retrieves all environments that are connected to a specific app to which the authenticated user has access as a regular user. These environments can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/
Request Parameter
- AppId (String): Subdomain name of an app.
Example Request
GET /api/1/apps/calc/environments/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
List of objects with the following key-value pairs:
- Status (String): Status of the environment. Possible values: Empty, Stopped, Running
- Url (String): URL to access your application.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- ModelVersion (String): The version number of the package deployed in your environment.
- MendixVersion (String): The Mendix version number of the package deployed in your environment.
- Production (Boolean): A flag indicating if this environment is a production environment.
Example Output
[
{
"Status" : "Stopped" ,
"Mode" : "Acceptance",
"Url" : "https://calc-accp.mendixcloud.com",
"ModelVersion" : "1.1.0.253",
"MendixVersion" : "6.10.10",
"Production" : "false"
},
{
"Status" : "Stopped" ,
"Mode" : "Production",
"Url" : "https://calc.mendixcloud.com",
"ModelVersion" : "175.0.0.3702",
"MendixVersion" : "6.10.12",
"Production" : "false"
}
]
Retrieves a specific environment that is connected to a specific app to which the authenticated user has access as a regular user. These environments can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): The mode of the environment of the app. An environment with this mode should exist.
Example Request
GET /api/1/apps/calc/environments/Acceptance
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
An object with the following key-value pairs:
- Status (String): Status of the environment. Possible values: Empty, Stopped, Running
- Url (String): URL to access your application.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- ModelVersion (String): The version number of the package deployed in your environment.
- MendixVersion (String): The Mendix version number of the package deployed in your environment.
- Production (Boolean): A flag indicating if this environment is a production environment.
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
Example Output
{
"Status" : "Stopped" ,
"Mode" : "Acceptance",
"Url" : "https://calc-accp.mendixcloud.com",
"ModelVersion" : "1.1.0.253",
"MendixVersion" : "6.10.10",
"Production" : "false"
}
Starts a specific environment that is connected to a specific app to which the authenticated user has access as a regular user. These environments can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/start
Request Parameters
An object with the following key-value pair:
- AutoSyncDb (Boolean) : Define whether the database should be synchronized automatically with the model during the start phase of the app. This is only applicable if your Mendix Cloud version is older than v4.
Example Request
POST /api/1/apps/calc/environments/Acceptance/start
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"AutoSyncDb" : true
}
An object with the following key-value pairs:
- JobId (String): The identifier which can be used to track the progress of the start action
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_APPID | Invalid AppId |
404 | APP_NOT_FOUND | App not found |
500 | NO_MDA_HAS_BEEN_DEPLOYED | Cannot start app. There is no MDA deployed. |
500 | APP_ALREADY_HAS_A_STARTING_JOB | Cannot start app. There is already a starting job id found. |
500 | ALREADY_STARTED | Cannot start app. App is already running. |
Example Output
{
"JobId" : "02df2e50-0e79-11e4-9191-0800200c9a66" ,
}
Retrieve the status of the start environment action.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/start/<JobId>
Example Request
GET /api/1/apps/calc/environments/Acceptance/start/02df2e50-0e79-11e4-9191-0800200c9a66
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
An object with the following key-value pair:
- Status (String): Possible values are Starting and Started
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found |
404 | NO_SUCH_STARTJOB | Job not found. |
500 | NO_PACKAGE | Cannot start app. There should be a package configured for this environment. |
500 | ALREADY_LOCKED | Cannot start app. There is already a lock on this environment. |
500 | ALREADY_STARTED | Cannot start app. App is already running. |
500 | DB_SYNC_FAILED | Cannot start app. Synchronization of database failed. |
500 | INVALID_DB_STRUCTURE | Cannot start app. The database is out-of-sync with the model. Please set AutoSyncDb parameter to true to synchronize the database automatically on startup. |
500 | MISSING_CONSTANT | Cannot start app. Missing one or more constant values. |
500 | INSECURE_ADMIN_PASSWORD | Cannot start app. There is a user with administrator role with password '1'. This is not allowed. |
500 | STARTUP_ACTION_FAILED | Cannot start app. Startup action failed. |
500 | START_FAILED | Cannot start app: result (detail status) |
Example Output
{
"Status" : "Starting" ,
}
Stops a specific environment that is connected to a specific app to which the authenticated user has access as a regular user. These environments can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/stop
Example Request
POST /api/1/apps/calc/environments/Acceptance/stop
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found |
500 | STOP_FAILED | Cannot stop app: reason |
Retrieves the deployed package of a specific environment that is connected to a specific app to which the authenticated user has access as a regular user. These environments can be found via the "Nodes overview" screen in the Mendix Platform.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/package
Request Parameters
- AppId (String): Sub-domain name of an app.
- Mode (String): The mode of the environment of the app. An environment with this mode should exist.
Example Request
GET /api/1/apps/calc/environments/Acceptance/package
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
An object with the following key-value pairs:
- PackageId (String): Unique identification of the package.
- Name (String): Name of the package.
- Description (String): Description of the package.
- Version (String): Package version. This is also the name of the tag on the project teamserver.
- Creator (String): Uploader or creator of this package.
- CreationDate (Date): Date that the package became available in the portal. This can be the upload date or the date that a build was created in the portal.
- Status (String): Status of the package. A package is ready to use if the status is 'Succeeded'. Possible values: Succeeded, Queued, Building, Uploading and Failed.
- Size (Long): Size of the package in bytes.
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
404 | PACKAGE_NOT_FOUND | No package found for this environment |
Example Output
{
"Status" : "Succeeded",
"CreationDate" : 1404990271835,
"ExpiryDate": null,
"Description" : "Add scientific mode" ,
"Version" : "2.5.4.63" ,
"Size" : 3.0571174621582031,
"PackageId" : "b3d14e53-2654-4534-b374-9179a69ef3cf" ,
"Creator" : "Richard Ford" ,
"Name" : "Main line-2.5.4.63.mda"
}
Uploads a deployment package from the local system to a specific app. This package can then be transported to a specific environment for deployment.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/packages/upload
Request Parameters
- AppId (String): Subdomain name of an app.
- Name (String): Name of the deployment package as query parameter
- file (File): Deployment package as multipart/form-data (see IETF RFC 7578: Returning Values from Forms: multipart/form-data)
Example Request
POST /api/1/apps/calc/packages/upload
Host: deploy.mendix.com
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Content-Type: multipart/form-data; boundary=MultipartBoundary
--MultipartBoundary
Content-Disposition: form-data; name="calc_1.0.0.45.mda"
@%USERPROFILE%/Documents/Mendix/calc-main/releases/calc_1.0.0.45.mda
--MultipartBoundary--
Curl example:
curl -v -F "file=@%USERPROFILE%/Documents/Mendix/calc-main/releases/calc_1.0.0.45.mda" -X POST -H "Mendix-Username: [email protected]" -H "Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6" "https://deploy.mendix.com/api/1/calc/packages/upload"
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_APPID | Invalid AppId. |
404 | APP_NOT_FOUND | App not found. |
500 | UPLOAD_COPY_FAILED | Failed to store the deployment package. |
500 | INVALID_PACKAGE | Failed to process the deployment package. |
Transports a specific deployment package to a specific environment. This action requires the environment to be in the status NotRunning.
This call is not available for Free App. For a Free App, the Build API can be used to trigger a deployment.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/transport
Request Parameters
- AppId (String): Sub-domain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- PackageId (String): ID of the deployment package
Example Request
POST /api/1/apps/calc/environments/acceptance/transport
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
'PackageId' : 'b3d14e53-2654-4534-b374-9179a69ef3cf'
}
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
400 | INVALID_RUNTIME_VERSION | This Runtime version is not supported on this environment. (For Mendix Cloud v4, using a Mendix version of 6 or newer is required.) |
403 | NO_ACCESS | You do not have access |
403 | TRANSPORT_NOT_ALLOWED | No access to transport to environment 'mode'. |
403 | APP_IS_RUNNING | The 'mode' environment of 'app id' must be stopped to do transport. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
404 | PACKAGE_NOT_FOUND | Package not found. |
500 | PACKAGE_PARSE_FAILED | Failed to parse deployment package file. |
Removes all data from a specific environment: including files and database records. This action requires the environment to be in the status NotRunning.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/clean
Request Parameters
- AppId (String): Sub-domain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
POST /api/1/apps/calc/environments/acceptance/clean
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
403 | ENVIRONMENT_NOT_STOPPED | Environment needs to be stopped. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
500 | ENVIRONMENT_CLEAN_FAILED | Unable to clean the environment. Please contact support. |
Example Output
[
{
"Status": "Stopped",
"Mode": "Acceptance",
"Url" : "https://calc-accp.mendixcloud.com"
}
]
Gets the current values of custom settings, constants, and scheduled events used by the target environment.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/settings
Request Parameters
- AppId (String): Sub-domain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
GET /api/1/apps/calc/environments/acceptance/settings/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
Example Output
{
"Constants" : [{
"Name" : "MyFirstModule.BooleanConstant" ,
"DataType" : "_Boolean" ,
"Value" : "false" ,
"DeployedValue" : "false"
},{
"Name" : "MyFirstModule.DateTime" ,
"DataType" : "DateTime" ,
"Value" : "2013-12-20T16:02:32" ,
"DeployedValue" : "2013-12-20T16:02:32"
}],
"CustomSettings" : [],
"ScheduledEvents" : [{
"Name" : "MyFirstModule.Monitor_Scheduled_event" ,
"DeployedValue" : "Disabled" ,
"Value" : "Disabled"
}]
}
Changes the values of existing environment settings like custom settings, constants, and scheduled events. These changes are applied after restarting the environment.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/settings/
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- Body: JSON collection retrieved with GET method at the same URI
Example Request
POST /api/1/apps/calc/environments/acceptance/settings/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"Constants" : [{
"Name" : "MyFirstModule.BooleanConstant" ,
"DataType" : "_Boolean" ,
"Value" : "true" ,
"DeployedValue" : "false"
},{
"Name" : "MyFirstModule.DateTime" ,
"DataType" : "DateTime" ,
"Value" : "2013-12-20T16:02:32" ,
"DeployedValue" : "2013-12-20T16:02:32"
}],
"CustomSettings" : [],
"ScheduledEvents" : [{
"Name" : "MyFirstModule.Monitor_Scheduled_event" ,
"DeployedValue" : "Disabled" ,
"Value" : "Enabled"
}]
}
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
400 | CONSTANT_NOT_FOUND | Constant not found: constant name. |
400 | CUSTOM_SETTING_NOT_SUPPORTED | Custom setting not supported. |
400 | SCHEDULED_EVENT_NOT_FOUND | Scheduled Event not found: scheduled event name. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
500 | INVALID_SCHEDULED_EVENT_PARAMETER | Scheduled Event parameter should be Enabled or Disabled. |
Example Output
{
"Constants" : [{
"Name" : "MyFirstModule.BooleanConstant" ,
"DataType" : "_Boolean" ,
"Value" : "true" ,
"DeployedValue" : "false"
},{
"Name" : "MyFirstModule.DateTime" ,
"DataType" : "DateTime" ,
"Value" : "2013-12-20T16:02:32" ,
"DeployedValue" : "2013-12-20T16:02:32"
}],
"CustomSettings" : [],
"ScheduledEvents" : [{
"Name" : "MyFirstModule.Monitor_Scheduled_event" ,
"DeployedValue" : "Disabled" ,
"Value" : "Enabled"
}]
}
Lists the backups of an environment.
HTTP Method: GET
curl -H "Mendix-Username: $username" -H "Mendix-ApiKey: $apikey" $baseurl/apps/richardford/environments/Acceptance/snapshots/201703221355 -X GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/snapshots
Request Parameters
- AppId (String): Sub-domain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
GET /api/1/apps/calc/environments/acceptance/snapshots
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
403 | NO_ACCESS | The user does not have access to the backups of this environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
500 | SNAPSHOT_LISTING_FAILED | An error occurred while listing the backups. Please contact support. |
Example Output
[
{
"SnapshotID": "c879c6b1-3aa5-4e10-aaab-cb145841862f",
"Comment": "Manually created snapshot",
"State": "Completed",
"ExpiresOn": 1509804470000,
"CreatedOn": 1501855670000,
"ModelVersion": "1.0.11.50"
},
{
"SnapshotID": "3e8ed3c6-6cbf-4818-bcaa-078e9c85b3c7",
"Comment": "Manually created snapshot",
"State": "Completed",
"ExpiresOn": 1509804208000,
"CreatedOn": 1501855408000,
"ModelVersion": "1.0.11.48"
}
]
Downloads the backup for an environment. The response contains direct links to the external backup system. You can use these links to download three types of backups: FilesOnly, DatabaseOnly, or DatabaseAndFiles.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/snapshots/<SnapshotId>
Request Parameters
- AppId (String): Subdomain name of the app. This is the production subdomain, do not add the mode (for example, do not add
-accp
for acceptance – see the example below) - Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment
- SnapshotId (String): Identifier of the backup
Example Request
GET /api/1/apps/calc/environments/acceptance/snapshots/201703221355
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_PARAMETERS | Not enough parameters given. Please set AppId and Mode parameters. |
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
403 | NO_ACCESS | The user does not have access to the backups of this environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
404 | SNAPSHOT_NOT_FOUND | Snapshot not found. |
500 | INTERNAL_SERVER_ERROR | This usually occurs when you have provided a valid SnapshotID, but the snapshot is still being created. Try downloading the backup at a later time |
Example Output
{
"FilesOnly": "https://cloud.home.mendix.com/backups/d4bf9d5d-cf3e-4561-9f7f-31b1c580a3d5",
"DatabaseOnly": "https://cloud.home.mendix.com/backups/5524ec0b-fdf1-460b-87c2-75bb06ec98ff",
"DatabaseAndFiles": "https://cloud.home.mendix.com/backups/24783a6c-30c4-49b4-8cb9-13b57cfec4cc"
}
{{% alert type="warning" %}} This call will trigger the creation of a snapshot and will return the SnapshotID immediately. However, the creation of the snapshot takes some time and if the creation hasn't completed you will get a 500 INTERNAL_SERVER_ERROR response from a request to download the backup (see above). In this case, it is recommended that you periodically retry downloading the backup until the call is successful. {{% /alert %}}
Create a backup of an environment. The response contains the details of the created backup. This call is only available for Mendix Cloud v4 applications.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/snapshots
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- Comment (String): Optional comment for this snapshot.
Example Request
POST /api/1/apps/calc/environments/acceptance/snapshots/
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"Comment" : "My user comment"
}
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
403 | NO_ACCESS | The user does not have access to the backups of this environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
Example Output
{
"SnapshotID": "0c982ca3-621f-40e9-9c6e-96492934170a",
"Comment": "My user comment",
"State": "Completed",
"ExpiresOn": 1530868721000,
"CreatedOn": 1523006321000,
"ModelVersion": "1.0.11.50"
}
Restore a previously created backup to an environment. The environment to which the data will be restored must be stopped before using this call. The response of a successful call contains the details of the restored backup. This call is only available for Mendix Cloud v4 applications. Please note that the Snapshot ID can be a snapshot created for a different environment, similar to the "restore into" functionality in the Developer Portal.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/restore/<SnapshotId>
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- SnapshotId (String): ID of the snapshot to be restored.
Example Request
POST /api/1/apps/calc/environments/acceptance/restore/0c982ca3-621f-40e9-9c6e-96492934170a
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_ENVIRONMENT | Could not parse environment mode 'mode'. Valid options are Test, Acceptance, Production or the name of a flexible environment. |
400 | NOT_FOUND | Invalid snapshot ID . Either the snapshot does not exist or it belongs to a different application. |
400 | ERROR_NOT_ALLOWED | Please stop loft before restarting a backup. |
403 | NO_ACCESS | The user does not have access to the backups of this environment. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
Example Output
{
"SnapshotID": "0c982ca3-621f-40e9-9c6e-96492934170a",
"Comment": "Manually created snapshot",
"State": "Completed",
"ExpiresOn": 1530868721000,
"CreatedOn": 1523006321000,
"ModelVersion": "1.0.11.50"
}
Scale memory and instances of an environment. Only those environments that run a package that has Mendix Runtime version 7 or above will make it possible to spread the total memory over multiple instances.
Environments with a deployed runtime package below version 7 can only be scaled horizontally: that is, with one fixed instance but an adjustable amount of memory.
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/scale
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
POST /api/1/apps/calc/environments/acceptance/scale/0c982ca3-621f-40e9-9c6e-96492934170a
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
Instances: 2,
MemoryPerInstance: 2048,
}
Error Codes
HTTP Status | Error code | Description |
---|---|---|
400 | INVALID_REQUEST | You have allocated more memory than is available under your plan. Please contact support to upgrade your plan. |
400 | INVALID_REQUEST | Memory per instance cannot be smaller than 1024MB. |
400 | NOT_ALLOWED | Horizontal scaling (to multiple instances) is only available for apps with Mendix version >=7. Please upgrade to activate this functionality. |
400 | NOT_ALLOWED | Scaling is only available for paid apps on Mendix Cloud v4. Please contact support to upgrade to the v4 Cloud to access this functionality. |
404 | ENVIRONMENT_NOT_FOUND | Environment not found. |
Example Output
{
"Status": "Running",
"Instances": 2,
"Mode": "Acceptance",
"Production": false,
"MemoryPerInstance": 2048,
"TotalMemory": 8192,
"ModelVersion": "1.1.0.253",
"MendixVersion": "7.5.0",
"Url": "https://calc.mendixcloud.com"
}
Tags are arbitrary strings that are not interpreted by the Developer Portal. Users are able to set tags on environments. Tags serve two purposes:
- Custom tags can be added to metrics (for Datadog)
- Tags can serve as selection criteria for grouping environments into a landscape management dashboard
HTTP Method: POST
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/tags
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
POST /api/1/apps/calc/environments/acceptance/tags
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"Tag": "europe"
}
Error Codes
HTTP Status | Error code | Description |
---|---|---|
404 | NOT_FOUND | An App or Environment is not found. |
Example Output
{
"Tag": "A"
}
Gets current values of environment tags.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/tags
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
GET /api/1/apps/calc/environments/acceptance/tags
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
404 | NOT FOUND | An App or Environment is not found. |
Example Output
{
"Tag": "A"
}
Deletes the current value of environment tags.
HTTP Method: DELETE
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/tags
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
Example Request
DELETE /api/1/apps/calc/environments/acceptance/tags
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
{
"Tag": "A"
}
Response Code
HTTP Status | Error code | Description |
---|---|---|
204 | No Content | The tag has been removed or the response is empty or Tag not found |
Error Code
HTTP Status | Error code | Description |
---|---|---|
404 | NOT FOUND | An App or Environment is not found. |
Example Output
[]
Downloads archived logs for a specific date.
HTTP Method: GET
URL: https://deploy.mendix.com/api/1/apps/<AppId>/environments/<Mode>/logs/<Date>(YYYY-MM-DD)
Request Parameters
- AppId (String): Subdomain name of an app.
- Mode (String): Mode of the environment. Possible values: Test, Acceptance, Production or the name of a flexible environment.
- Date (String): Date of the desired log (YYYY-MM-DD).
- If Date is tomorrow or after, or before the date the app was created, the log will contain the response
[No data found in file and no logging heartbeat detected]
{{% alert type="info" %}}
- Under some circumstances, if Date is tomorrow's date the log will be empty and the REST response will contain
[No data found in file and no logging heartbeat detected]
— the cause of this is being investigated {{% /alert %}}
Example Request
GET /api/1/apps/calc/environments/acceptance/logs/2018-08-10
Host: deploy.mendix.com
Content-Type: application/json
Mendix-Username: [email protected]
Mendix-ApiKey: 26587896-1cef-4483-accf-ad304e2673d6
Error Codes
HTTP Status | Error code | Description |
---|---|---|
404 | NOT FOUND | An App or Environment is not found. |
403 | FORBIDDEN | You do not have access |
Example Output
{
"Environment": "38471410-861f-47e5-8efc-2f4b16f04005",
"Date": 1536451200000,
"DownloadUrl": "https://boobafina.test.mendix.com/v1/logs/38471410-861f-47e5-8efc-2f4b16f04005?endDate=2018-09-09&expire=20180810153345&startDate=2018-08-10&signature=893DC8D3EAB0372FF49DB0E2D6973C701D32B567B67E97A41FD9E53E4D957991F80E3AC83B29452AF205FC306C51EAE8D81BA19F82147E5147B72EE15A8AC11FD3BE0306C3SDADAF478CCC9B98B9CBE70F99C99EDFB4DC77020F44FE540847FBABED34ACE856878F908EB38AC35D03125E7EFC9AE5CC2A67B871FA36C9F48A022BC7905838DE67046B5E57E82C0FBDCDFF67456DD66A2C2B4642B7B34C2829730257818B53113B620057777496EBA6D823EAA58378357A7F6ADA4956B6D86C100D61C8AD3483961A2C5EBEFF35A27BDE230478186F9F4ABC6207684781F"
}