saveConfigRecordById

Saves or creates a config record and returns the new record object.

Parameters

  1. requestBody - The Gebra Suite Api uses this to get the url and user information to access the Gebra Suite Server.

  2. mode - Config name

  3. id - Record Id

Example Usages

Create a new Record with 2 fields

   let newRecord = await brixxServerApi.saveConfigRecordById(req.body, "address", {
       adrName: "John",
       adrLastName: "Doe",
   });

Last updated