List application deployment configurations
GET/applications/:applicationId/deployment-configs
List application deployment configurations
Request
Path Parameters
Possible values: non-empty
Query Parameters
Header Parameters
CodeNOW API Key
Responses
- 200
- 400
- 401
- 403
- 404
- 429
- 500
application-deployment-configs-list 200 response
- application/vnd.codenow.v1+json
- Schema
- Example (from schema)
Schema
Array [
]
The unique identifier of the application this configuration belongs to. Any deployment configuration is fully identified by the combination of application ID, application version and environment ID.
The application package version this configuration was created for.
The unique identifier of the environment this configuration belongs to.
versionInterval
object
required
The range of application package versions this configuration is currently applicable to. The intervals will adjust accordingly with the creation and deletion of configurations.
The lowest application package version this configuration is applicable to.
The highest application package version this configuration is currently applicable to. It might change with the creation and deletion of application packages and deployment configurations.
[
{
"applicationId": "string",
"applicationVersion": "string",
"environmentId": "string",
"versionInterval": {
"startVersion": "string",
"endVersion": "string"
}
}
]
The request was unacceptable, often due to missing a required parameter.
No valid API key provided.
The API key doesn't have permissions to perform the request.
Resource not found.
Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.
Something went wrong on CodeNOW's end.