mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
⚡ Return id on SeaTable update
This commit is contained in:
@@ -301,7 +301,7 @@ export class SeaTable implements INodeType {
|
|||||||
body.row_id = rowId;
|
body.row_id = rowId;
|
||||||
responseData = await seaTableApiRequest.call(this, ctx, 'PUT', `/dtable-server/api/v1/dtables/{{dtable_uuid}}/rows/`, body);
|
responseData = await seaTableApiRequest.call(this, ctx, 'PUT', `/dtable-server/api/v1/dtables/{{dtable_uuid}}/rows/`, body);
|
||||||
|
|
||||||
returnData.push(responseData);
|
returnData.push({ _id: rowId, ... responseData });
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (this.continueOnFail()) {
|
if (this.continueOnFail()) {
|
||||||
returnData.push({ error: error.message });
|
returnData.push({ error: error.message });
|
||||||
|
|||||||
Reference in New Issue
Block a user