curl --request POST \
--url https://api.example.com/admin/get-category-child-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"childCategoryID": 123,
"wordStatusTypeID": 123,
"isAll": true,
"isTopLevelCategoryLevel": true,
"isIncludeChildCategories": true,
"editions": "<string>",
"searchText": "<string>",
"orderBy": "<string>",
"fieldName": "<string>",
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Gets the details of child category
curl --request POST \
--url https://api.example.com/admin/get-category-child-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"childCategoryID": 123,
"wordStatusTypeID": 123,
"isAll": true,
"isTopLevelCategoryLevel": true,
"isIncludeChildCategories": true,
"editions": "<string>",
"searchText": "<string>",
"orderBy": "<string>",
"fieldName": "<string>",
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.