PHP code example of tkc49 / kintone-sdk-for-wordpress

1. Go to this page and download the library: Download tkc49/kintone-sdk-for-wordpress library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

tkc49 / kintone-sdk-for-wordpress example snippets



// Autoload
(
    'domain' => 'xxx.cybozu.com/',
    'token' => 'your-token',
    'basic_auth_user' => '',
    'basic_auth_pass' => '',
    'app' => 'your-app-id',
);

$data = array(
    'field_code' => array(
        'value' => 'your-value'
    ),
    'field_code' => array(
        'value' => 'your-value'
    ),
    'field_code' => array(
        'value' => 'your-value'
    ),
);
new tkc49\Kintone_SDK_For_WordPress\Kintone_API::post( $kintone, $data );