accounts:read OAuth2 scope.X-Api-Key: ********************curl --location 'https://api.leadfeeder.com/v1/accounts?account_id=123456&include=account_company' \
--header 'X-Api-Key: <api-key>'{
"data": [
{
"attributes": {
"name": "Account 1"
},
"id": "123456",
"relationships": {
"account_company": {
"id": "555001",
"type": "account_company"
}
},
"type": "account_summary"
},
{
"attributes": {
"name": "Account 2"
},
"id": "789012",
"relationships": {
"account_company": {
"id": "555001",
"type": "account_company"
}
},
"type": "account_summary"
},
{
"attributes": {
"name": "Account 3"
},
"id": "345678",
"relationships": {},
"type": "account_summary"
}
],
"meta": {
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}