Sheets

Get a sheet

GET
Returns a sheet in a workbook

Path parameters

sheetIdstringRequired
ID of sheet

Response

This endpoint returns an object
data
object
A place to store tabular data
GET
$curl https://api.x.flatfile.com/v1/sheets/us_sh_YOUR_ID \
> -H "Authorization: Bearer <token>"
Response
1{
2 "data": {
3 "id": "us_sh_YOUR_ID",
4 "workbookId": "us_wb_YOUR_ID",
5 "name": "Contacts",
6 "slug": "contacts",
7 "config": {
8 "name": "Contacts",
9 "fields": [
10 {
11 "type": "string",
12 "key": "firstName",
13 "label": "First Name"
14 },
15 {
16 "type": "string",
17 "key": "lastName",
18 "label": "Last Name"
19 },
20 {
21 "type": "string",
22 "key": "email",
23 "label": "Email"
24 }
25 ],
26 "slug": "contacts",
27 "mappingConfidenceThreshold": 0.5
28 },
29 "updatedAt": "2021-08-31T18:00:00Z",
30 "createdAt": "2021-08-31T18:00:00Z",
31 "lockedBy": "Example0"
32 }
33}