A node’s subtree as Markdown
GET
/v1/suites/{id}/markdown
const url = 'https://beta-api.plune.ai/v1/suites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/markdown';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://beta-api.plune.ai/v1/suites/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/markdown \ --header 'Authorization: Bearer <token>'The same document as GET /v1/test-cases/markdown?suiteId= — a folder gives every suite under it, a suite gives itself (D9).
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string format: uuid
Responses
Section titled “ Responses ”The document
Media type text/markdown
string
Headers
Section titled “Headers ” X-Plune-Cases
integer
No / invalid token or session
No such node in the caller’s project
Media type application/json
object
error
required
string
Example generated
{ "error": "example"}