Metadata
Use metadata to save any custom data to Participants and Rewards to make your referral program even more dynamic.
Last updated
Was this helpful?
Use metadata to save any custom data to Participants and Rewards to make your referral program even more dynamic.
Last updated
Was this helpful?
Certain GrowSurf objects, such as and can have a special metadata
parameter, which is useful for storing any custom information.
Here are some examples of how you could use metadata
:
Issue different reward values to participants based on their different metadata
properties. .
If you need to save custom data to a participant to display or use later in your own application.
Attach custom key/value data to rewards in your campaign to retrieve later via the REST API when automating a reward via Webhooks or Zapier.
Can be set via the campaign editor, admin dashboard, REST API, JavaScript Web API, and embeddable elements
Can be retrieved via REST API and is available via Webhooks
Can be viewed from your admin dashboard and when you download your participants list
Can be set via the campaign editor
Can be retrieved via JavaScript, REST API and is available via Webhooks
Can be used in pre-populated social share and invite messages, and within GrowSurf emails
There are several different ways to save metadata to a participant.
For referred participants:
From Campaign Editor > 5. Installation, navigate to the automagic form detection setup section (the page with the title "Choose forms from your site or web app to automatically track."). This form is for tracking referred people who came to your website through their friend's unique referral link.
Select a form and choose the input fields to save with each form submission. Any custom field that is not "Email", "First Name", or "Last Name" will be saved as metadata.
For referrers (your users/customers):
From Campaign Editor > 2. Design, you can update the Signup Form with custom fields. This signup form is intended for your users/customers who sign up to your referral program in order to refer their friends.
When a participant submits a new task from your referral portal, they will need to submit the custom fields as well, which will be saved as participant metadata.
When you are viewing a participant from the GrowSurf admin dashboard, you can add or update their metadata.
You can use these REST API endpoints to add or update a participant's metadata:
For adding new participants:
For updating existing participants:
Example:
Note: Participant metadata cannot be updated using the JavaScript SDK. You must use the REST API to update metadata for existing participants.
Example:
Note: Participant metadata cannot be updated using embeddable elements. You must use the REST API to update metadata for existing participants.
You can use these REST API endpoints to retrieve a participant's metadata:
There is only one way to update reward metadata, from Campaign Editor > 1. Rewards.
You can then reference this reward metadata in different places of the Campaign Editor for UI purposes. For example, metadata will be available as an option by clicking the "+ Personalize" dropdown in social sharing, invites, and emails.
View the following guide to help you add reward metadata and reference it throughout participant-facing elements of your GrowSurf referral campaign.
The following are the policies when creating or updating metadata.
Policy
Limit
Metadata Key
40 characters
Metadata Value
500 characters
Total Metadata Keys
50 keys / object
Key Characters
Alphanumeric
You can use the JavaScript method to add metadata to a participant. Any keys other than email
, firstName
, and lastName
will be saved as metadata. Metadata will only be set for new participants.
You can pass in custom participant values into any using the data-grsf-metadata
attribute. Metadata will only be set for new participants.
Participant metadata is returned on all participant payloads in .
If you are using the JavaScript SDK, you can also retrieve reward metadata by calling . This is useful for displaying any custom reward details in your UI.
Reward metadata is returned on all campaign payloads in . You can reference metadata when automating rewards using webhooks. This is useful so that your marketing team can make changes anytime to reward values in the future without getting developers involved.
Make sure to thoroughly by signing up as both the referrer and a referred friend to ensure the reward metadata displays correctly in different elements.