List deployments for an application
GET
/api/v1/applications/{id}/deployments
const url = 'http://localhost:3000/api/v1/applications/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/deployments';const options = {method: 'GET', headers: {'X-API-Key': '<X-API-Key>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:3000/api/v1/applications/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/deployments \ --header 'X-API-Key: <X-API-Key>'Retrieves all deployments across all versions of an application package.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Application package UUID
Query Parameters
Section titled “Query Parameters ” limit
number
Max items to return (default 20)
offset
number
Number of items to skip (default 0)
Responses
Section titled “ Responses ”Deployments retrieved successfully
Forbidden — caller lacks required permission
Application not found