List deployments
GET
/api/v1/deployments
const url = 'http://localhost:3000/api/v1/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/deployments \ --header 'X-API-Key: <X-API-Key>'Retrieves a paginated list of deployments with optional filtering.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”List of deployments retrieved successfully
Unauthorized - Invalid or missing authentication
Forbidden — caller lacks required permission
Service unavailable - Deployment service is not reachable