curl --request POST \
--url https://api.example.com/admin/get-topic-child-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"childTopicID": 123,
"wordStatusTypeID": 123,
"isAll": true,
"isTopLevelTopicLevel": true,
"isIncludeChildTopics": true,
"editions": "<string>",
"searchText": "<string>",
"orderBy": "<string>",
"fieldName": "<string>",
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Gets the child of topic
curl --request POST \
--url https://api.example.com/admin/get-topic-child-by-id \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"childTopicID": 123,
"wordStatusTypeID": 123,
"isAll": true,
"isTopLevelTopicLevel": true,
"isIncludeChildTopics": 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.