eventGroupListResponse element

Type: eventGroupListResponse
Namespace: (default namespace)
XML Schema: ns0.xsd

Event group list response

Example XML

<?xml version="1.0" encoding="UTF-8"?> <eventGroupListResponse> <pagination> <startIndex>...</startIndex> <count>...</count> <totalResults>...</totalResults> </pagination> <searchQuery> <modifiedSince>...</modifiedSince> <title>...</title> <searchPagination> <startIndex>...</startIndex> <count>...</count> </searchPagination> </searchQuery> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <eventGroup> <sowprogId> <id>...</id> <UUID>...</UUID> <version>...</version> <creationDate>...</creationDate> <modificationDate>...</modificationDate> </sowprogId> <link> <href>...</href> <method>...</method> <rel>...</rel> </link> <link> <!--...--> </link> <!--...more "link" elements...--> <startDate>...</startDate> <endDate>...</endDate> <title>...</title> </eventGroup> <eventGroup> <!--...--> </eventGroup> <!--...more "eventGroup" elements...--> </eventGroupListResponse>

Example JSON

{ "pagination" : { "startIndex" : ..., "count" : ..., "totalResults" : ... }, "searchQuery" : { "modifiedSince" : ..., "title" : "...", "searchPagination" : { "startIndex" : ..., "count" : ... } }, "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "eventGroup" : [ { "link" : [ { "href" : "...", "method" : "GET", "rel" : "self" }, ... ], "startDate" : "...", "endDate" : "...", "title" : "...", "sowprogId" : { "id" : "...", "UUID" : "...", "version" : ..., "creationDate" : ..., "modificationDate" : ... } }, ... ] }