/example-lazygateway

This is a repository of Example Rest API and Webhook for Lazy Gateway / Walix 3.0

Primary LanguagePHP

LAZY GATEWAY - WALIX 3.x

- REST API AND WEBHOOK -

# GIT CLONE :

git clone https://github.com/ilsyaa/example-lazygateway.git

# Example Body Array PHP


PHP Example Send Text :

$body = array(
    "api_key" => "xxxxxxxxxxxx",
    "receiver" => "6285xxx",
    "data" => array("message" => "Hello World")
);

PHP Example Send Image :

$body = array(
    "api_key" => "b97b74f802c2802b94358267c160bbd282f5c384",
    "receiver" => "6285xxx",
    "data" => array(
        "url" => "https://i.ibb.co/QbmsBqs/code.png",
        "media_type" => "image",
        "caption" => "Hello World"
    )
);

By :