We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Fetch a single ListItem identified by the ID property in attrs, from the backend.
attrs
backendService .getListItemById(137) .then(function (res) => { let listItem = res.data; }) .catch(function (err) => { * });
Attempt to authenticate via backend using credentials provided in attrs argument.
let credentials = { EmailAddress: 'tester@localhost', Password: 'mypassword1' }; backendService .login(credentials) .then(function (res) => { let session = res.data; }) .catch(function (err) => { });