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)
ab api raw get /api/company/{companyId}/planner \
companyId=ed282b80-54fe-4f42-bf1b-69103ce1f76c
curl -X GET \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
'https://api.abconnect.co/api/company/ed282b80-54fe-4f42-bf1b-69103ce1f76c/planner'
Sample Response:
1{
2 "status": "success",
3 "data": {}
4}