saveConfigRecordById
Saves or creates a config record and returns the new record object.
Parameters
requestBody - The Gebra Suite Api uses this to get the url and user information to access the Gebra Suite Server.
mode - Config name
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
Was this helpful?