Get linked companies for Current User

GET /api/v2/user/companies

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.

Responses

  • 200 application/json

    Success

    Hide response attributes Show response attributes object
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
}