アカウント連携の使い方
アカウント連携
はじめに
アカウント連携APIは管理している任意の予約ページに自社サービスのユーザーの名前とメールアドレスを編集不可能項目として表示することができる機能です。
組み込みサンプルコード
アカウント連携は、HTTP POSTメソッドで指定されたURLをリクエストします。
URLのパラメータにteamIdとeventTypeIdを含める必要があります。
URLはダッシュボードの予約ページ編集画面から取得する事ができます。
https://www.jicoo.com/dashboard
予約ページ編集 > サービス連携 > アカウント連携 > 設定する
JavascriptでのPOST例
// 上記で取得したURL
const url = 'https://api.jicoo.com/v1/teams/xxxxxx/event_types/yyyyyy/validate';
const options = {
method: 'POST',
headers: {'Content-Type': 'application/json', Accept: 'application/json'},
body: '{"name":"yamada taro","email":"example@example.com"}'
};
const response = await fetch(url, options);
const { data } = await response.json();
// 予約ページに遷移
window.location.href = data.url;
動作イメージ
詳細なAPIのドキュメントはこちらです。
Account Integration
Last modified: a year ago