Skip to main content

Get Node by ID

Retrieve a specific node by its ID.

Endpoint: GET /api/v1/integration/nodes/{id}

Authentication: Required (Bearer token)

Required Headers:

Authorization: Bearer <access_token>
X-Target-Server: integration

Path Parameters

ParameterTypeRequiredDescription
idstring (UUID)YesNode ID

Response

Status: 200 OK

{
"id": "550e8400-e29b-41d4-a716-446655440001",
"parent_id": "550e8400-e29b-41d4-a716-446655440000",
"name": "My Node",
"type": 1,
"path": "1.2.3",
"int_id": 3,
"created_at": "2025-01-03T10:00:00Z",
"updated_at": "2025-01-03T10:00:00Z"
}

Example cURL Request

curl -X GET https://<base-url>/api/v1/integration/nodes/550e8400-e29b-41d4-a716-446655440001 \
-H "Authorization: Bearer <access_token>" \
-H "X-Target-Server: integration"