Files changed by one commit
GET
/v1/datasets/commit-detail
const url = 'https://example.com/v1/datasets/commit-detail?path=example&commit_id=example';const options = {method: 'GET'};
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://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.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” path
required
Dataset path (org/name)
string
Dataset path (org/name)
commit_id
required
Commit UUID
string
Commit UUID
Header Parameters
Section titled “Header Parameters ” x-api-key
string | null
Responses
Section titled “ Responses ”Commit + its changed files (add/modify/delete)
Media type application/json
Example generated
exampleNo commit detail (backend not qds or unknown)
Validation Error
Media type application/json
HTTPValidationError
object
detail
Array<object>
ValidationErrorobject
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": {} } ]}