@extends('layouts.master') @section('content') @if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@if(count($register_webhooks))
Registered Webhooks
@foreach($register_webhooks as $register_webhook) @php $event_name = $register_webhook->channel_event_settings->channel_event->name ?? ($register_webhook->channel_event_settings->object_text) ?? ''; if(strlen($event_name) > 35) $event_name = substr($event_name, 0, 30).'...'; @endphp @endforeach
Channel Name Webhook Event Name Status Action
{{ ucwords(str_replace("_", " ", config('channel.name'))) }} {{ ucwords(str_replace("/", " -> ", $register_webhook->topic_name)) }}{{ $event_name }}
@endif @if(count($favorites))
Quickly Connect
@foreach($favorites as $favorite)
  • {{-- --}}

{{ $favorite->message }}

Try it
@endforeach
@endif

Twilio Tools Setup Guide

Lets get started by following the guide.

Step 1: To send sms you must have an account in Twilio

Step 2: Step by step configuration:

  • Go to automate tab
  • Choose webhook from dropdown and click on connect button
  • Add your Twilio account credentials(or select the previous account)
  • Choose webhook topic from "Select Webhook Topic" dropdown
  • Select notification type(Text message/Call)
  • Map the shopify variables in input fields
  • Check the status/Enable button and press save button
  • You can check saved webhook events by click 'Registered Webhook' menu from the top.Check/verify all configured webhooks including current under this screen.
{{-- --}}
For video tutorials go to Guide tab
Plan
{{ ucfirst($shop->current_plan_type) }}
Next Billing Date
{{ $plan_history_next_date }}
Price
${{ user_plan_price($shop->current_plan_type) }}
Tasks per month
{{ number_format($allowed_webhooks_tasks) }} per month

Usage

Resets on {{ $plan_history_next_date }}

{{ $processed_webhooks }} of {{ $allowed_webhooks_tasks }} automations used

  • {{-- --}}
Discover all the possible integrations for Shopify
Discover
Request An Integration

Can't find the software you're looking for? Dont't worry! We're constantly adding new intergrations based on our customer's requests.

Request an Integration
@include('partials.models_html') {{-- --}} @endsection @section('last_scripts')