Viewing file: GatewayPrefillSeeder.php (109.21 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Database\Seeders;
use App\Models\GatewayPrefill; use Illuminate\Database\Seeder; use Illuminate\Support\Str;
class GatewayPrefillSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { GatewayPrefill::truncate();
$data=[ [ 'id'=>1, 'name'=>'Twilio', 'description'=>get_gateway_description('twilio'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.twilio.com/2010-04-01/Accounts/{tw_sid}/Messages']), // {} means replace 'message_key'=>'Body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>'mediaUrl', 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({tw_sid}:{tw_token})]']), //[] means execute 'others'=>'', 'inputs'=>json_encode(servers_fields('twilio')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>2, 'name'=>'Vonage', 'description'=>get_gateway_description('vonage'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://rest.nexmo.com/sms/json']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['api_key'=>'{vg_api_key}','api_secret'=>'{vg_api_secret}']), 'inputs'=>json_encode(servers_fields('vonage')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>3, 'name'=>'NRS', 'description'=>get_gateway_description('nrs'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://dashboard.360nrs.com/api/rest/sms']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic {nrs_auth_token}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('nrs')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>4, 'name' => 'MessageBird', 'description' => get_gateway_description('message_bird'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://rest.messagebird.com/messages']), // {} means replace 'message_key' => 'body', 'to_mobile_key' => 'recipients', 'from_mobile_key' => 'originator', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization' => 'AccessKey {message_bird_auth_token}']), //[] means execute 'others' => json_encode(['shortcode' => '1008']), 'inputs' => json_encode(servers_fields('message_bird')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>5, 'name' => 'InfoBip', 'description' => get_gateway_description('infobip'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url_base_path}']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'destinations[]', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization' => '{infobip_api_key}']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('infobip')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>6, 'name' => 'Broadcaster Mobile', 'description' => get_gateway_description('broadcaster_mobile'), 'weblink' => json_encode(['method' => 'post', 'url' => '{broadcaster_mobile_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'msisdns', 'from_mobile_key' => 'dial', 'mms_mobile_key' => null, 'headers' => json_encode(['Content-Type' => 'application/json','Authorization' => '{broadcaster_mobile_auth_token}']), //[] means execute 'others' => json_encode(['apikey'=>'{broadcaster_mobile_api_key}','country'=>'{broadcaster_mobile_country}','tag'=>'{broadcaster_mobile_tag}']), 'inputs' => json_encode(servers_fields('broadcaster_mobile')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>7, 'name' => 'Bulksmsbd', 'description' => get_gateway_description('bulksmsbd'), 'weblink' => json_encode(['method' => 'post', 'url' => '{bulksmsbd_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'number', 'from_mobile_key' => 'bulksms_from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{bulksmsbd_username}','password'=>'{bulksmsbd_password}']), 'inputs' => json_encode(servers_fields('bulksmsbd')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>8, 'name' => 'Clickatel', 'description' => get_gateway_description('clickatel'), 'weblink' => json_encode(['method' => 'get', 'url' => '{clickatel_url}']), // {} means replace 'message_key' => 'content', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['apiKey'=>'{clickatel_api_key}','clientMessageId'=> Str::random(2)]), 'inputs' => json_encode(servers_fields('clickatel')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>9, 'name' => 'Click Send', 'description' => get_gateway_description('click_send'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api-mapper.clicksend.com/http/v2/send.php']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'senderId', 'mms_mobile_key' => null, 'headers' => json_encode(['Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others' => json_encode(['username'=>'{click_send_username}','key'=> '{click_send_password}','method'=>'http']), 'inputs' => json_encode(servers_fields('click_send')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>10, 'name' => 'Easysendsms', 'description' => get_gateway_description('easysendsms'), 'weblink' => json_encode(['method' => 'get', 'url' => 'https://www.easysendsms.com/sms/bulksms-api/bulksms-api']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{easysendsms_username}','password'=> '{easysendsms_password}','type'=>'0']), 'inputs' => json_encode(servers_fields('easysendsms')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>11, 'name' => 'EstoreSMS', 'description' => get_gateway_description('estoresms'), 'weblink' => json_encode(['method' => 'get', 'url' => 'http://www.estoresms.com/smsapi.php']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'recipient', 'from_mobile_key' => 'sender', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['api_key'=>'{estoresms_username}','password'=> '{estoresms_password}}']), 'inputs' => json_encode(servers_fields('estoresms')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>12, 'name' => 'GreenWebBD', 'description' => get_gateway_description('greenWebBD'), 'weblink' => json_encode(['method' => 'get', 'url' => '{greenWebBD_url}}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'green_web_frm', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['token'=>'{greenWebBD_api_key}']), 'inputs' => json_encode(servers_fields('greenWebBD')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>13, 'name' => 'Ones TwoU', 'description' => get_gateway_description('ones_two_u'), 'weblink' => json_encode(['method' => 'get', 'url' => 'https://api.1s2u.io/bulksms']), // {} means replace 'message_key' => 'msg', 'to_mobile_key' => 'mno', 'from_mobile_key' => 'ones_two_u_from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{ones_two_u_username}','password'=>'ones_two_u_password','mt'=>'0','fl'=>'0','Sid'=>'test']), 'inputs' => json_encode(servers_fields('ones_two_u')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>14, 'name' => 'Rute Mobile', 'description' => get_gateway_description('route_mobile'), 'weblink' => json_encode(['method' => 'get', 'url' => '{route_mobile_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'destination', 'from_mobile_key' => 'source', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{route_mobile_username}','password'=>'{route_mobile_password}','type'=>'0','dlr'=>'1']), 'inputs' => json_encode(servers_fields('route_mobile' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>15, 'name' => 'Text Local', 'description' => get_gateway_description('text_local'), 'weblink' => json_encode(['method' => 'get', 'url' => '{text_local_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'numbers', 'from_mobile_key' => 'sender', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['apikey'=>'{text_local_api_key}']), 'inputs' => json_encode(servers_fields('text_local' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>16, 'name' => 'ThinQ', 'description' => get_gateway_description('thinq'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.thinq.com/account/{thinq_account_id}/product/origination/sms/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to_did', 'from_mobile_key' => 'from_did', 'mms_mobile_key' => 'file', 'headers' => json_encode(['Authorization'=>'Basic [base64_encode({thinq_username}:{thinq_auth_token})]']), //[] means execute 'others' => json_encode(['thinq_account_id'=>'{thinq_account_id}','thinq_username'=>'{thinq_username}','thinq_auth_token'=>'{thinq_auth_token}']), 'inputs' => json_encode(servers_fields('thinq' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>17, 'name' => 'TynTec', 'description' => get_gateway_description('tyntec'), 'weblink' => json_encode(['method' => 'post', 'url' => '{tyntec_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apikey'=>'{tyntec_apikey}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('tyntec' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>18, 'name' => 'ZamtelCoZm', 'description' => get_gateway_description('zamtelCoZm'), 'weblink' => json_encode(['method' => 'post', 'url' => '{zamtelCoZm_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'contacts', 'from_mobile_key' => 'senderid', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['key'=>'{zamtelCoZm_api_key}']), 'inputs' => json_encode(servers_fields('zamtelCoZm' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>19, 'name' => 'Africastalking', 'description' => get_gateway_description('africastalking'), 'weblink' => json_encode(['method' => 'post', 'url' => '{africas_talking_url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{africas_talking_api_key}','Accept'=>'application/json','Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others' => json_encode(['username'=>'{africas_talking_username}']), 'inputs' => json_encode(servers_fields('africastalking' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>20, 'name' => 'Signalwire', 'description' => get_gateway_description('signalwire'), 'weblink' => json_encode(['method' => 'post', 'url' => '{sw_space_url}/api/laml/2010-04-01/Accounts/{sw_project_id}/Messages.json']), // {} means replace 'message_key' => 'Body', 'to_mobile_key' => 'To', 'from_mobile_key' => 'From', 'mms_mobile_key' => 'mediaUrl', 'headers' => json_encode(['Authorization'=>'Basic [base64_encode({sw_project_id}:{sw_token})]']), //[] means execute 'others' => json_encode(['sw_project_id'=>'{sw_project_id}','sw_space_url'=>'{sw_space_url}','sw_token'=>'{sw_token}']), 'inputs' => json_encode(servers_fields('signalwire' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>21, 'name' => 'Bandwidth', 'description' => get_gateway_description('bandwidth'), 'weblink' => json_encode(['method' => 'post', 'url' => '{bandwidth_url}']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Basic [base64_encode({bandwidth_auth_token}:{bandwidth_api_secret})]']), //[] means execute 'others' => json_encode(['bandwidth_auth_token'=>'{bandwidth_auth_token}','bandwidth_api_secret'=>'{bandwidth_api_secret}','applicationId'=>'{bandwidth_app_id}']), 'inputs' => json_encode(servers_fields('bandwidth' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>22, 'name' => 'Smpp', 'description' => get_gateway_description('smpp'), 'weblink' => json_encode(['method' => 'post', 'url' => '{smpp_ip_address}']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['smpp_username'=>'{smpp_username}','smpp_password'=>'{smpp_password}','smpp_port'=>'{smpp_port}']), 'inputs' => json_encode(servers_fields('smpp' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>23, 'name'=>'Plivo', 'description'=>get_gateway_description('plivo'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.plivo.com/v1/Account/{pl_auth_id}/Message/']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'dst', 'from_mobile_key'=>'src', 'mms_mobile_key'=>'mediaUrl', 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({pl_auth_id}:{pl_auth_token})]']), //[] means execute 'others'=>json_encode(['url'=>route('inbound.process', ['plivo'])]), 'inputs'=>json_encode(servers_fields('plivo')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>24, 'name'=>'Call DXING TTS', 'description'=>get_gateway_description('call_dxing_tts'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.plivo.com/v1/Account/{pl_auth_id}/Message/']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'recipient', 'from_mobile_key'=>'caller_id', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Authorization'=>'Bearer {api_key}','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others'=>json_encode(['language'=>'en-IN-Wavenet-D','gender'=>'female']), 'inputs'=>json_encode(servers_fields('call_dxing_tts')), 'created_at'=>now(), 'updated_at'=>now() ],[ 'id'=>25, 'name'=>'Ejointech', 'description'=>get_gateway_description('ejointech'), 'weblink'=>json_encode(['method'=>'post','url'=>'{ejointech_url}']), // {} means replace 'message_key'=>'sms', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Content-Type'=>'application/json','charset'=>'utf-8.']), //[] means execute 'others'=>json_encode(['username'=>'{ejointech_username}','password'=>'{ejointech_password}']), 'inputs'=>json_encode(servers_fields('ejointech')), 'created_at'=>now(), 'updated_at'=>now() ],[ 'id'=>26, 'name'=>'Konnect', 'description'=>get_gateway_description('konnect'), 'weblink'=>json_encode(['method'=>'get','url'=>'https://konnect.kirusa.com/api/v1/Accounts/{konnect_ac_id}/Messages']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Content-Type'=>'application/json','charset'=>'utf-8.']), //[] means execute 'others'=>json_encode(['api_token'=>'{konnect_api_key}']), 'inputs'=>json_encode(servers_fields('konnect')), 'created_at'=>now(), 'updated_at'=>now() ],[ 'id'=>27, 'name'=>'SMS Noc', 'description'=>get_gateway_description('sms_noc'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://app.smsnoc.com/api/v3/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'recipient', 'from_mobile_key'=>'sender_id', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Authorization'=>'Bearer {noc_api_key}','Accept'=>'application/json']), //[] means execute 'others'=>json_encode(['noc_api_key'=>'{noc_api_key}','type'=>'plain']), 'inputs'=>json_encode(servers_fields('sms_noc')), 'created_at'=>now(), 'updated_at'=>now() ],[ 'id'=>28, 'name'=>'Konnect OBD', 'description'=>get_gateway_description('konnect_obd'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://konnect.dotgo.com/admin/api/obd']), // {} means replace 'message_key'=>'otp', 'to_mobile_key'=>'to', 'from_mobile_key'=>'caller_id', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Content-Type'=>'application/json','Authorization'=>'{konnect_obd_account_id}']), //[] means execute 'others'=>json_encode(['api_token'=>'{konnect_obd_api_key}','cmd'=>'send_otp_by_obd']), 'inputs'=>json_encode(servers_fields('konnect_obd')), 'created_at'=>now(), 'updated_at'=>now() ],[ 'id'=>29, 'name'=>'Symtel', 'description'=>get_gateway_description('symtel'), 'weblink'=>json_encode(['method'=>'get','url'=>'https://www.symtel.biz/fr/index.php']), // {} means replace 'message_key'=>'content', 'to_mobile_key'=>'phone', 'from_mobile_key'=>'title', 'mms_mobile_key'=>'', 'headers'=>json_encode(['Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode(['mod'=>'cgibin','page'=>'2','user'=>'{user}','code'=>'{password}','']), 'inputs'=>json_encode(servers_fields('symtel')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>30, 'name' => 'InfoBip Custom', 'description' => get_gateway_description('infobip_custom'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url_base_path}']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'destinations[]', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization' => 'App {infobip_api_key}','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others' => json_encode(['channel'=>'SMS']), 'inputs' => json_encode(servers_fields('infobip_custom')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>31, 'name' => 'Bulk SMS', 'description' => get_gateway_description('bulksms'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url_base_path}']), // {} means replace 'message_key' => 'body', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization' => 'Basic [base64_encode({username}:{password})]','Accept'=>'application/json']), //[] means execute 'others' => json_encode(['auto-unicode'=>'true','longMessageMaxParts'=>'30']), 'inputs' => json_encode(servers_fields('bulksms')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>32, 'name'=>'Telnyx', 'description'=>get_gateway_description('telnyx'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.telnyx.com/v2/messages']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization' => 'Bearer {tl_api_key}','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('telnyx')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>33, 'name'=>'Cheapglobalsms', 'description'=>get_gateway_description('cheapglobalsms'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://cheapglobalsms.com/api_v1/']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['account'=>'{cheap_global_account}','password'=>'{cheap_global_account}']), 'inputs'=>json_encode(servers_fields('cheapglobalsms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>34, 'name'=>'Smsglobal', 'description'=>get_gateway_description('smsglobal'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.smsglobal.com/v2/sendsms']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['apiKey'=>'{apiKey}','Content-Type'=>'application/json','Accept'=>'application/json']), 'inputs'=>json_encode(servers_fields('smsglobal')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>35, 'name'=>'Karix', 'description'=>get_gateway_description('karix'), 'weblink'=>json_encode(['method'=>'post','url' => '{karix_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({karix_auth_id}:{karix_auth_token})]']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('karix')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>36, 'name'=>'RouteeNet', 'description'=>get_gateway_description('routee_net'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://connect.routee.net/sms']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['Authorization'=>'Basic [base64_encode({application_id}:{application_secret})]','Content-Type'=>'application/json','Accept'=>'application/json']), 'inputs'=>json_encode(servers_fields('routee_net')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>37, 'name'=>'Hutchlk', 'description'=>get_gateway_description('hutchlk'), 'weblink'=>json_encode(['method'=>'post','url' => '{hutchlk_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{hutchlk_username}','password'=>'{hutchlk_password}']), 'inputs'=>json_encode(servers_fields('hutchlk')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>38, 'name'=>'Teletopiasms', 'description'=>get_gateway_description('teletopiasms'), 'weblink'=>json_encode(['method'=>'post','url' => '{teletopiasms_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{teletopiasms_username}','password'=>'{teletopiasms_password}']), 'inputs'=>json_encode(servers_fields('teletopiasms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>39, 'name'=>'Solutions4mobiles', 'description'=>get_gateway_description('solutions4mobiles'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://{solutions4mobiles_host}/apis/sms/mt/v2/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {access_token}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode(['username'=>'{solutions4mobiles_username}','password'=>'{solutions4mobiles_password}']), 'inputs'=>json_encode(servers_fields('solutions4mobiles')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>40, 'name'=>'Beemafrica', 'description'=>get_gateway_description('beemAfrica'), 'weblink'=>json_encode(['method'=>'post','url' => '{beemAfrica_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API KEY'=>'{beemAfrica_api_key}','Secret KEy'=>'{beemAfrica_secret_key}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('beemAfrica')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>41, 'name'=>'Flowroute', 'description'=>get_gateway_description('flowRoute'), 'weblink'=>json_encode(['method'=>'post','url' => '{flowRoute_url}']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API KEY'=>'{flowRoute_api_key}','Secret KEy'=>'{flowRoute_secret_key}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('flowRoute')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>42, 'name'=>'Waapinet', 'description'=>get_gateway_description('waapinet'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://waapi.net/api/sendMessageText']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({waapinet_instanceId}:{waapinet_apiToken})]','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('waapinet')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>43, 'name'=>'ElitBuzzBD', 'description'=>get_gateway_description('elitBuzzBD'), 'weblink'=>json_encode(['method'=>'post','url' => '{elitBuzzBD_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['API KEY'=>'{elitBuzzBD_api_key}','Content-Type'=>'application/json']), 'inputs'=>json_encode(servers_fields('elitBuzzBD')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>44, 'name'=>'HablameV2', 'description'=>get_gateway_description('hablameV2'), 'weblink'=>json_encode(['method'=>'post','url' => '{hablameV2_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['API KEY'=>'{hablameV2_api_key}','API token'=>'{hablameV2_api_token}','Server'=>'{hablameV2_server_cl}','Content-Type'=>'application/json']), 'inputs'=>json_encode(servers_fields('hablameV2')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>45, 'name'=>'Cellcast', 'description'=>get_gateway_description('cellcast'), 'weblink'=>json_encode(['method'=>'post','url' => '{cellcast_url}']), // {} means replace 'message_key'=>'messages', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API KEY'=>'{cellcast_api_key}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('cellcast')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>46, 'name'=>'Smsala', 'description'=>get_gateway_description('smsala'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.smsala.com/api/SendSMS']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API KEY'=>'{smsala_api_id}','API password'=>'{smsala_api_password}']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smsala')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>47, 'name'=>'Callr', 'description'=>get_gateway_description('callr'), 'weblink'=>json_encode(['method'=>'post','url' => '{url}']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode(:{callr_api_key})]','Content-Type'=>'application/json',]), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('callr')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>48, 'name'=>'Skyetel', 'description'=>get_gateway_description('skyetel'), 'weblink'=>json_encode(['method'=>'post','url' => '{skyetelt_url}']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({skyetel_sid}:{skyetel_secret})]','Content-Type'=>'application/json',]), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('skyetel')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>49, 'name'=>'Sinch', 'description'=>get_gateway_description('sinch'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://us.sms.api.sinch.com/xms/v1/{service_plan_id}/batches']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['Service PlanId '=>'{service_plan_id}','API token'=>'{sinch_api_token}','Content-Type'=>'application/json']), 'inputs'=>json_encode(servers_fields('sinch')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>50, 'name'=>'D7networks', 'description'=>get_gateway_description('d7networks'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.d7networks.com/messages/v1/send']), // {} means replace 'message_key'=>'messages', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_access_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('d7networks')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>51, 'name'=>'Cm', 'description'=>get_gateway_description('cm'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://gw.cmtelecom.com/v1.0/message']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['apikey'=>'{apikey}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('cm')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>52, 'name'=>'Web2sms237', 'description'=>get_gateway_description('web2sms237'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.web2sms237.com/sms/send-multiple']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {access_token}','Content-Type'=>'application/json',]), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('web2sms237')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>53, 'name'=>'Sozuri', 'description'=>get_gateway_description('sozuri'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://sozuri.net/api/v1/messaging']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {project_api_key}','Content-Type'=>'application/json','Accept' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('sozuri')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>54, 'name'=>'Experttexting', 'description'=>get_gateway_description('experttexting'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://www.experttexting.com/ExptRestApi/sms/json']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}','apikey'=>'{apikey}']), 'inputs'=>json_encode(servers_fields('experttexting')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>55, 'name'=>'Bulksmsnigeria', 'description'=>get_gateway_description('bulksmsnigeria'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://www.bulksmsnigeria.com/api/v2/sms']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api token'=>'{api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('bulksmsnigeria')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>56, 'name'=>'Sendsmsgate', 'description'=>get_gateway_description('sendsmsgate'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://cloud.sendsmsgate.com/sendsms.php']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('sendsmsgate')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>57, 'name'=>'Lifetimesms', 'description'=>get_gateway_description('lifetimesms'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://lifetimesms.com/plain']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['api token'=>'{api_token}','api secret'=>'{api_secret}']), 'inputs'=>json_encode(servers_fields('lifetimesms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>58, 'name'=>'I-Digital-M', 'description'=>get_gateway_description('i_digital_M'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.i-digital-m.com/v2/?username={username}&password={password}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('i_digital_M')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>59, 'name'=>'Txtria', 'description'=>get_gateway_description('txtria'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://txtria.com/api/sendsms']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['sysId'=>'{sys_id}','auth token'=>'{auth_token}']), 'inputs'=>json_encode(servers_fields('txtria')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>60, 'name'=>'Gatewayapi', 'description'=>get_gateway_description('gatewayapi'), 'weblink'=>json_encode(['method'=>'post','url' => '{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode(:{token})]','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('gatewayapi')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>61, 'name'=>'Semysms', 'description'=>get_gateway_description('semysms'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://semysms.net/api/3/sms.php']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['id_device'=>'{id_device}','token '=>'{token}']), 'inputs'=>json_encode(servers_fields('semysms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>62, 'name'=>'SmsTo', 'description'=>get_gateway_description('smsto'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.sms.to/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_key}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smsto')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>63, 'name'=>'TextBelt', 'description'=>get_gateway_description('textbelt'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://textbelt.com/text']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api key'=>'{api_key}']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('textbelt')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>64, 'name'=>'Intel Tele', 'description'=>get_gateway_description('intel_tele'), 'weblink'=>json_encode(['method'=>'post','url' => 'http://api.sms.intel-tele.com/message/send/']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api key'=>'{api_key}','username'=>'{username}','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('intel_tele')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>65, 'name'=>'Gateway SA', 'description'=>get_gateway_description('gateway_sa'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://sms.gateway.sa/api/sendsms.php']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'numbers', 'from_mobile_key'=>'sender', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('gateway_sa')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>66, 'name'=>'Onbuka', 'description'=>get_gateway_description('onbuka'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.onbuka.com/v3/sendSms']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'numbers', 'from_mobile_key'=>'sender', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Content-Type' => 'application/json','charset'=>'utf-8.']), //[] means execute 'others'=>json_encode(['api_key'=>'{api_key}','api_secret'=>'{api_secret}','appId'=>'{appId}']), 'inputs'=>json_encode(servers_fields('onbuka')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>67, 'name'=>'Telesign', 'description'=>get_gateway_description('telesign'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://rest-ww.telesign.com/v1/messaging']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({username}:{password})]','Accept' => 'application/json','Content-Type' => 'application/x-www-form-urlencoded']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('telesign')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>68, 'name'=>'Facilitamovel', 'description'=>get_gateway_description('facilitamovel'), 'weblink'=>json_encode(['method'=>'post','url' => 'http://api.facilitamovel.com.br/api/multipleSendJson.ft']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('facilitamovel')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>69, 'name'=>'Roundsms', 'description'=>get_gateway_description('roundsms'), 'weblink'=>json_encode(['method'=>'get','url' => 'http://roundsms.com/api/sendhttp.php?']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'phone', 'from_mobile_key'=>'title', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['authkey'=>'{authkey}']), 'inputs'=>json_encode(servers_fields('roundsms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>70, 'name'=>'Allmysms', 'description'=>get_gateway_description('allmysms'), 'weblink'=>json_encode(['method'=>'post','url' => '{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['authkey'=>'{authkey}','login'=>'{login}']), 'inputs'=>json_encode(servers_fields('allmysms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>71, 'name'=>'Esolutions CO ZW', 'description'=>get_gateway_description('esolutions_co_zw'), 'weblink'=>json_encode(['method'=>'post','url' => '{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('esolutions_co_zw')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>72, 'name' => 'Gupshup IO', 'description' => get_gateway_description('gupshup_io'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.gupshup.io/wa/api/v1/msg']), // {} means replace 'message_key' => 'text', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{api_key}','Accept'=>'application/json','Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('gupshup_io' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>73, 'name' => 'Semaphore', 'description' => get_gateway_description('semaphore_co'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.semaphore.co/api/v4/messages']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{api_key}']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('semaphore_co' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>74, 'name' => 'Gosms Fun', 'description' => get_gateway_description('gosms_fun'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://app.gosms.eu/api/v1/messages']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Bearer {access_token}','Content-Type'=>'application/json',]), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('gosms_fun' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>75, 'name' => 'Fast2sms', 'description' => get_gateway_description('fast2sms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://www.fast2sms.com/dev/bulkV2']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{api_key}','Accept'=>'application/json','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('fast2sms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>76, 'name' => 'MSG91', 'description' => get_gateway_description('msg91'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://control.msg91.com/api/v5/flow']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authkey'=>'{authkey}','Accept'=>'application/json','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('msg91' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>77, 'name' => 'Budgetsms', 'description' => get_gateway_description('budgetsms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.budgetsms.net/sendsms/']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{username}','userid'=>'{userid}','handle'=>'{handle}']), 'inputs' => json_encode(servers_fields('budgetsms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>78, 'name' => 'Skebby', 'description' => get_gateway_description('skebby'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.skebby.it/API/v1.0/REST/sms']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Basic [base64_encode({user_key}:{session_key})]','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('skebby' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>79, 'name' => 'Mobitech Technologies', 'description' => get_gateway_description('mobitech_technologies'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url}']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Bearer {api_key}','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('mobitech_technologies' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>80, 'name' => 'Pickyassist', 'description' => get_gateway_description('pickyassist'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://pickyassist.com/app/api/v2/push']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['api token'=>'{api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('pickyassist' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>81, 'name' => 'Yup Chat', 'description' => get_gateway_description('yup_chat'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.yup.chat/v1/sms/messages']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['auth token'=>'{authkey}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('yup_chat' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>82, 'name' => 'Ebulksms', 'description' => get_gateway_description('ebulksms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.ebulksms.com/sendsms']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{username}','auth key'=>'{apikey}']), 'inputs' => json_encode(servers_fields('ebulksms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>83, 'name' => 'Alibabacloud', 'description' => get_gateway_description('alibabacloud'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url}']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Basic [base64_encode(access_key_id}:{access_key_secret})]']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('alibabacloud' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>84, 'name' => 'SMS mode', 'description' => get_gateway_description('smsmode'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://rest.smsmode.com/sms/v1/messages']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apikey'=>'{apikey}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('smsmode' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>85, 'name' => 'OrangeSMS', 'description' => get_gateway_description('orange_sms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.orange.com/smsmessaging/v1']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['dev_key'=>'{dev_key}','accesstoken'=>'{access_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('orange_sms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>86, 'name' => 'Wa2sales', 'description' => get_gateway_description('wa2sales'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url}']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Bearer {api_access_token}',]), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('wa2sales' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>87, 'name' => 'Silverstreet', 'description' => get_gateway_description('silverstreet'), 'weblink' => json_encode(['method' => 'post', 'url' => '{host}']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['API_KEY'=>'{api_key}','username'=>'{username}']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('silverstreet' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>88, 'name' => 'Nigeria bulksms', 'description' => get_gateway_description('nigeriabulksms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://portal.nigeriabulksms.com/api/?']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs' => json_encode(servers_fields('nigeriabulksms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>89, 'name' => 'SMS API Online', 'description' => get_gateway_description('sms_api_online'), 'weblink' => json_encode(['method' => 'post', 'url' => 'http://restapi.sms-api.online/v1/send']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Access-Token'=>'{access_token}','Accept' => 'application/json','Content-Type' => 'application/json',]), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('sms_api_online' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>90, 'name' => 'Termii', 'description' => get_gateway_description('termii'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://{base_url}/api/sms/send']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['api key'=>'{api_key}','Accept' => 'application/json','Content-Type' => 'application/json',]), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('termii' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>91, 'name' => 'Voximplant', 'description' => get_gateway_description('voximplant'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.voximplant.com/platform_api/SendSmsMessage/']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Content-Type' => 'application/json']), //[] means execute 'others' => json_encode(['api key'=>'{api_key}','account_id' => '{account_id}',]), 'inputs' => json_encode(servers_fields('voximplant' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>92, 'name' => 'Cliqsms', 'description' => get_gateway_description('cliqsms'), 'weblink' => json_encode(['method' => 'post', 'url' => 'http://plus.cliqsms.com/sendsms.php?']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs' => json_encode(servers_fields('cliqsms' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>93, 'name' => 'Smsvend', 'description' => get_gateway_description('smsvend'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.smsvend.com/v2/app/sms']), // {} means replace 'message_key' => 'messages', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['email'=>'{email}','password'=>'{password}']), 'inputs' => json_encode(servers_fields('smsvend' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>94, 'name' => 'BSG World', 'description' => get_gateway_description('bsg_world'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.bsg.world/rest/sms/create']), // {} means replace 'message_key' => 'body', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Bearer {api_key}','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('bsg_world' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>95, 'name' => 'SMS experience', 'description' => get_gateway_description('smsexperience'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://smsexperience.com/api/sms/sendsms?']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs' => json_encode(servers_fields('smsexperience')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>96, 'name' => 'Moceanapi', 'description' => get_gateway_description('moceanapi'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://rest.moceanapi.com/rest/2/sms']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Basic [base64_encode({api_key}:{api_secret})]']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('moceanapi')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>97, 'name' => 'Messaggio', 'description' => get_gateway_description('messaggio'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://msg.messaggio.com/api/v1/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Authorization'=>'Bearer {api_key}','Content-Type'=>'application/json','charset'=>'utf-8.','Accept'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('messaggio')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>98, 'name' => 'Smsurway', 'description' => get_gateway_description('smsurway'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://smsurway.com.ng/api/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['auth token'=>'{auth_token}','Content-Type'=>'application/xwww-form-urlencoded']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('smsurway')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>99, 'name' => 'Smart sms solutions', 'description' => get_gateway_description('smartsmssolutions'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://app.smartsmssolutions.com/io/api/client/v1/sms/']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['api_token'=>'{api_token}','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('smartsmssolutions')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>100, 'name' => 'Voiceand text', 'description' => get_gateway_description('voiceandtext'), 'weblink' => json_encode(['method' => 'post', 'url' => ' http://dnd.voiceandtext.com/customer/api']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'numbers', 'from_mobile_key' => 'sender', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['email'=>'{email}','password'=> '{password}']), 'inputs' => json_encode(servers_fields('voiceandtext')), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>101, 'name' => 'Simpletexting', 'description' => get_gateway_description('simpletexting'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://app2.simpletexting.com/v1/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{api_key}','Accept'=>'application/json','Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('simpletexting' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>102, 'name' => 'Wavix', 'description' => get_gateway_description('wavix'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.wavix.com/v3/messages']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['apiKey'=>'{api_key}','Accept'=>'application/json','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('wavix' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>103, 'name' => 'Arkesel', 'description' => get_gateway_description('arkesel'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://sms.arkesel.com/api/v2/sms/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['api key' => '{api_key}','Content-Type'=>'application/json']), //[] means execute 'others' => json_encode([]), 'inputs' => json_encode(servers_fields('arkesel' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>104, 'name' => 'Lafricamobile', 'description' => get_gateway_description('lafricamobile'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://lamsms.lafricamobile.com/api']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode(['Content-Type'=>'application/json']), //[] means execute 'others' => json_encode(['accountid' => '{accountid}','password' => '{password}',]), 'inputs' => json_encode(servers_fields('lafricamobile' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>105, 'name'=>'Smsaero', 'description'=>get_gateway_description('smsaero'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://email:{api_key}@gate.smsaero.ru/v2/auth']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api_key'=>'{api_key}','Content-Type'=>'application/json','Accept'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smsaero')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>106, 'name'=>'Textgrid', 'description'=>get_gateway_description('textgrid'), 'weblink'=>json_encode(['method'=>'post','url'=>' https://api.textgrid.com/2010-04-01/Accounts/{sid}/Messages.json']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({sid}:{token})]','Content-Type'=>'application/json',]), //[] means execute 'others'=>'', 'inputs'=>json_encode(servers_fields('textgrid')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>107, 'name'=>'Movider', 'description'=>get_gateway_description('movider'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.movider.co/v1/sms']), // {} means replace 'message_key'=>'Body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api_key'=>'{api_key}','api_secret'=>'{api_secret}','Accept'=>'application/json','Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others'=>'', 'inputs'=>json_encode(servers_fields('movider')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>108, 'name'=>'Ekotech', 'description'=>get_gateway_description('ekotech'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api-public.ekotech.cm/messages']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','password'=>'{password}']), 'inputs'=>json_encode(servers_fields('ekotech')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>109, 'name'=>'Aldeamo', 'description'=>get_gateway_description('aldeamo'), 'weblink'=>json_encode(['method'=>'post','url'=>'{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({username}:{password})]']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('aldeamo')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>110, 'name'=>'Tonkra', 'description'=>get_gateway_description('tonkra'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://sms.tonkra.com/api/http/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api token'=>'{api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('tonkra')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>111, 'name'=>'4Jawaly', 'description'=>get_gateway_description('four_jawaly'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api-sms.4jawaly.com/api/v1/account/area/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({api_key}:{api_secret})]','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('four_jawaly')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>112, 'name'=>'Sms gatewayhub', 'description'=>get_gateway_description('smsgatewayhub'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://www.smsgatewayhub.com/api/mt/SendSMS']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api_key'=>'{api_key}']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smsgatewayhub')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>113, 'name'=>'Sling', 'description'=>get_gateway_description('sling'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://app.sling.com.ng/api/v1/send-sms']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Content-Type'=>'application/x-www-form-urlencoded','Accept'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('sling')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>114, 'name'=>'Sleengshort', 'description'=>get_gateway_description('sleengshort'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://app.sleengshort.com/api/sms/send-blk']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API Key'=>'{api_key}']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('sleengshort')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>115, 'name'=>'MTN', 'description'=>get_gateway_description('mtn'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.mtn.com/v2m/messages/sms/outbound']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['API Key'=>'{api_key}','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('mtn')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>116, 'name'=>'Mobile text alerts', 'description'=>get_gateway_description('mobile_text_alerts'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.mobile-text-alerts.com/v3/send']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Content-Type'=>'application/json','charset'=>'utf-8.']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('mobile_text_alerts')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>117, 'name'=>'Msegat', 'description'=>get_gateway_description('msegat'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://www.msegat.com/gw/sendsms.php']), // {} means replace 'message_key'=>'sms', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>'', 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['username'=>'{username}','apiKey '=>'{api_key}']), 'inputs'=>json_encode(servers_fields('msegat')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>118, 'name'=>'Labs mobile', 'description'=>get_gateway_description('labsmobile'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.labsmobile.com/json/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({username}:{token})]','Cache-Control'=>'no-cache','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('labsmobile')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>119, 'name'=>'SMS live247', 'description'=>get_gateway_description('smslive247'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.smslive247.com/api/v4/sms']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_key}','Accept'=>'application/json','Content-Type'=>'application/*+json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smslive247')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>120, 'name'=>'Link mobility', 'description'=>get_gateway_description('linkmobility'), 'weblink'=>json_encode(['method'=>'post','url'=>'{url}']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {access_token}','Accept'=>'application/json','Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('linkmobility')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>121, 'name'=>'SMS country', 'description'=>get_gateway_description('smscountry'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://restapi.smscountry.com/v0.1/Accounts/authKey/SMSes/']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({authKey}:{authToken})]','Accept'=>'application/json','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smscountry')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>122, 'name'=>'Textbee', 'description'=>get_gateway_description('textbee'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.textbee.dev/api/v1/gateway/devices/{device_id}/sendSMS']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api key'=>'api_key']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('textbee')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>123, 'name'=>'800', 'description'=>get_gateway_description('eight_hundred'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.800.com/v1/messages']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Accept'=>'application/json','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('eight_hundred')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>124, 'name'=>'Ultramsg', 'description'=>get_gateway_description('ultramsg'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.ultramsg.com/{instance_id}/messages/chat']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Content-Type'=>'application/x-www-form-urlencoded']), //[] means execute 'others'=>json_encode(['api token'=>'{api_token}']), 'inputs'=>json_encode(servers_fields('ultramsg')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>125, 'name'=>'Affiliate SMS', 'description'=>get_gateway_description('affiliate_sms'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.affiliate-sms.com/rest/sms/create']), // {} means replace 'message_key'=>'messages', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api key'=>'{api_key}','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('affiliate_sms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>126, 'name'=>'Smsedge', 'description'=>get_gateway_description('smsedge'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.smsedge.com/v1/sms/send-single/']), // {} means replace 'message_key'=>'messages', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['accept'=>'application/json']), //[] means execute 'others'=>json_encode(['api key'=>'{api_key}']), 'inputs'=>json_encode(servers_fields('smsedge')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>127, 'name'=>'Enablex', 'description'=>get_gateway_description('enablex'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.enablex.io/sms/v1/messages/']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({app_id}:{app_key})]','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('enablex')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>128, 'name'=>'Bulk Bongatech', 'description'=>get_gateway_description('bulk_bongatech'), 'weblink'=>json_encode(['method'=>'post','url'=>'{url}/api/v1/send-sms']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('bulk_bongatech')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>129, 'name'=>'Easysms', 'description'=>get_gateway_description('easysms'), 'weblink'=>json_encode(['method'=>'post','url'=>'{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('easysms')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>130, 'name'=>'Whatsender', 'description'=>get_gateway_description('whatsender'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.whatsender.io/v1/messages']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'To', 'from_mobile_key'=>'From', 'mms_mobile_key'=>null, 'headers'=>json_encode(['api token'=>'{api_token}','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('whatsender')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>131, 'name'=>'Camoo', 'description'=>get_gateway_description('camoo'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.camoo.cm/v1/sms.json']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['api key'=>'{api_key}','api secret'=>'{api_secret}']), 'inputs'=>json_encode(servers_fields('camoo')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>132, 'name'=>'Bulkgate', 'description'=>get_gateway_description('bulkgate'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://portal.bulkgate.com/api/1.0/simple/transactional']), // {} means replace 'message_key'=>'text', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Cache-Control' => 'no-cache','Accept' => 'application/json','Content-Type'=>'application/json']), //[] means execute 'others'=>json_encode(['application id'=>'{application_id}','application token'=>'{application_token}']), 'inputs'=>json_encode(servers_fields('bulkgate')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>133, 'name'=>'Sendpulse', 'description'=>get_gateway_description('sendpulse'), 'weblink'=>json_encode(['method'=>'post','url'=>'https://api.sendpulse.com/sms/send']), // {} means replace 'message_key'=>'body', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode([]), //[] means execute 'others'=>json_encode(['application id'=>'{application_id}','application token'=>'{application_token}']), 'inputs'=>json_encode(servers_fields('sendpulse')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>134, 'name' => 'Mailjet', 'description' => get_gateway_description('mailjet'), 'weblink' => json_encode(['method' => 'post', 'url' => 'https://api.mailjet.com/v3.1/send']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'numbers', 'from_mobile_key' => 'sender', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['APIKEY PUBLIC'=>'{api_key_public}','APIKEY PRIVATE'=>'{api_key_private}',]), 'inputs' => json_encode(servers_fields('mailjet' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>135, 'name' => 'Send Ozonedesk', 'description' => get_gateway_description('send_ozonedesk'), 'weblink' => json_encode(['method' => 'post', 'url' => 'http://send.ozonedesk.com/api/v2/send.php']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['user_id'=>'{user_id}','api_key'=>'{api_key}',]), 'inputs' => json_encode(servers_fields('send_ozonedesk' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>136, 'name' => 'Smsportal Hostpinnacle', 'description' => get_gateway_description('smsportal_hostpinnacle'), 'weblink' => json_encode(['method' => 'post', 'url' => '{url}']), // {} means replace 'message_key' => 'message', 'to_mobile_key' => 'to', 'from_mobile_key' => 'from', 'mms_mobile_key' => null, 'headers' => json_encode([]), //[] means execute 'others' => json_encode(['Username'=>'{username}','Password'=>'{password}',]), 'inputs' => json_encode(servers_fields('smsportal_hostpinnacle' )), 'created_at' => now(), 'updated_at' => now() ], [ 'id'=>137, 'name'=>'Qoolize', 'description'=>get_gateway_description('qoolize'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://panel.qoolize.com/api/v3/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_token}','Accept' => 'application/json','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('qoolize')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>138, 'name'=>'Airtel', 'description'=>get_gateway_description('airtel'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.airtel.africa/sms/send']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Basic [base64_encode({api_key}:{api_secret})]','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('airtel')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>139, 'name'=>'Smsapi', 'description'=>get_gateway_description('smsapi'), 'weblink'=>json_encode(['method'=>'post','url' => 'https://api.smsapi.com/sms.do']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {access_token}']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('smsapi')), 'created_at'=>now(), 'updated_at'=>now() ], [ 'id'=>140, 'name'=>'Didww', 'description'=>get_gateway_description('didww'), 'weblink'=>json_encode(['method'=>'post','url' => '{url}']), // {} means replace 'message_key'=>'message', 'to_mobile_key'=>'to', 'from_mobile_key'=>'from', 'mms_mobile_key'=>null, 'headers'=>json_encode(['Authorization'=>'Bearer {api_key}','Content-Type' => 'application/json']), //[] means execute 'others'=>json_encode([]), 'inputs'=>json_encode(servers_fields('didww')), 'created_at'=>now(), 'updated_at'=>now() ], ]; GatewayPrefill::insert($data); } }
// http://api.smsala.com/api/SendSMS?api_id=api_id&api_password=api_password&sms_type=P&encoding&sender_id=sender_id& // phonenumber=phonenumber&textmessage=textmessage
|