使用Domino Data Service获取与会者/参与者详细信息

时间:2015-04-13 09:26:57

标签: lotus-domino lotus

我正在尝试将我的应用程序与Domino 9.0.1 REST服务集成。无论如何,我可以通过Domino Data Service获取与会者的会议信息/详细信息.http:// {host} /Conf.nsf/api/数据/文档/ UNID / {UID}

1 个答案:

答案 0 :(得分:0)

在我的测试中,与会者在数据部分中有三个不同的项目。

  

RequiredAttendees,AltRequiredNames和INetRequiredNames

{
    "@href":"\/xxx.nsf\/api\/data\/documents\/unid\/xxxxx",
    "@unid":"xxxxx",
    "@noteid":"xxxxx",
    "@parentid":"xxxxxx",
    "@created":"2015-04-01T00:58:42Z",
    "@modified":"2015-04-01T19:01:09Z",
    "@authors":
    ["CN=xxxx\/O=org","CN=xxxx\/\/O=org","CN=server\/O=org"
    ],
    "@form":"Appointment",
    "CalendarDateTime":
    ["2015-04-08T15:00:00Z","2015-04-15T15:00:00Z","2015-04-22T15:00:00Z","2015-04-29T15:00:00Z","2015-05-06T15:00:00Z","2015-05-13T15:00:00Z"
    ],
    "STARTDATETIME":
    ["2015-04-08T15:00:00Z","2015-04-15T15:00:00Z","2015-04-22T15:00:00Z","2015-04-29T15:00:00Z","2015-05-06T15:00:00Z","2015-05-13T15:00:00Z"
    ],
    "EndDateTime":
    ["2015-04-08T15:30:00Z","2015-04-15T15:30:00Z","2015-04-22T15:30:00Z","2015-04-29T15:30:00Z","2015-05-06T15:30:00Z","2015-05-13T15:30:00Z"
    ],
    "StartTimeZone":"Z=8$DO=1$DL=3 2 1 11 1 1$ZX=69$ZN=Pacific",
    "EndTimeZone":"Z=8$DO=1$DL=3 2 1 11 1 1$ZX=69$ZN=Pacific",
    "RequiredAttendees":
    ["Attendee1\/org@domain","Attendee2\/org@domain","Attendee3\/org@domain","Attendee4\/org@domain"
    ],
    "AltRequiredNames":
    ["Attendee1\/org@domain","Attendee2\/org@domain","Attendee3\/org@domain","Attendee4\/org@domain"
    ],
    "INetRequiredNames":
    ["attendee1@org.com","attendee2@org.com","attendee3@org.com","attendee4@org.com"
    ],
    "ApptUNID":"xxxx",
    "AppointmentType":"3",
    "lotsmore":"removed ......."
}
相关问题