Skip to content

Instantly share code, notes, and snippets.

@nanasess
nanasess / gist:5804529
Created June 18, 2013 11:12
Synergy!360 API の PHP サンプル
<?php
$client_id = 'your client id here';
$table_id = 'database1';
$api_key = 'your api id here';
// 登録API
$url = sprintf('https://api.synergy360.jp/%s/api/v1/tables/%s/records', $client_id, $table_id);
$arrParams['api_key'] = $api_key;
$arrParams['record']['short_text8'] = "aaa";
$arrParams['record']['short_text9'] = "bbb";