Get all worksheets under the application or a specified subset of worksheets.
Request
Body Params application/jsonRequired
{
"responseFormat": "json",
"worksheets": [
"string"
]
}
Request Code Samples
curl --location --request POST 'https://www.nocoly.com/v3/app/worksheets/list' \
--header 'HAP-Appkey;' \
--header 'HAP-Sign;' \
--header 'Content-Type: application/json' \
--data-raw '{
"responseFormat": "json",
"worksheets": [
"string"
]
}'
Responses
application/json
Successfully retrieved worksheet list
{
"success": true,
"error_code": 0,
"error_msg": "string",
"data": [
{
"id": "string",
"name": "string",
"remark": "string"
}
]
}
Modified at 2026-03-30 07:15:12