PipedreamHQ/pipedream

[ACTION] Softr - Update User & Search User

已關閉

#20,929 建立於 2026年5月19日

 (0 則留言) (0 個反應) (1 位負責人)JavaScript (5,305 個分叉)batch import
actionenhancementgood first issuehelp wantedprioritizedtriaged

倉庫指標

星標
 (7,438 顆星)
PR 合併指標
 (平均合併 9天 7小時) (30 天內合併 131 個 PR)

描述

Softr (https://www.softr.io/)

First Action: Currently actions exist for Create User & Delete User, but we need an "Update User" action — i.e. change field values on an existing user.

Note: Softr's User Management API has no update endpoint. User records that need updating live in Softr Databases, so this action should be built on the Softr Database API Update Record endpoint: PATCH https://tables-api.softr.io/api/v1/databases/{databaseId}/tables/{tableId}/records/{recordId} Docs: https://docs.softr.io/softr-api/softr-database-api/records/update-record

Action 2 — Search Users A standalone action to look up records by a field value (e.g. email) rather than record ID. This is broadly useful as its own workflow step for any Softr customer, not specific to this use case. It also pairs naturally with Update User — since Update Record needs a record ID, users would search first to resolve the ID, then pass it into Update User. Two single-purpose nodes keeps both composable for any workflow. Built on the Search Records endpoint: POST https://tables-api.softr.io/api/v1/databases/{databaseId}/tables/{tableId}/records/search Docs: https://docs.softr.io/softr-api/softr-database-api/records/search-records

Auth: Softr-Api-Key header (Personal Access Token).

貢獻者指南