Get ECR login credentials
GET
/api/v3/organizations/{organisation}/applications/ecr-login
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/applications/ecr-login';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/applications/ecr-login \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
Responses
Section titled “Responses”The ECR login credentials
Media typeapplication/json
object
username
string
password
string
expiresAt
string
endpoint
string
Examplegenerated
{ "username": "example", "password": "example", "expiresAt": "example", "endpoint": "example"}