Alphaus | Documentation
WebsiteRepoTech blog (JP)Tech blog (EN)
ALM v2.0
ALM v2.0
  • Mobingi Documentation (v2.0)
  • Getting started
  • Guides and tutorials
    • Stack lifecycle
      • Deploy stack
      • Manage stack
    • Docker
      • Custom Docker containers
    • Others
      • Blue-green deployment
      • How to use RDS
      • Environment variables
      • Custom installation script
      • SSH into your container
    • FAQ
  • API Reference
    • Overview
    • Stacks
      • List stacks
      • Create stack
      • Describe stack
      • Update stack
      • Delete stack
      • Deploy code
      • Put lifecycle hook
      • Get lifecycle hook
      • Restart instance
      • Describe ServiceConfig
      • Update ServerConfig
    • Vendor credentials
      • List credentials
      • Save credentials
      • Delete credentials
Powered by GitBook
On this page

Was this helpful?

  1. API Reference
  2. Vendor credentials

List credentials

GET /v2/credentials/{vendor}

Request header:

Authorization: Bearer eyJ0eXAiOiJ83fjQb3LzMeXzQfME
Content-Type: application/json

Response body:

HTTP/1.1 200 OK

[
    {
        "id": "*** your aws access key id ***",
        "account": "My Aws account 1",
        "lastModified": "2017-01-21T06:39:06.000Z"
    },
    {
        "id": "*** your aws access key id ***",
        "account": "My Aws account 2",
        "lastModified": "2017-01-21T06:33:10.000Z"
    },
    ...
]
PreviousVendor credentialsNextSave credentials

Last updated 6 years ago

Was this helpful?