LoginBook a Demo
  • Getting Started
    • Athena SDK Quickstart
  • Python Guides
    • Build with Agents
    • Use Models Directly
    • Load Data Frames
    • Upload Files
    • Structured Output
  • TypeScript Guides
    • Build with Agents
    • Use Models Directly
    • Execute AOPs
    • Sheets API
    • Browser JavaScript (ESM)
    • Upload Files
    • Structured Output
  • API Reference
Logo
LoginBook a Demo
API ReferenceToolsSheets

Beta
POST
/api/v0/tools/sheets/tab/create
POST
/api/v0/tools/sheets/tab/create
1curl -X POST https://api.athenaintel.com/api/v0/tools/sheets/tab/create \
2 -H "X-API-KEY: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "asset_id": "string",
6 "sheet": {
7 "columnCount": 1,
8 "index": 1,
9 "rowCount": 1,
10 "sheetId": 1,
11 "title": "string"
12 }
13}'
Try it
200Successful
1{
2 "asset_id": "string",
3 "message": "string",
4 "sheet_id": 1,
5 "success": true
6}
Was this page helpful?
Previous

Delete Table Column

Next
Built with
Create a new tab in an Athena spreadsheet.
Create Tab

Authentication

X-API-KEYstring
API Key authentication via header
OR
AuthorizationBearer
Bearer authentication of the form `Bearer <token>`, where token is your auth token.

Request

This endpoint expects an object.
asset_idstringRequired
The ID of the spreadsheet asset
sheetobjectRequired
Sheet Specification

Response

Successful Response
asset_idstring
The ID of the spreadsheet asset
messagestring
Success message or error description
sheet_idinteger
The ID of the newly created sheet tab
successboolean
Whether the operation was successful

Errors

Successful Response

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