Update Row

Update an existing row by its record ID. The operation is performed synchronously and returns the updated row.

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

Request Body

REQUEST
1{
2  "name": "Phillip Updated",
3  "email": "phillip.new@example.com",
4  "can_attend": "false"
5}
Field Type Description
Column names string Column values to update (only include fields to update)

Path Parameters

Parameter Description
bridgeId Bridge UUID
sheetId Sheet identifier
recordId Row ID (from sheetbridge_id column)

Error Responses

  • 404 - Bridge or record 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