66
loading...
This website collects cookies to deliver better user experience
const config = buildConfig({
// .. your config here
serverURL: 'http://localhost:3000',
// plugins are just simple JS functions
plugins: [
passwordProtect(['pages']),
syncToHubSpot(['customers']),
],
});
Customers
collection could be automatically synced with HubSpot, MailChimp, or similar each time a customer is created or updated.afterChange
hook to relevant collections that takes the incoming data and sends it to your CRMbeforeChange
hook to all fields needing to be encrypted that converts the incoming value to an encrypted counterpartafterRead
hook too all encrypted fields which decrypts them automatically as they are sent out by your APIsblocks
field type, where each block
would represent a field type (select
, text
, checkbox
, etc.) Editors could then build out their own custom forms and build relationship
fields which would reference them.beforeRead
hook to all appropriate collections that shows and hides the document based on if the user has accessupload
-enabled collections with a third-party file host like S3 or Cloudinarynpx create-payload-app