Kintone・Garoonを始めて、約3か月の初心者です。
Kintoneに入力した内容を基に、Garoonへスケジュール登録をしようとしておりますが、xmlを送信した際にエラーとなり、登録ができません。
エラー内容は以下の通りです。
<diagnosis>リクエストパラメータが不足しています。</diagnosis>
<cause>"id"パラメータが必要です。</cause>
idとなっているところは恐らくユーザーIDと思われますが、それはUtilGetLoginUserIdで取得し、xmlに引き渡しております。
以下に、エラーとなったxmlの内容を転記いたします。
不足しているパラメータとは何なのか、教えていただけないでしょうか。
宜しくお願い致します。
<?xml version=“1.0” encoding=“UTF-8”?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV=“http://www.w3.org/2003/05/soap-envelope” xmlns:xsd=“http://www.w3.org/2001/XMLSchema” xmlns:xsi=“http://www.w3.org/2001/XMLSchema-instance” xmlns:SOAP-ENC=“http://schemas.xmlsoap.org/soap/encoding/” xmlns:schedule_services=“http://wsdl.cybozu.co.jp/schedule/2008”>
<SOAP-ENV:Header>
<Action SOAP-ENV:mustUnderstand=“1” xmlns=“http://schemas.xmlsoap.org/ws/2003/03/addressing">ScheduleAddEvents</Action>
<Security xmlns:wsu=“http://schemas.xmlsoap.org/ws/2002/07/utility” SOAP-ENV:mustUnderstand=“1” xmlns=“http://schemas.xmlsoap.org/ws/2002/12/secext”>
<UsernameToken>
<Username>
</Username>
<Password>
</Password>
</UsernameToken>
</Security>
<Timestamp SOAP-ENV:mustUnderstand=“1” Id=“id” xmlns=“http://schemas.xmlsoap.org/ws/2002/07/utility”>
<Created>2037-08-12T14:45:00Z</Created>
<Expires>2037-08-12T14:45:00Z</Expires>
</Timestamp>
<Locale>jp</Locale>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<ScheduleAddEvents>
<parameters>
<request_token>***********************</request_token>
<schedule_event
xmlns=”"
event_type=“REGULAR”
public_type=“public”
detail=“test”
timezone=“Asia/Tokyo”
end_timezone=“Asia/Tokyo”
allday=“false” >
<members>
<member>
<user id=“8” order=“0”></user>
</member>
</members>
<when>
<datetime start=“2018-10-15T10:30+09:00” end=“2018-10-15T17:30+09:00”></datetime>
</when>
</schedule_event>
</parameters>
</ScheduleAddEvents>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>