Sheets

Get commit versions for a sheet

GET
Returns the commit versions for a sheet

Path parameters

sheetIdstringRequired
ID of sheet

Query parameters

completedbooleanOptional
If true, only return commits that have been completed. If false, only return commits that have not been completed. If not provided, return all commits.

Response

This endpoint returns an object
data
list of objects
A commit version
GET
$curl https://api.x.flatfile.com/v1/sheets/us_sh_YOUR_ID/commits \
> -H "Authorization: Bearer <token>"
Response
1{
2 "data": [
3 {
4 "id": "us_vr_YOUR_ID",
5 "sheetId": "us_sh_YOUR_ID",
6 "createdBy": "us_usr_YOUR_ID",
7 "createdAt": "2019-08-24T14:15:22Z"
8 }
9 ]
10}