Skip to main content
GET
/
external
/
api
/
v1
/
my-linked-accounts
Describe Linked Accounts
curl --request GET \
  --url https://public-api.cloudidr.com/external/api/v1/my-linked-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "accountId": "123456789012",
    "accountName": "Production AWS",
    "provider": "AWS",
    "status": "active",
    "linkedAt": "2024-01-15T10:30:00Z"
  },
  {
    "accountId": "987654321098",
    "accountName": "Development AWS",
    "provider": "AWS",
    "status": "active",
    "linkedAt": "2024-02-20T14:45:00Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved linked accounts