Postman

We use postman to test the APIs and deploy our projects.

Test the APIs

In the process of publishing the APIs, we also create a Postman Collection.

You find the Postman Collection in the projectBaseDir/03-api/PostmanOpenApi.yml directory of the project.

Deploy the Projects

This is used when you deploy the projects to the camunda Engine.

You need a folder in a Postman Collection. The folder name is deploy_manifest.

This folder will be run from top to bottom. So you need to:

You need to provide the following configuration:

case class PostmanConfig(
    collectionId: String,
    localDevEnvId: String,
    envApiKey: String = "POSTMAN_API_KEY"
)