Get Category Children
This endpoint retrieves all Categories Children positioned down in the first level of the Categories graph.
HTTP Request
GET /api/v2/category/{id}/children/
Parameters
| Name | In | Type | Required | Description | 
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this category | 
Example Request
- JavaScript
 - Bash
 
const headers = {
  'Accept':'application/json',
  'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/category/{id}/children/',
{
  method: 'GET',
  headers: headers
})
.then(function(res) {
    return res.json();
}).then(function(body) {
    console.log(body);
});
# You can also use wget
curl -X GET /api/v2/category/{id}/children/ \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema | 
|---|---|---|---|
| 200 | OK | Response status code | Inline | 
Response Schema
Status Code 200
| Name | Type | Required | Restrictions | Description | 
|---|---|---|---|---|
| » count | integer | false | none | Total results count | 
| » next | string(uri)¦null | false | none | Next page url | 
| » previous | string(uri)¦null | false | none | Previous page url | 
| » results | list(Category) | false | none | List of results | 
Example responses
- 200
 
{
  "count": "integer",
  "next": "string(uri)",
  "previous": "string(uri)",
  "results": [
    {Category}
  ]
}