rawswift / jotform-api-php-client
JotForm API Client Library for PHP
dev-master
2017-06-19 13:16 UTC
Requires
- php: >=5.4
- guzzlehttp/guzzle: ~6.2
Requires (Dev)
- phpunit/phpunit: ~4
This package is not auto-updated.
Last update: 2025-05-10 22:28:26 UTC
README
Description
A simple JotForm API library for PHP.
Requirements
Installation
The recommended way to install jotform-api-php-client is through Composer.
curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install jotform-api-php-client library:
php composer.phar require rawswift/jotform-api-php-client:dev-master
After installing, simply include the Composer's autoloader (inside your script):
require 'vendor/autoload.php';
Examples
A simple example to get user's information:
<?php require 'vendor/autoload.php'; $key = 'your-jotform-api-key-here'; $client = new JotForm\JotFormClient(); $client->setAPIKey($key); $user = new JotForm\Resource\User($client); try { $info = $user->getUser(); print_r($info); } catch (\JotForm\Exception\ClientException $e) { echo $e->getMessage() . "\n"; }
Here's another example for creating a form:
<?php require 'vendor/autoload.php'; $key = 'your-jotform-api-key-here'; $client = new JotForm\JotFormClient(); $client->setAPIKey($key); $form = new JotForm\Resource\Form($client); try { $myForm = [ 'questions' => [ [ 'type' => 'control_head', 'text' => 'Form Title', 'order' => 1, 'name' => 'Header' ], [ 'type' => 'control_textbox', 'text' => 'Text Box Title', 'order' => 2, 'name' => 'TextBox', 'validation' => 'None', 'required' => 'No', 'readonly' => 'No', 'size' => 30, 'labelAlign' => 'Auto', 'hint' => 'Hint: Lorem Ipsum' ], ], 'properties' => [ 'title' => 'My Form', 'height' => 600 ], 'emails' => [ 'type' => 'notification', 'name' => 'notification', 'from' => 'default', 'to' => 'noreply@mywebsite.com', 'subject' => 'New Submission', 'html' => 'false' ] ]; $response = $form->createForm($myForm); print_r($response); } catch (\JotForm\Exception\ClientException $e) { echo $e->getMessage() . "\n"; }
See examples folder for more sample scripts.
License
Licensed under the MIT license