Comment on page
Create
post
https://api.releasehub.com
/api/apps/:app_id/environments/
Create An Ephemeral Environment
{% swagger-response status="404" description="If an App cannot be found with the given app_id, a Not Found will be returned. {"error": "Could not find app with id 0"}If a User cannot be found to authenticate either from the committer email or from the App's owner, a Not Found will be returned. {"error": "No user found"}" %}
{"error": "message"}
The following is an example payload with images stored in ECR
{
"app_id": 1,
"branch": "auth_test",
"services": {
"web": "123.dkr.ecr.us-west-2.amazonaws.com/releaseappuser/test_repo/web:9106aa52e16981a062676f0f5cf7a0ce3ebf00c0",
"sidekiq": "123.dkr.ecr.us-west-2.amazonaws.com/releaseappuser/test_repo/sidekiq:9106aa52e16981a062676f0f5cf7a0ce3ebf00c0"
},
"committer": "[email protected]",
"commit_message": "testing_message",
"commit_date": "2020-04-10 13:27:16 -0700",
"commit_short": "9106aa5",
"commit_long": "9106aa52e16981a062676f0f5cf7a0ce3ebf00c0",
"logs": [{level: "info", message: "testing"}, {level: "info", message: "the api"}],
}
Last modified 7mo ago