Get linked companies for Current User
This endpoint retrieves a list of the user's linked companies. The response data will be an array of objects, with each one being the data related to that linked company.
GET
/api/v2/user/companies
curl \
-X GET https://api.fincalc.co.uk/api/v2/user/companies \
-H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"data": [
{
"CompanyID": 100,
"CompanyName": "ABC Network Parent"
},
{
"CompanyID": 101,
"CompanyName": "ABC Network Member 1"
}
],
"success": true
}