Transaction
List all Linked Accounts for a Business
API Overview
Journal Entry
Reports
Transaction
List all Linked Accounts for a Business
GET
/
v0
/
business
/
{business_id}
/
linked-account
curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/linked-account \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"business_id": "Pk2fNFDd8wj7EFeLWJywc7",
"type": "business",
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"source": "manual",
"external_id": "<string>",
"metadata_": {},
"name": "ABC Business Checking",
"mask": "1234",
"id": "Ns6rRRLYVZPh4cVB7MDby5"
}
]
}
Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Response
200
application/json
Successful Response
The ID of the Business associated with the Linked Account
Example:
"Pk2fNFDd8wj7EFeLWJywc7"
The type of the Linked Account
Available options:
business
, personal
The source of the Linked Account
Available options:
manual
, plaid
The external ID of the Linked Account
Maximum length:
255
The ID of the Linked Account
Example:
"Ns6rRRLYVZPh4cVB7MDby5"
The ID of the Ledger associated with the Linked Account
Example:
"Ns6rRRLYVZPh4cVB7MDby5"
The name of the Linked Account
Maximum length:
255
Example:
"ABC Business Checking"
The mask of the Linked Account
Maximum length:
255
Example:
"1234"
curl --request GET \
--url https://api.sandbox.getasset.com/v0/business/{business_id}/linked-account \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"business_id": "Pk2fNFDd8wj7EFeLWJywc7",
"type": "business",
"ledger_id": "Ns6rRRLYVZPh4cVB7MDby5",
"source": "manual",
"external_id": "<string>",
"metadata_": {},
"name": "ABC Business Checking",
"mask": "1234",
"id": "Ns6rRRLYVZPh4cVB7MDby5"
}
]
}