Webhooks can be used to feed data to other systems, for example, you could make your orders placed on Ultraviner be automatically added to your excel on google docs. Or you could make your smarthome speaker say something when a new RFY product is detected.
Rule webhooks are triggered when the configured rule activated for a new product.
asin, url, search_term, uv_url, android_url, name, image_url, image_base64
rule_id, rule_name
Order webhooks are triggered when an order is placed.
order_id, asin, variation_asin, name, etv, datetime, date, time, image_url, image_base64.
Order History webhooks are triggered when you navigate on Orders pages.
order_id, asin, name, etv, datetime, date, time, image_url, image_base64.
Note:
NTFY is not reliable on iOS devices. You are probably better creating with the next example (Discord), Telegram or other services.
{
"Content-Type": "application/json"
}
{
"topic": "16e5efed-b94d-4038-9bdd-7bcc26a09a57",
"message": "RFY: {{asin}} - {{name}}",
"title": "New RFY",
"tags": [
"warning"
],
"priority": 4,
"attach": "{{image_url}}",
"actions": [
{
"action": "view",
"label": "Go to Vine",
"url": "https://www.amazon.com/vine/vine-items?ultraviner"
}
]
}
{
"Content-Type": "application/json"
}
{
"content": "{{rule_id}} - {{rule_name}}",
"embeds": {{[
{
"title": "{{name}}",
"url": "{{url}}",
"thumbnail": {
"url": "{{image_url}}"
}
}
]}}
}


https://script.google.com/macros/s/xxxxx/exec?gid=yyyyyyyyy&order={{order_id}}&asin={{asin}}&name={{name}}&etv={{etv}}&date={{date}}&image_url={{image_url}}
{
"Content-Length" : "{{content_length}}",
"Host": "script.google.com"
}


Note:
The first row of the sheet need to be the column names that need to match the parameters in the URL (name, date, etc...). The first row will be automatically created on blank sheets.
1- Check if your dedicated device for webhooks is displaying the RFY products on the screen
2- Check if the RFY auto refresh is enabled
3- Check on the customize webhooks page if the webhook is enabled
4- Check on settings > behavior settings if rule webhooks are enabled on that specific device
5- Right click on a product inside RFY that should have sent the webhook and click on "rule information" to see if the rule is indeed triggering
6- Inside settings > Tools > Export webhook product cache. Check in the export if the product is in there (On the export file it tells you if the webhook succeeded to send or failed.)
7- If you want the product to be sent again, go inside Settings > Tools > Purge Webhook Product cache