Create Table
Create a Table from the public API.
POST
Create a Table with a default
Sheet 1, a Column A text column, and one empty row when create_default_sheet is true (default).
Pass create_default_sheet: false to create a table without a default sheet. The response omits default_sheet and sheet_count is 0.
Workspace and folders
The table is created in the workspace associated with your API key. Passfolder_id to create the table inside a registry folder in that workspace.
When title is omitted, PromptLayer generates an Untitled Table name.Authorizations
Body
application/json
Table title. Defaults to a unique 'Untitled Table' name if omitted.
Folder to place the table in.
When true (default), creates Sheet 1 with a Column A text column and one empty row. When false, creates an empty table with no sheets.
Response
Table created. When create_default_sheet is true (default), the response includes default_sheet and table.sheet_count is 1. When create_default_sheet is false, default_sheet is omitted and table.sheet_count is 0.

