Skip to content

Files changed by one commit

GET
/v1/datasets/commit-detail
curl --request GET \
--url 'https://example.com/v1/datasets/commit-detail?path=example&commit_id=example'

The files a commit changed — the History “what changed in this commit” drill-in. Sourced from QDS; 404 when the data plane isn’t QDS.

path
required

Dataset path (org/name)

string
<= 300 characters

Dataset path (org/name)

commit_id
required

Commit UUID

string
<= 64 characters

Commit UUID

x-api-key
string | null

Commit + its changed files (add/modify/delete)

Media type application/json
Example generated
example

No commit detail (backend not qds or unknown)

Validation Error

Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationError
object
loc
required
Location
Array<string | integer>
msg
required
Message
string
type
required
Error Type
string
input
ctx
Context
object
Example generated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example",
"input": "example",
"ctx": {}
}
]
}