Updating Standard resources
Overview
Data Update Methods
Update Multiple Objects by Unique Keys
pepperi.api.<resource>.update({ objects: [ { UUID: "<UUID>", <field1>: <value1>, <field2>: <value2> }, { UUID: "<UUID>", <field1>: <value1>, <field2>: <value2> } ] });pepperi.api.activities.update({ objects: [ { UUID: "tgfb523e-74ac-4041-8bb1-a76a3b5e78f5", TSAMyComment: "ABC" }, { UUID: "aefb523e-74ac-4041-8bb1-a76a3b5e78h6", TSAMyComment: "DEF" } ] });{ "success": true, "result": [ { "id": "tgfb523e-74ac-4041-8bb1-a76a3b5e78f5", "message": "", "status": "updated" }, { "id": "aefb523e-74ac-4041-8bb1-a76a3b5e78h6", "message": "", "status": "updated" } ] }
Last updated