Untitled

 avatar
unknown
plain_text
a year ago
2.0 kB
5
Indexable
INSERT INTO monnify_agency_banking.`push_notification_templates` (code, title, message, url_path, status, created_on, last_modified_on, time_to_live_in_seconds) 
VALUES 
  (
    'SALES_AGENT_CARD_SOLD_PUSH_NOTIFICATION', 
    'Card Sales Wallet Credit', 'Dear {{sales_agent_name}}, you just earned {{amount_earned}} for selling a card. Sell {{number_of_cards_to_sell}} more cards to cash out your wallet balance of {{wallet_balance}}.', 
    'main-app/agent/sales_agent_wallet_transaction_history', 
    'ACTIVE', now(), now(), '3600'
  );

INSERT INTO monnify_agency_banking.`push_notification_templates` (code, title, message, url_path, status, created_on, last_modified_on, time_to_live_in_seconds) 
VALUES 
  (
    'SALES_AGENT_CARD_FIRST_TRANSACTION_PUSH_NOTIFICATION', 
    'Card Sales Wallet Credit', 'Dear {{sales_agent_name}}, a card you sold just performed a transaction and you have earned {{amount_earned}}. Sell {{number_of_cards_to_sell}} more cards to cash out your wallet balance of {{wallet_balance}}.', 
    'main-app/agent/sales_agent_wallet_transaction_history', 
    'ACTIVE', now(), now(), '3600'
  );

INSERT INTO monnify_agency_banking.`push_notification_templates` (code, title, message, url_path, status, created_on, last_modified_on, time_to_live_in_seconds) 
VALUES 
  (
    'SALES_AGENT_CARD_SOLD_PUSH_NOTIFICATION', 
    'Card Sales Update', 'Dear {{sales_agent_name}}, sell {{number_of_cards_to_sell}} cash out your wallet balance of {{wallet_balance}}.', 
    '', 'ACTIVE', now(), now(), '3600'
  );

INSERT INTO monnify_agency_banking.`push_notification_templates` (code, title, message, url_path, status, created_on, last_modified_on, time_to_live_in_seconds) 
VALUES 
  (
    'SALES_AGENT_CARD_BALANCE_REMINDER_PUSH_NOTIFICATION', 
    'Card Balance Reminder', 'Dear {{sales_agent_name}}, sell {{number_of_cards_to_sell}} more cards to cash out your wallet balance of {{wallet_balance}}.', 
    '', 'ACTIVE', now(), now(), '3600'
  );
Editor is loading...
Leave a Comment