リクエストボディ
以下のJSONフォーマットでCloudGearからCloudGearアプリケーションにHTTPリクエストが送信されます。
event="profile", type="update"
{ "event": "profile", "type": "update", "data": { "profiles":[{ "type": "UPDATE", // プロビジョニングタイプ "userinfo": { "sub": "user1@unirita.co.jp", // UID "name": "ユニリタ太郎", // 名前 "given_name": "太郎", // 名 "family_name": "ユニリタ", // 姓 "preferred_username": "user1@unirita.co.jp", // UID "email": "user1@unirita.co.jp", // メールアドレス "image_url": { // プロフィール画像のパーマネントURL 100: "https://domain/100/uuid", 300: "https://domain/300/uuid", 500: "https://domain/500/uuid" }, "square_id": "", "user_attrs": [{ // ユーザー属性 "id": 1, "name": "attribute_key", // 属性名 "value": "attribute_value", // 属性値 "square_id": "1234567890" // 属性が紐づくスクエアID(スクエアに紐づいていない場合"global"と表示) }...{}], "service_roles": [], "subscription_roles": [] } }...{}] } }