| |||||
API Home >> Sheet >> API Reference >> books
Get a list of sheets from a public workbook.
| Field | Description |
| sheet index, name | Unique number associated with each sheet in a particular workbook.If a workbook consists of 8 sheets the sheet index will be numbered from 1 to 8 along with sheet name. |
<?xml version="1.0" encoding="UTF-8" ?>
<response uri="/api/public/xml/sheets/1001000000002191">
<result>
<sheets>
<sheet index="1" name="Sheet1" />
<sheet index="2" name="Sheet2" />
<sheet index="3" name="Sheet3" />
</sheets>
</result>
</response>
{
"response":
{
"uri": "/api/public/json/sheets/1001000000002191",
"result":
{
"sheets":
{
"sheet":
[
{
"index":"1",
"name":"Sheet1"
},
{
"index":"2",
"name":"Sheet2"
},
{
"index":"3",
"name":"Sheet3"
}
]
}
}
}
}