Skip to main content
GET
/
api
/
public
/
v2
/
tables
/
{table_id}
/
sheets
/
operations
/
{operation_id}
Get Sheet Import Operation
curl --request GET \
  --url https://api.promptlayer.com/api/public/v2/tables/{table_id}/sheets/operations/{operation_id} \
  --header 'X-API-KEY: <api-key>'
{
  "success": true,
  "operation": {
    "operation_id": "<string>",
    "progress": 123,
    "message": "<string>",
    "rows_added": 123,
    "row_count": 123,
    "file_name": "<string>",
    "error_message": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://promptlayer-claude-nice-fermi-nop3f.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Poll the status of an asynchronous sheet import operation. The operation_id is returned when a sheet is created via the Create Sheet endpoint.

Authorizations

X-API-KEY
string
header
required

Path Parameters

table_id
string<uuid>
required
operation_id
string
required

Response

Operation status

success
boolean
operation
object

Status of an asynchronous sheet import operation.