40 lines
614 B
Markdown
40 lines
614 B
Markdown
|
|
# Deploy data API
|
||
|
|
|
||
|
|
## Get deploy data [GET /v3/deploy/data/:project/:env]
|
||
|
|
> Get deploy data for project :project and environment :env
|
||
|
|
|
||
|
|
### Request
|
||
|
|
* Policy:
|
||
|
|
* Method: GET
|
||
|
|
* Headers:
|
||
|
|
* Accept: application/json
|
||
|
|
|
||
|
|
### Response
|
||
|
|
**Status: 200**
|
||
|
|
* Headers:
|
||
|
|
* Content-Type: application/json
|
||
|
|
* Body:
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
## Get deploy data from file [GET /v3/deploy/data/:file]
|
||
|
|
> Get deploy data from file :file
|
||
|
|
|
||
|
|
### Request
|
||
|
|
* Policy:
|
||
|
|
* Method: GET
|
||
|
|
* Headers:
|
||
|
|
* Accept: application/json
|
||
|
|
|
||
|
|
### Response
|
||
|
|
**Status: 200**
|
||
|
|
* Headers:
|
||
|
|
* Content-Type: application/json
|
||
|
|
* Body:
|
||
|
|
```json
|
||
|
|
{
|
||
|
|
}
|
||
|
|
```
|