GET/stacks/:stack_id/image_repositories
List Image Repositoriespublic
Required Parameters
stack_id
stringThe stack UID
Get list of all image repositories for a stack.
Related Models:Image Repository
Request
GET
/stacks/:stack_id/image_repositoriescurl -X GET \
"https://app.cloud66.com/api/3/stacks/:stack_id/image_repositories" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"
Response
{
"response": [
{
"id": 1,
"name": "my-app-repo",
"url": "quay.io/mycompany/my-app",
"username": "myuser",
"created_at": "2014-08-29T17:21:25Z",
"updated_at": "2014-08-29T17:21:25Z"
}
],
"count": 1,
"pagination": {
"previous": null,
"next": null,
"current": 1,
"per_page": 30,
"count": 1,
"pages": 1
}
}