Get Node Children
Get all direct children of a node with pagination support.
Endpoint: GET /api/v1/integration/nodes/{id}/children
Authentication: Required (Bearer token)
Required Headers:
Authorization: Bearer <access_token>
X-Target-Server: integration
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string (UUID) | Yes | Node ID |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | No | Page number (default: 1) |
per_page | integer | No | Number of items per page (default: 100) |
Response
Status: 200 OK
Returns a paginated list of child nodes.
{
"nodes": [
{
"id": "e1f8f3ce-8ead-486e-a6dd-8adcf1532f2f",
"parent_id": "e40efce4-38a3-46c4-a202-e8db95d0409c",
"name": "My Sub Account",
"type": 3,
"path": "1.3.6",
"int_id": 6,
"created_at": "2025-12-23T16:49:21.110885Z",
"updated_at": "2025-12-23T16:49:21.110885Z"
}
],
"total": 1,
"page": 1,
"per_page": 100
}
Example cURL Request
curl -X GET 'https://<base-url>/api/v1/integration/nodes/e40efce4-38a3-46c4-a202-e8db95d0409c/children?page=1&per_page=100' \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"