Endpoint research.browsenodes.tree returns for a marketplace the browsenode hierarchy
AMALYZE Falcon API
research.browsenodes.tree (POST)
Endpoint
Method
POST research.browsenodes.tree
Example call
Shell
| 
					 1 2 3 4 5 6 7 8 9 10 11  | 
						curl https://falcon.amalyze.com/<VERSION>/research.browsenodes.complete \ -X POST \ -H "X-Falcon-Token: <YOUR-TOKEN-HERE>" \ -d ' {	 	"filters": { 		"marketplace": "A1PA6795UKMFR9", 		"parent": "360390031" 	} }	 '  | 
					
JSON Payload
JavaScript
| 
					 1 2 3 4 5 6  | 
						{	 	"filters": { 		"marketplace": "A1PA6795UKMFR9", 		"parent": "360390031" 	} }  | 
					
| Property | Type | Description | Further information | Version | 
filters | object | Object containing the filter information | 0.2.4 | |
filters.marketplace | string | String containing the marketplace ID | valid marketplaces ids | 0.2.4 | 
filters.parent | string | String containing the parent browsenode’s id | optional. when skipped, top-level browsenodes will be returned | 0.2.4 | 
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.2.4 | created | 
