PipedreamHQ/pipedream

[ACTION] Softr - Update User & Search User

Open

#20,929 创建于 2026年5月19日

在 GitHub 查看
 (0 评论) (0 反应) (1 负责人)JavaScript (7,438 star) (5,305 fork)batch import
actionenhancementgood first issuehelp wantedprioritizedtriaged

描述

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).

贡献者指南