Javascript
import Grid from '@grid-is/api'; const client = new Grid({ apiKey: 'My API Key', }); const response = await client.beta.getWorkbookLabels('id'); console.log(response.workbook_id);
{ "created": "2023-11-07T05:31:56Z", "workbook_id": "<string>", "workbook_version": 123, "labels": [ { "at": "<string>", "text": "<string>", "for": "<string>", "type": "<string>" } ] }
Retrieves text that labels cells and ranges in a workbook.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
The response is of type object.
object