CompanySettings =============== Quick Reference --------------- .. list-table:: :header-rows: 1 :widths: 10 40 50 * - Method - Endpoint - Description * - GET - /api/company/{companyId}/setupdata - .. _get-apicompanycompanyidsetupdata: GET /api/company/{companyId}/setupdata ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ **Parameters:** *Path Parameters:* - `companyId` (string, path) *(required)*: No description available **Example Request:** .. tabs:: .. tab:: Python .. code-block:: python from ABConnect import ABConnectAPI # Initialize the API client api = ABConnectAPI() # Make the API call response = api.raw.get( "/api/company/{companyId}/setupdata" , companyId="ed282b80-54fe-4f42-bf1b-69103ce1f76c" ) # Process the response print(response) .. tab:: CLI .. code-block:: bash ab api raw get /api/company/{companyId}/setupdata \ companyId=ed282b80-54fe-4f42-bf1b-69103ce1f76c .. tab:: curl .. code-block:: bash curl -X GET \ -H 'Authorization: Bearer YOUR_API_TOKEN' \ 'https://api.abconnect.co/api/company/ed282b80-54fe-4f42-bf1b-69103ce1f76c/setupdata' **Sample Response:** .. toggle:: .. code-block:: json :linenos: { "status": "success", "data": {} }