PipedreamHQ/pipedream

[ACTION] Softr - Update User & Search User

Chiusa

#20.929 aperta il 19 mag 2026

 (0 commenti) (0 reazioni) (1 assegnatario)JavaScript (5305 fork)batch import
actionenhancementgood first issuehelp wantedprioritizedtriaged

Metriche repository

Star
 (7438 stelle)
Metriche merge PR
 (Merge medio 9g 7h) (131 PR mergiate in 30 g)

Descrizione

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

Guida contributor