-
Notifications
You must be signed in to change notification settings - Fork 31
Get Sheets
Legan_dary edited this page May 15, 2018
·
3 revisions
GET /api/getBooks/{bookId}
Returns a list of sheets within the current book.
bookId
GET https://localhost:8080/api/getSheets/cjfx4leqo
{
"status": "success",
"message": null,
"data": {
"sheets": [
{
"name": "Student",
"numRow": 300,
"numCol": 100
},
{
"name": "Course",
"numRow": 500,
"numCol": 50
},
{
"name": "Grade",
"numRow": 200,
"numCol": 50
}
]
}
}