Get notified of changes by receiving events at your webhook URL.
brand.company.updated
and brand.updated
events.
By registering webhook endpoints with Brandfetch, you enable us to automatically send event payloads as part of POST requests to the registered webhook endpoint hosted by your application. After your webhook endpoint receives the event payload, your app can run backend actions (for example, updating your database after you receive a brand.updated
event).
delta
property that indicates the change, when applicable.
See the full list of event types that we can send to your webhook.
data.object
corresponding to each event type varies, but typically will be the namespace object (e.g. a Brand given brand.updated where brand.*
is the event namespace.)
data.delta
property which will indicate which fields changed. For *.updated
events, the event payload always includes the data.delta
property which will allow you to inspect what’s been updated on the object.
The delta attributes in the example brand.updated
event above indicates that the brand has a previous value of verified: false
. The data.object
property shows that the verified field has been set to true
which indicates that the brand has been verified
by Brandfetch’s curation team.