GET
/mindmaps/{id}
curl \
--request GET 'https://api.huy-devops.site/api/mindmaps/{id}' \
--header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
"success": true,
"code": 200,
"message": "string",
"data": {
"id": "string",
"title": "string",
"description": "string",
"nodes": [
{
"id": "string",
"type": "mindmapTextNode",
"content": "string"
}
],
"edges": [
{
"id": "string",
"type": "string"
}
],
"createdAt": "2025-08-30T10:30:00Z",
"updatedAt": "2025-08-30T15:45:00Z"
}
}
Response examples (404)
{
"success": false,
"code": 42,
"errorCode": "string",
"message": "string",
"timestamp": "2025-05-04T09:42:00Z"
}