Converter Code [closed]

-3

Personal opa.

I need to complete a simple project at baseline.

get the data from a form, send it to a bank. (man this is the simplest thing) yes I know. however, we use a control platform called INTERCOM and need to do the following.

Get the data from the filled form, and persist it in their bank. but it's a bit complicated this DB and it's in RUBY's examples of them. how can I do this in PHP?

- > Here are the documentation on how to do this. link

    
asked by anonymous 03.08.2016 / 18:16

1 answer

4

Take a look at their repository at Github , has the documentation from API to PHP . To register a new User :

require "vendor/autoload.php";
use Intercom\IntercomClient;

$client = new IntercomClient(appId, apiKey);

$client->users->create([
  "email" => "[email protected]"
]);
    
03.08.2016 / 18:35