Provider Accounts
List Provider Accounts
Returns a paginated list of provider accounts linked to the organization. Filter by cloud provider to see accounts for a specific CSP.
get/v2/cloud-gateways/provider-accounts
Query parameters
page[size]integer
Example:100
The maximum number of items to include per page. The last page of a collection may include fewer items.
page[number]integer
Example:1
Determines which page of the entities to retrieve.
Response
A paginated list for a collection of provider accounts.
Example response
{
"meta": {
"page": {
"number": 1,
"size": 10,
"total": 100
}
},
"data": [
{
"id": "929b2449-c69f-44c4-b6ad-9ecec6f811ae",
"provider": "aws",
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}
]
}