curl --request GET \
--url https://api.example.com/orgs/{org_id}/nodes/{node_id}/tree/{branch}/commits{
"node_id": "<string>",
"history": [
{
"id": "<string>",
"node_id": "<string>",
"message": "<string>",
"author": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"author_email": "<string>",
"parent_commits": [
"<string>"
]
}
],
"total": 123,
"limit": 123,
"offset": 123
}Get commit history for a node at a specific branch.
This endpoint matches the frontend’s expected URL pattern: /orgs//nodes//tree//commits
curl --request GET \
--url https://api.example.com/orgs/{org_id}/nodes/{node_id}/tree/{branch}/commits{
"node_id": "<string>",
"history": [
{
"id": "<string>",
"node_id": "<string>",
"message": "<string>",
"author": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"author_email": "<string>",
"parent_commits": [
"<string>"
]
}
],
"total": 123,
"limit": 123,
"offset": 123
}Number of commits to return
Number of commits to skip