Get Single Row

Retrieve a single row by its record ID.

GET /api/v1/bridge/{bridgeId}/{sheetId}/{recordId}
1curl -X GET "https://sheetbridge.adalo.com/api/v1/bridge/{bridgeId}/{sheetId}/{recordId}" \
2  -H "Authorization: Bearer YOUR_TOKEN"
RESPONSE
1{
2  "sheetbridge_id": "550e8400-e29b-41d4-a716-446655440000",
3  "name": "Phillip",
4  "email": "phillip@example.com",
5  "can_attend": "true"
6}

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)
  • 500 - Internal server error (may include invalid sheet ID errors)

Powered by Converge