curl --request GET \
--url https://app.pennylane.com/api/external/v2/category_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"id": 989,
"label": "Types de dépenses / revenus",
"categories": {
"url": "https://app.pennylane.com/api/external/v2/category_groups/42/categories"
},
"created_at": "2023-08-30T10:08:08.146343Z",
"updated_at": "2023-08-30T10:08:08.146343Z"
}
This endpoint returns a specific category group.
ℹ️ This endpoint requires one of the following scopes:
categories:all
,categories:readonly
curl --request GET \
--url https://app.pennylane.com/api/external/v2/category_groups/{id} \
--header 'Authorization: Bearer <token>'
{
"id": 989,
"label": "Types de dépenses / revenus",
"categories": {
"url": "https://app.pennylane.com/api/external/v2/category_groups/42/categories"
},
"created_at": "2023-08-30T10:08:08.146343Z",
"updated_at": "2023-08-30T10:08:08.146343Z"
}
The access token received from the authorization server in the OAuth 2.0 flow.
Returns a category group
The response is of type object
.
Was this page helpful?