Planner

Quick Reference

Method

Endpoint

Description

GET

/api/company/{companyId}/planner

GET /api/company/{companyId}/planner

Parameters:

Path Parameters:

  • companyId (string, path) (required): No description available

Example Request:

from ABConnect import ABConnectAPI

# Initialize the API client
api = ABConnectAPI()

# Make the API call
response = api.raw.get(
    "/api/company/{companyId}/planner"
,
    companyId="ed282b80-54fe-4f42-bf1b-69103ce1f76c"

)

# Process the response
print(response)

Sample Response:

1{
2  "status": "success",
3  "data": {}
4}