Endpoint research.browsenodes.node
returns for a browse node the complete path, including all siblings within the branch
AMALYZE Falcon API
research.browsenodes.node (POST)
Endpoint
Method
POST research.browsenodes.node
Example call
Shell
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
curl https://falcon.amalyze.com/<VERSION>/research.browsenodes.node \ -X POST \ -H "X-Falcon-Token: <YOUR-TOKEN-HERE>" \ -d ' { "filters": { "nodes": [ { "marketplace": "A1PA6795UKMFR9", "id": "3968859031" } ] } } ' |
JSON Payload
JavaScript
1 2 3 4 5 6 7 8 9 10 |
{ "filters": { "nodes": [ { "marketplace": "A1PA6795UKMFR9", "id": "3968859031" } ] } } |
Property | Type | Description | Further information | Version |
filters | object | Object containing the filter information | 0.5.0 | |
filters.marketplace | string | String containing the marketplace ID | valid marketplaces ids | 0.5.0 |
filters.id | string | String containing the browsenode’s id | mandatory | 0.5.0 |
JSON Response
JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{ "items": [ {<browsenode>} ], "request": { "id": "708f6b29-0c41-4cd1-ba9a-4346a66fedf9", "took": 0.0571, "costs": 1, "remaining": 99999, "method": "research.browsenodes.tree", "success": true, "error": { "code": null, "message": null, "hint": null } } } |
Property | Type | Description |
items | array | Array containing the browsenode items (for more information see Browsenode) |
request | object | The request information object (see Request information for more information) |
Updates / Changes
Version | Description |
0.5.0 | created |