POST
/
v1
/
workbooks
/
{id}
/
values
import Grid from '@grid-is/api';

const client = new Grid({
  apiKey: process.env['GRID_API_TOKEN'], // This is the default and can be omitted
});

async function main() {
  const response = await client.workbooks.values('id', { read: ['A1'] });

  console.log(response);
}

main();
{}

Use this endpoint if you need formatted cell values. If you need more detailed cell objects, try the calc endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Body

application/json

Response

200
application/json

Successful Response

Response type returned by the for /values query endpoint.