curl --request GET \
--url https://api.gocobalt.io/api/v2/public/linked-account \
--header 'x-api-key: <api-key>'
{
"docs": [
{
"associated_org": "63dba3b4d9c4be8f0f3f5e8f",
"account_id": "1234567893",
"environment": "test",
"name": "Charizard8",
}
],
"totalDocs": 1,
"limit": 10,
"totalPages": 1,
"page": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}
This API retrieves a list of all linked accounts present in your account.
Request description
Query Parameters
Response description
Environment in which the account was created
Name of the linked account
Total number of existing linked accounts
Total number of existing linked accounts
If the current Page has any previous page
If the current Page has any next page
{
"docs": [
{
"associated_org": "63dba3b4d9c4be8f0f3f5e8f",
"account_id": "1234567893",
"environment": "test",
"name": "Charizard8",
}
],
"totalDocs": 1,
"limit": 10,
"totalPages": 1,
"page": 1,
"pagingCounter": 1,
"hasPrevPage": false,
"hasNextPage": false,
"prevPage": null,
"nextPage": null
}