Retrieves Project structure based on the {project_id} path parameter. Project ID is retrieved by calling the "Project List" endpoint.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location -g --request GET 'https://app.polarix.io/api/1.0/projects/6582ed0344adfe123d04f772/structure' \
--header 'x-api-key: bfa770cb2281e260557d5a51462d6194' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Responses
application/json [
{
"id": 1,
"name": "Pillar",
"parent_id": null
},
{
"id": 2,
"name": "Communication Objective",
"parent_id": 1
},
{
"id": 3,
"name": "Scientific Statement",
"parent_id": 2
}
]
Modified at 2026-04-02 11:41:49