The Zuplo Developer API, powered by Zuplo

Deployments

Set of operations available to handle deployments. You can learn more about deployments here.


Endpoint:https://developer-api-main-8600723.self.zuplo.com

Gets a deployment status

GET
https://developer-api-main-8600723.self.zuplo.com
/v1/accounts/{accountName}/projects/{projectName}/deployment-status/{statusId}

Gets the deployment status of your upload. Use the UUID of the uploaded sources as the statusId.

Gets a deployment statuspath Parameters

  • accountName
    string · required

    The name of the account. You can find this in your Zuplo Portal under Settings > Project Information.

  • projectName
    string · required

    The name of the project. You can find this in your Zuplo Portal under Settings > Project Information.

  • statusId
    string · required

    The UUID of the uploaded sources.

Gets a deployment statusResponses

    • status
      string · enum · required
      Enum values:
      SUCCESS
      ERROR
      IN_PROGRESS
    • url
      string · required
    • steps
      object · required
    • buildResult
      object · required

Lists deployments

GET
https://developer-api-main-8600723.self.zuplo.com
/v1/accounts/{accountName}/projects/{projectName}/deployments

Lists the deployments for the specified account and project.

Lists deploymentspath Parameters

  • accountName
    string · required

    The name of the account. You can find this in your Zuplo Portal under Settings > Project Information.

  • projectName
    string · required

    The name of the project. You can find this in your Zuplo Portal under Settings > Project Information.

Lists deploymentsResponses

    • data
      object[] · required

Upload deployment source

POST
https://developer-api-main-8600723.self.zuplo.com
/v1/deployments/sources

Creates a URL for uploading sources.

Upload deployment sourceRequest Body

  • accountName
    string · required

    The name of the account

  • projectName
    string · required

    The name of the project

  • branchName
    string · required

    The name of the branch for deployment

Upload deployment sourceResponses

    • uploadUrl
      string · required

Get a deployment

GET
https://developer-api-main-8600723.self.zuplo.com
/v1/deployments/{deploymentName}

Gets the specified deployment.

Get a deploymentpath Parameters

  • deploymentName
    string · required

    The name of the deployment. You can find this in the Zuplo Portal under Settings > Environments.

Get a deploymentResponses

    • name
      string · required

      The name of the deployment. You can find this in the Zuplo Portal under Settings > Environments.

    • url
      string · required
    • label
      string · required
    • urlParameter
      string · required
    • createdOn
      string · required
    • updatedOn
      string · required
    • loggingId
      string · required
    • accountName
      string · required
    • projectName
      string · required
    • state
      string · required
    • message
      string · enum · required
      Enum values:
    • branchName
      string · required
    • environmentType
      string · required

Deletes a deployment

DELETE
https://developer-api-main-8600723.self.zuplo.com
/v1/deployments/{deploymentName}

Deletes the specified deployment.

Deletes a deploymentpath Parameters

  • deploymentName
    string · required

    The name of the deployment. You can find this in the Zuplo Portal under Settings > Environments.

Deletes a deploymentResponses

    No response specified

Re-deploy a deployment

POST
https://developer-api-main-8600723.self.zuplo.com
/v1/deployments/{deploymentName}/deploy

Re-deploys the specified deployment so that it can pick up new environment variables or other configuration changes.

Re-deploy a deploymentpath Parameters

  • deploymentName
    string · required

    The name of the deployment. You can find this in the Zuplo Portal under Settings > Environments.

Re-deploy a deploymentResponses

    • status
      string · required