docodile icon indicating copy to clipboard operation
docodile copied to clipboard

Nested items aren't able to be generated

Open dk-seo opened this issue 7 years ago • 2 comments

Thanks for the awesome project. I have an issue with generating nested items for displaying APIs under subdirectories. Following is the nested item format.

"item": [
  {
	"name": "UserAPI",
	"description": "User related APIs",
	"item": [
		{
			"name": "Profile",
			"description": "Profile related APIs",
			"item": [
				{
					"name": "editProfile.php",
					"request": {
						"method": "POST",
						"header": [],
						"body": { ... }
					}
				},
				{ ... }
				]
		},
		{ ... }
	]
},
{ ... }
]

dk-seo avatar Jul 10 '18 19:07 dk-seo

Hello, thanks for reporting this. Do you happen to have (or can you create) a postman collection you can attach that I can take a look at and test with?

JakeWorrell avatar Jul 10 '18 19:07 JakeWorrell

I've attachd a sample collection(v2.1 from POSTMAN). NestedAPI.postman_collection.json.zip

dk-seo avatar Jul 10 '18 21:07 dk-seo