Create Row

Create a new row in a sheet. The operation is performed synchronously and returns the created row.

POST /api/v1/bridge/{bridgeId}/{sheetId}
1curl -X POST "https://sheetbridge.adalo.com/api/v1/bridge/{bridgeId}/{sheetId}" \
2  -H "Content-Type: application/json" \
3  -H "Authorization: Bearer YOUR_TOKEN" \
4  -d '{"name": "Alice", "email": "alice@example.com", "can_attend": "true"}'
RESPONSE
1{
2  "status": "completed",
3  "sheetbridge_id": "550e8400-e29b-41d4-a716-446655440002",
4  "name": "Alice",
5  "email": "alice@example.com",
6  "can_attend": "true"
7}

Request Body

REQUEST
1{
2  "name": "Alice",
3  "email": "alice@example.com",
4  "can_attend": "true"
5}
Field Type Description
Column names string Column values matching your sheet structure

Path Parameters

Parameter Description
bridgeId Bridge UUID
sheetId Sheet identifier

Error Responses

  • 404 - Bridge not found
  • 401 - Unauthorized (invalid or missing token)
  • 403 - Forbidden (token doesn't have access to the specified bridge)
  • 429 - Rate limited (Google API quota exceeded)
  • 500 - Internal server error

Powered by Converge