GetQuery

Initial Build

2006.02

xWEB

Web Method

Response Type

XML Node

Caution! This documentation applies to NetForum Enterprise xWeb. This documentation does not apply to the NetForum Pro xWeb solution which also has a GetQuery web method. If you are developing an integration for Pro, then you must refer to the xWeb documentation for Pro.

The GetQuery web method is a versatile tool for retrieving information from a netFORUM Enterprise database. Virtually any xWeb integration will use GetQuery to pull information about customers, events, or any other area of netFORUM Enterprise edition. Essentially a web service version of the Query Tool in iWeb, GetQuery enables you to pull data from any table in NetForum Enterprise your account is authorized to select from.

This method should not be used with the NetForum Pro edition. The method is in the process of being deprecated for that solution.

GetQuery allows you to specify the Object name (via the szObjectName parameter), which selects the "main" Table you are querying. Next, you select the columns to be returned, the conditions that must be applied, and the order of the records being returned while hiding the exact table names and foreign keys necessary to create the SQL query. This is accomplished by using the NetForum object model and List Table setup in iweb to control how tables should be joined to retrieve specific information.

List Tables are used throughout the NetForum to control what information is displayed in List Results. A table list consists of the main table and then an optional number of additional table joins to related tables. The tables joins are controlled by specifying the overall sequence used to add the tables, whether a tables uses an inner join or a left join, any join conditions, and a table alias if one is necessary.

Although GetQuery simplifies data extraction by "flattening" relational tables and linking the normalized tables together, the integrator will still need to have some idea of which tables and columns to query.

Beginning in 2007.01, the GetQueryDefinition web method can be used as a documentation/reference to get more information and a "data dictionary" about the list table setup.

Parameters

  • szObjectName (string). The name of the netFORUM Object. See xWeb:GetFacadeObjectList web method for a list of all NetForum objects. Based on the Object chosen, different tables are enabled for selecting. See xWeb:GetFacadeObjectList#Object_Name for more direction on this parameter.
  • szColumnList (string). The list of Columns to return.
  • szWhereClause (string). The WHERE clause, if any. Do not include the actual word where.

You may need to include the From Table alias for columns if you get the following error: Object Reference Not Set to a Reference of an Object.

Example:

Wrong:

<m:szColumnList>cmc_cmt_key, cmc_start_date, cmc_end_date, cmc_status, eml_address </m:szColumnList>
   

Corrected by adding table alias:

<m:szColumnList>mb_committee_x_customer.cmc_cmt_key, 
mb_committee_x_customer.cmc_start_date, mb_committee_x_customer.cmc_end_date,
mb_committee_x_customer.cmc_status, eml_address </m:szColumnList>
   

The szWhere clause can contain complex conditions such as calling a UDF:

<ns:GetQuery>
<ns:szObjectName>Individual</ns:szObjectName>
<ns:szColumnList>a,b,c,d</ns:szColumnList>
<ns:szWhereClause>dbo.fn_client_xyz_is_individual_qualified(ind_cst_key)=0</ns:szWhereClause>
<ns:szOrderBy></ns:szOrderBy>
</ns:GetQuery>
   

Another example of a complex condition using GETDATE() in the szWhere:

<ns:GetQuery>
<ns:szObjectName>MailingList</ns:szObjectName>
<ns:szColumnList>mls_key,mls_name,mls_desc,mls_type_code,mls_show_online, </ns:szColumnList>
<ns:szWhereClause>mls_delete_flag=0 AND getdate() between mls_start_date and mls_end_date</ns:szWhereClause>
<ns:szOrderBy>mls_type_code, mls_name</ns:szOrderBy>
</ns:GetQuery>
   
  • szOrderBy (string). Sort Order

The manner in which the from clause is created is based on the table's list for the table that the object is based on. If additional tables are necessary they should be added by a netFORUM administrator to the List Tables setup.

Response

XML Node.

Performance

The GetQuery web method is the most used--and misused--web method in xWeb. Please see main article for performance tips to ensure your application is fast and uses GetQuery effectively and efficiently.

Record Count Limit

If you are wondering why your xWeb GetQuery calls seems to cap the number of records returned, then read this.

The number of records returned by the GetQuery webmethod is constrained by the value of the global System Option called DataGridRowLimit. This setting is set by the site's system administrator.

However, if the optional xWeb configuration setting for xwebRecordReturn is entered in /xweb/web.config, then that value overrides DataGridRowLimit. This configuration setting first appeared in the 2006.02 build; it can be higher or lower than the value of DataGridRowLimit, or the setting does not have to exist at all if DataRowGridLimit is an acceptable limit. This setting is set by the site's system administrator.

If you always want to return all records (regardless of the two settings described above), then issue the TOP -1 command with the szObjectName parameter. For example, in the szObjectName parameter used for the Individual object, then you could pass "Individual @TOP -1" where the "-1" parameter returns all records for the szColumnList - note: specific, named fields must be passed as parameter in the szColumnList variable in order to process using the "-1" parameter. For example:

To get all records:

            
                <ns:szObjectName>
            Individual @TOP -1</ns:szObjectName>
   

To get only the first 5,000 records:

<ns:szObjectName>Individual @TOP 5000</ns:szObjectName>
   

The @TOP feature was added in the 2006.01 build. Summary:

@TOP -1 OVERRIDES xwebRecordReturn WHICH OVERRIDES DataGridRowLimit

Case Study GetQuery Web Method Calls

Given that GetQuery can be used in so many ways, we are putting examples on their own case study pages.

Updates

Column Aliases

In 2007.01, GetQuery will allow for column name aliases.

In earlier versions, you could not alias a column in szColumnList. It is desirable to do so when you have aliased Tables, in order to distinguish between elements of the same name.

In earlier builds, this is not permitted and returns a fault:

<ns:szColumnList>[LastName] = ind_last_name, 
[Membership_mbr_expire_date] = Membership.mbr_expire_date,
[OrgMembership_mbr_expire_date] = OrgMembership.mbr_expire_date</ns:szColumnList>
   

Starting in 2007.01, this will result in this response:

<IndividualObject>
<ind_cst_key>96769941-0f6f-4466-8a19-c759da752a8e</ind_cst_key>
<lastname>Baghdatis</lastname>
<membership_mbr_expire_date>8/31/2008 12:00:00 AM</membership_mbr_expire_date>
<orgmembership_mbr_expire_date xsi:nil="true"/>
</IndividualObject>
   

Note that column names are converted to all lowercase.

Any sort of column manipulate is not allowed and will result in a fault, for example:

[FirstLetter] = LEFT(ind_last_name, 1)
   

Doing something like this will be ignored in the result:

[Name] = ind_first_name + ' ' + ind_last_name
   

2006.02

For 2006.02:

  • GetQuery() method returns the default column listing for the object's primary table if the empty string is passed in the szColumnList parameter - the primary key for the object will still be returned in the node as the first child, regardless if the default list of elements included the primary key or not.
  • the GetQuery() method can be passed an added value to the szObjectName parameter - if the requesting party requests the "Individual" object, then the szObjectName can be "Individual @TOP 5" and xWeb returns the top 5 records for the object.
  • the GetQuery() method can be passed an added value to the szObjectName parameter - for example, if the requesting party requests the "Individual" object, then the szObjectName can contain "Individual @META" where xWeb returns a portion of the Xml Schema for the elements requested in the szColumnList.

Troubleshooting

GetQuery Does Not Recognize Columns from GetFacadeXMLSchema

Issue: If you are running a GetQuery web method on a particular Object, and you are trying to include columns in the szColumnList that appear in the Object definition based on GetFacadeXMLSchema, and those columns are from related tables (not the primary table) in some cases you might run into a soap exception. This can happen if the column belongs to a table that is a Data Object of the main table's Object, but is not included as a From Table of the Object's primary table (by way of the obj_prefix property of the Object).

The GetQuery web method operates based on the List Table/From Table setup, not the Object/Data Object setup. Typically, any data objects will also wind up as List From Tables as well, but there might be a mismatch in some cases.

By contrast, the GetFacadeXMLSchema web method DOES look at the Data Object(s) and not the List Table setup. For example, if you see org_acronym in the GetFacadeXMLSchema response, then this is because the [co_organization] table is a Data Object for your Object. If you were to call the GetFacadeObject web method for a single instance of this Object, then you WOULD get back a value in org_acronym.

This may seem like an inconsistency, but there are reasons that List Table setup and Data Object setup are not 100% the same. See List Table vs Data Object for more.

Based on the example above, if you want to be able to pull org_acronym in a GetQuery call, then you will need to go to that Object's primary list table (by way of obj_prefix aligning with md_table.mdt_prefix) and add co_organization as a From Table. It is not necessary to add From Columns as well, all you need is the From Table.

To verify if this condition is affecting your GetQuery call, run this SQL in a SQL Query Analyzer, replacing the two lines referencing co_organization with the table name you are working with:

SELECT obj_name, *
FROM md_table_list_table
JOIN md_table_list_from ON lsf_lst_key = lst_key
JOIN md_table ON mdt_name = lst_mdt_name
JOIN md_object ON obj_prefix = mdt_prefix
WHERE lst_key NOT IN (SELECT lsf_lst_key FROM md_table_list_from WHERE lsf_from_table = 'co_organization' )
 
AND obj_name IN
(SELECT obj_name FROM md_object WHERE obj_key IN
(SELECT obd_obj_key FROM md_object_data
WHERE obd_table_name = 'co_organization'))
ORDER BY obj_name
   

If you see your Object in the results, then the solution described above will solve the problem.

GetQuery Does Not Recognize Columns from Data Objects

Q. I’m running GetQuery on the EventsRegistrant object. Fields such as evt_title, reg_ixo_key, ind_full_name_cp, and cst_name_cp work in GetQuery’s 2nd parameter, which is the column list to select. However, fields such as org_name, ixo_org_cst_key, org_cst_key, org_acronym, ixo_key give errors, even though they are listed on the fields list in the Form Designer of a form based on object EventsRegistrant. Do you know why these fields don’t work?

A. This question is essentially the same as GetQuery Does Not Recognize Columns from GetFacadeXMLSchema above.

The columns available in GetQuery are based on List Tables and not Data Objects (see List Table vs Data Object for more on the differences between the two). To return these additional columns, you'll need to run different GetQuery calls from other Objects, or in the Toolkit add more List Tables to the Object (but do so with caution), or try to accomplish what you need with xWeb:ExecuteMethod, which enables you to write a more direct SQL command to get the data you need.

How Can I Find out What the "From Tables" Are?

Q. Since the GetFacadeXMLSchema web method does not document the available From Tables that are available to met in GetQuery, then how can I know what tables and columns are available?

A. If xWeb is in build 2007.01 or later, run the GetQueryDefinition web method to get this information. Xweb Laboratory provides a GUI to get this information easily.

If xWeb is earlier than this build, then run this GetQuery web method to get a list of the tables that are available in GetQuery. You will of course need to change the Token value and enter the name of the table in the szWhereClause, which currently shows the example of ev_event_speaker:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>5665bfa6-721a-4b90-9996-60e2b3176032</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:GetQuery>
<ns:szObjectName>md_table_list_from</ns:szObjectName>
<ns:szColumnList>*</ns:szColumnList>
<ns:szWhereClause>lst_mdt_name = 'ev_event_speaker'</ns:szWhereClause>
<ns:szOrderBy>lsf_from_order</ns:szOrderBy>
</ns:GetQuery>
</soapenv:Body>
</soapenv:Envelope>
   

Here is a response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>03698914-f752-4eef-9d32-805c8aae88be</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<GetQueryResponse xmlns="http://www.avectra.com/2005/">
<GetQueryResult>
<md_table_list_fromObjects recordReturn="5" xsi:schemaLocation="http://www.avectra.com/2005/ md_table_list_from.xsd">
<md_table_list_fromObject>
<lsf_key>befc1e42-c2e4-45f1-ab09-b9cd958ab2f9</lsf_key>
<lsf_lst_key>936e6c9d-3002-4158-bef9-534ed10a5e22</lsf_lst_key>
<lsf_from_table>ev_event_speaker</lsf_from_table>
<lsf_from_order>0</lsf_from_order>
<lsf_from_join_type xsi:nil="true"/>
<lsf_from_join xsi:nil="true"/>
<lsf_from_alias xsi:nil="true"/>
<lsf_add_user>dmanning</lsf_add_user>
<lsf_add_date>8/14/2002 11:42:47 AM</lsf_add_date>
<lsf_change_user>dmanning</lsf_change_user>
<lsf_change_date>8/14/2002 12:49:19 PM</lsf_change_date>
<lsf_delete_flag>0</lsf_delete_flag>
<lsf_entity_key xsi:nil="true"/>
</md_table_list_fromObject>
<md_table_list_fromObject>
<lsf_key>65c802cb-f01b-4e41-b080-0b0b47758be7</lsf_key>
<lsf_lst_key>936e6c9d-3002-4158-bef9-534ed10a5e22</lsf_lst_key>
<lsf_from_table>ev_event_faculty</lsf_from_table>
<lsf_from_order>1</lsf_from_order>
<lsf_from_join_type>Join</lsf_from_join_type>
<lsf_from_join>spk_fac_key=fac_key</lsf_from_join>
<lsf_from_alias xsi:nil="true"/>
<lsf_add_user>dmanning</lsf_add_user>
<lsf_add_date>8/14/2002 12:49:10 PM</lsf_add_date>
<lsf_change_user>dmanning</lsf_change_user>
<lsf_change_date>8/14/2002 12:57:54 PM</lsf_change_date>
<lsf_delete_flag>0</lsf_delete_flag>
<lsf_entity_key xsi:nil="true"/>
</md_table_list_fromObject>
<md_table_list_fromObject>
<lsf_key>b76c29b9-f565-40f1-828f-dd6637406e96</lsf_key>
<lsf_lst_key>936e6c9d-3002-4158-bef9-534ed10a5e22</lsf_lst_key>
<lsf_from_table>co_customer</lsf_from_table>
<lsf_from_order>2</lsf_from_order>
<lsf_from_join_type>Join</lsf_from_join_type>
<lsf_from_join>fac_cst_key=cst_key</lsf_from_join>
<lsf_from_alias xsi:nil="true"/>
<lsf_add_user>dmanning</lsf_add_user>
<lsf_add_date>8/14/2002 12:50:14 PM</lsf_add_date>
<lsf_change_user xsi:nil="true"/>
<lsf_change_date xsi:nil="true"/>
<lsf_delete_flag>0</lsf_delete_flag>
<lsf_entity_key xsi:nil="true"/>
</md_table_list_fromObject>
<md_table_list_fromObject>
<lsf_key>acc9a5dd-e79d-4cdf-b064-2fda35485c0a</lsf_key>
<lsf_lst_key>936e6c9d-3002-4158-bef9-534ed10a5e22</lsf_lst_key>
<lsf_from_table>ev_event</lsf_from_table>
<lsf_from_order>30</lsf_from_order>
<lsf_from_join_type>Join</lsf_from_join_type>
<lsf_from_join>fac_evt_key=evt_key</lsf_from_join>
<lsf_from_alias xsi:nil="true"/>
<lsf_add_user>tj</lsf_add_user>
<lsf_add_date>11/10/2002 2:01:56 PM</lsf_add_date>
<lsf_change_user xsi:nil="true"/>
<lsf_change_date xsi:nil="true"/>
<lsf_delete_flag>0</lsf_delete_flag>
<lsf_entity_key xsi:nil="true"/>
</md_table_list_fromObject>
<md_table_list_fromObject>
<lsf_key>e92301fa-86f0-4c54-a81b-d53b945c99d7</lsf_key>
<lsf_lst_key>936e6c9d-3002-4158-bef9-534ed10a5e22</lsf_lst_key>
<lsf_from_table>ev_session</lsf_from_table>
<lsf_from_order>40</lsf_from_order>
<lsf_from_join_type>Left Join</lsf_from_join_type>
<lsf_from_join>fac_ses_key=ses_key</lsf_from_join>
<lsf_from_alias xsi:nil="true"/>
<lsf_add_user>tj</lsf_add_user>
<lsf_add_date>11/11/2002 10:16:31 AM</lsf_add_date>
<lsf_change_user>tj</lsf_change_user>
<lsf_change_date>11/11/2002 10:25:03 AM</lsf_change_date>
<lsf_delete_flag>0</lsf_delete_flag>
<lsf_entity_key xsi:nil="true"/>
</md_table_list_fromObject>
</md_table_list_fromObjects>
</GetQueryResult>
</GetQueryResponse>
</soap:Body>
</soap:Envelope>
   

To get the columns for a particular table, run this request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>69e62b34-99f1-49bf-9223-2a122b5aff2f</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:GetQuery>
<ns:szObjectName>Column</ns:szObjectName>
<ns:szColumnList>*</ns:szColumnList>
<ns:szWhereClause>mdc_mdt_name = 'ev_event_speaker'</ns:szWhereClause>
<ns:szOrderBy>mdc_sort_order</ns:szOrderBy>
</ns:GetQuery>
</soapenv:Body>
</soapenv:Envelope>
   
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>547a6a58-0d95-4edc-bab8-7a9c936accc5</Token>
</AuthorizationToken>
</soap:Header>
<soap:Body>
<GetQueryResponse xmlns="http://www.avectra.com/2005/">
<GetQueryResult>
<ColumnObjects recordReturn="13" xsi:schemaLocation="http://www.avectra.com/2005/ Column.xsd">
<ColumnObject>
<mdc_key>b2f8edc9-9eb9-44f9-a5b9-468f1a0bb7ec</mdc_key>
<mdc_name>spk_fac_key</mdc_name>
<mdc_mdt_name>ev_event_speaker</mdc_mdt_name>
<mdc_table_name>ev_event_speaker</mdc_table_name>
<mdc_description>Unique Key</mdc_description>
<mdc_list_header xsi:nil="true"/>
<mdc_sort_order>100</mdc_sort_order>
<mdc_control_class xsi:nil="true"/>
<mdc_input_mask xsi:nil="true"/>
<mdc_data_type>av_key</mdc_data_type>
<mdc_width>16</mdc_width>
<mdc_width_max>16</mdc_width_max>
<mdc_nullable>0</mdc_nullable>
<mdc_ext>0</mdc_ext>
<mdc_readonly>0</mdc_readonly>
<mdc_readonlyedit>0</mdc_readonlyedit>
<mdc_hidden>0</mdc_hidden>
<mdc_required>1</mdc_required>
<mdc_autopostback>0</mdc_autopostback>
<mdc_has_lookup>0</mdc_has_lookup>
<mdc_not_editable>0</mdc_not_editable>
<mdc_change_log_flag>0</mdc_change_log_flag>
<mdc_value_from xsi:nil="true"/>
<mdc_value_column xsi:nil="true"/>
<mdc_value_text_column xsi:nil="true"/>
<mdc_value_where xsi:nil="true"/>
<mdc_value_where_add xsi:nil="true"/>
<mdc_value_orderby xsi:nil="true"/>
<mdc_default_value xsi:nil="true"/>
<mdc_validation_class xsi:nil="true"/>
<mdc_report_header1 xsi:nil="true"/>
<mdc_report_header2 xsi:nil="true"/>
<mdc_add_user>XMEN\dmanning</mdc_add_user>
<mdc_add_date>8/9/2002 5:11:03 PM</mdc_add_date>
<mdc_change_user xsi:nil="true"/>
<mdc_change_date xsi:nil="true"/>
<mdc_delete_flag>0</mdc_delete_flag>
<mdc_entity_key xsi:nil="true"/>
<mdc_query_select_flag>1</mdc_query_select_flag>
</ColumnObject>
<ColumnObject>
<mdc_key>af87919f-76f8-4bb2-9588-b15bf2735690</mdc_key>
<mdc_name>spk_spt_key</mdc_name>
<mdc_mdt_name>ev_event_speaker</mdc_mdt_name>
<mdc_table_name>ev_event_speaker</mdc_table_name>
<mdc_description>speaker type</mdc_description>
<mdc_list_header xsi:nil="true"/>
<mdc_sort_order>200</mdc_sort_order>
<mdc_control_class>DropDownList</mdc_control_class>
<mdc_input_mask xsi:nil="true"/>
<mdc_data_type>av_key</mdc_data_type>
<mdc_width>16</mdc_width>
<mdc_width_max>16</mdc_width_max>
<mdc_nullable>1</mdc_nullable>
<mdc_ext>0</mdc_ext>
<mdc_readonly>0</mdc_readonly>
<mdc_readonlyedit>0</mdc_readonlyedit>
<mdc_hidden>0</mdc_hidden>
<mdc_required>0</mdc_required>
<mdc_autopostback>0</mdc_autopostback>
<mdc_has_lookup>0</mdc_has_lookup>
<mdc_not_editable>0</mdc_not_editable>
<mdc_change_log_flag>0</mdc_change_log_flag>
<mdc_value_from>ev_event_speaker_type</mdc_value_from>
<mdc_value_column>spt_key</mdc_value_column>
<mdc_value_text_column>spt_code</mdc_value_text_column>
<mdc_value_where>spt_delete_flag = 0</mdc_value_where>
<mdc_value_where_add xsi:nil="true"/>
<mdc_value_orderby>spt_code</mdc_value_orderby>
<mdc_default_value xsi:nil="true"/>
<mdc_validation_class xsi:nil="true"/>
<mdc_report_header1 xsi:nil="true"/>
<mdc_report_header2 xsi:nil="true"/>
<mdc_add_user>XMEN\dmanning</mdc_add_user>
<mdc_add_date>8/9/2002 5:11:03 PM</mdc_add_date>
<mdc_change_user>dmanning</mdc_change_user>
<mdc_change_date>8/14/2002 1:17:22 PM</mdc_change_date>
<mdc_delete_flag>0</mdc_delete_flag>
<mdc_entity_key xsi:nil="true"/>
<mdc_query_select_flag>1</mdc_query_select_flag>
</ColumnObject>
</GetQueryResult>
</GetQueryResponse>
</soap:Body>
</soap:Envelope>
   

Working with Massive Data

xWeb is generally not the best vehicle to exchange massive amounts of data. xWeb is built toward working with smaller sets of data quickly and efficiently. Moving massive amounts of data over http will slow down servers and impact users and should be avoided. If you are doing a one-time import, that may be acceptable when planned in advance, but if this is necessary on a routine basis, a different solution may be called for.

That being said, if this is necessary for a one-time import, you might need to run a series of smaller queries to avoid possible timeouts when moving large numbers (10,000+, but YMMV depending on environmental variables).

Here is one possible approach:

Add the column cst_recno to the query columns (this is what you will loop on).
Change query to maybe SELECT TOP 1000 ... WHERE cst_recno > "startrecno"Create a looping mechanism to call the xweb query.
START LOOP (while rows returned > 0
  Set looping param "startrecno" = 0
  Run GetQuery
  Place the max(cst_recno) into "startrecno"  Process through GetQuery results and do what you need to do
LOOP
   

Here is a simplified pseudo-code version that can help you process through a large set of customers. You will see that you keeep calling GetQuery until you no longer get any records:

            string szColList = "cst_key, cst_recno, cst_sort_name_dn";string szObject = "Individual";string szWhere = "";string szOrderBy = "cst_recno"; int iHighestCstRecno = 0;array a; /// array to contain results from web method while(true){  // where clause - get any records with cst_recno > than the  // highest one that you could process in the previous loop iteration  szWhere = "cst_recno > " iHighestCstRecno.ToString();   a = this.CallGetQuery(szObject, szColList, szWhere, szOrderBy);  if a.count == 0  {    // no more records left, therefore break out    break;  }  // process through records in array...  for(int i = 0; i < a.Count; i++)  {    // process each record...    this.DoSomething( a[i, 0] , a[i, 1] , a[i, 2] );    // set variable's value with "cst_recno" which is in the [i, 1] array element    iHighestCstRecno = a[i, 1];  }} public array CallGetQuery(string szObject, string szColList, string szWhere, string szOrderBy){  // call xWeb's GetQuery web method with these values...}

This is just a way to write a looping procedure to keep calling GetQuery, in smaller chunks, until you get to the end of the data. This "work around" is actually a better way since you run less risk of timing out with trying to get a massive number records over the web service. Instead, churn through a smaller set, one set at a time.

If you want to ensure that you get all 5,000 records before you process any data, then store the results in memory (array or XML or however is appropriate) until you get through all your web method calls records, and then process your records.

Duplicate Records

Q. GetQuery seems to return duplicate records. I cannot figure out why. Help!

A. Remember that GetQuery is generated based on the List Table setup. It is possible that the combination of from tables and their join expressions could be causing inadvertent duplicates. Until 2007.01, it is not possible to add a distinct statement to GetQuery, so you will need to ensure that the List Table setup is not causing this. Take care in "fixing" this condition, because the "fix" might have a side effect with Queries on those tables and other related areas. Take great care in making any changes.

Invalid query error

Q. When I call GetQuery, I get this error:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Body>
<soap:Fault>
<faultcode>detail</faultcode>
<faultstring>An error occured ---> Invalid query.</faultstring>
<detail/>
</soap:Fault>
</soap:Body>
</soap:Envelope>
   

A. If the szWhereClause contains any keywords such as:

  • select
  • insert
  • update
  • delete
  • exec
  • execute
  • _entity_key

then you will get this error. This is to prevent any dangerous SQL commands from firing. This means you will NOT be able to do a subselect, such as:

<ns:szWhereClause>cst_key in (select cmc_cst_key 
from mb_committee_x_customer where cmc_cmt_key = 'aalkjdsflajdfadfads'
</ns:szWhereClause>
   

Problems with Table Alias

NetForum List Tables can use a table alias if the same table is used more than once.

Before the 2007.01 build, GetQuery requires that the xWeb User (which is the user account that authenticates a program in the Authenticate web method) be a "super-user" in order to work with aliased tables. If the xWeb user is not a "super-user", then aliases will not work.

Here is an example of a GetQuery request that uses List From Table aliases with Membership, ChapterMembership and OrgMembership. These aliases are defined by the List Table From Table Alias, pictured on the right:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:ns="http://www.avectra.com/2005/">
<soapenv:Header>
<ns:AuthorizationToken>
<ns:Token>bb3dae56-cad8-4d11-b813-44114d0ec839</ns:Token>
</ns:AuthorizationToken>
</soapenv:Header>
<soapenv:Body>
<ns:GetQuery>
<ns:szObjectName>Individual</ns:szObjectName>
<ns:szColumnList>ind_first_name, Membership.mbr_expire_date, ChapterMembership.mbr_expire_date, OrgMembership.mbr_expire_date, OrgMembership.mbr_mbt_key</ns:szColumnList>
<ns:szWhereClause>cst_member_flag=1 and OrgMembership.mbr_mbt_key= '32C54456-7E1E-4C07-AB59-A7E66D11D9C9'</ns:szWhereClause>
<ns:szOrderBy>cst_sort_name_dn</ns:szOrderBy>
</ns:GetQuery>
</soapenv:Body>
</soapenv:Envelope>
   

Note that the result returns ambiguous element names. You will need to carefully parse the response to get back the correct columns:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing"
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soap:Header>
<AuthorizationToken xmlns="http://www.avectra.com/2005/">
<Token>bb3dae56-cad8-4d11-b813-44114d0ec839</Token>
</AuthorizationToken>
<wsa:Action>http://www.avectra.com/2005/GetQueryResponse</wsa:Action>
<wsa:MessageID>uuid:448f27ce-d5a3-42e1-bb53-68fa463114a0</wsa:MessageID>
<wsa:RelatesTo>uuid:59fa0476-0888-488f-b6b9-ab906fa57df3</wsa:RelatesTo>
<wsa:To>http://schemas.xmlsoap.org/ws/2004/03/addressing/role/anonymous</wsa:To>
<wsse:Security>
<wsu:Timestamp wsu:Id="Timestamp-56e8bbf8-74c0-4db1-ab96-7b3549ee7b05">
<wsu:Created>2007-09-13T14:22:00Z</wsu:Created>
<wsu:Expires>2007-09-13T14:27:00Z</wsu:Expires>
</wsu:Timestamp>
</wsse:Security>
</soap:Header>
<soap:Body>
<GetQueryResponse xmlns="http://www.avectra.com/2005/">
<GetQueryResult>
<IndividualObjects recordReturn="223" xsi:schemaLocation="http://www.avectra.com/2005/ Individual.xsd">
<IndividualObject>
<ind_cst_key>26222006-9005-46e6-b285-80189a96e927</ind_cst_key>
<ind_first_name>Sabry</ind_first_name>
<mbr_expire_date xsi:nil="true"/>
<mbr_expire_date xsi:nil="true"/>
<mbr_expire_date>12/31/2007 12:00:00 AM</mbr_expire_date>
<mbr_mbt_key>32c54456-7e1e-4c07-ab59-a7e66d11d9c9</mbr_mbt_key>
</IndividualObject>
<IndividualObject>
<ind_cst_key>2e4b25cb-8690-4f73-9c39-7bcf6ccf62ef</ind_cst_key>
<ind_first_name>Kirsten</ind_first_name>
<mbr_expire_date>10/31/2008 12:00:00 AM</mbr_expire_date>
<mbr_expire_date>12/31/2008 12:00:00 AM</mbr_expire_date>
<mbr_expire_date>12/31/2007 12:00:00 AM</mbr_expire_date>
<mbr_mbt_key>32c54456-7e1e-4c07-ab59-a7e66d11d9c9</mbr_mbt_key>
</IndividualObject>
<IndividualObject>
<ind_cst_key>2e4b25cb-8690-4f73-9c39-7bcf6ccf62ef</ind_cst_key>
<ind_first_name>Kirsten</ind_first_name>
<mbr_expire_date>10/31/2008 12:00:00 AM</mbr_expire_date>
<mbr_expire_date>1/31/2008 12:00:00 AM</mbr_expire_date>
<mbr_expire_date>12/31/2007 12:00:00 AM</mbr_expire_date>
<mbr_mbt_key>32c54456-7e1e-4c07-ab59-a7e66d11d9c9</mbr_mbt_key>
</IndividualObject>
</IndividualObjects>
</GetQueryResult>
</GetQueryResponse>
</soap:Body>
</soap:Envelope>
   

If the user is not a "super user" then GetQuery will not correctly resolve the columns with table aliases and method call will not work. See user for instructions on how to make the xWeb user be a "super user".

Beginning in 2007.01, the user will not need to be a "super user" to work with GetQuery table aliases.

Account is not authorized to perform Select

Main Article: XWeb User Object Security

If you get this error after running GetQuery:

Account is not authorized to perform Select on XXXXX object 

where XXXXX is the object name that you passed in the szObjectName parameter, it is because your xWeb User does not have the necessary security settings to select data on this object. In order to get that permission, the netFORUM system administrator must grant select permissions on that Object in the xWeb User Object Security section of netFORUM iWeb in the Admin module. See main article for more.

Also, make sure that the name of the object you are passing in the szObjectName is in fact a valid object name. See XWeb:GetFacadeObjectList#Object_Name for more direction on this.

Asterisk (*) is not a valid value for szColumnList

If you attempt to run a GetQuery and pass the asterisk as the parameter value for szColumnList then you will get this fault.

For example, this request will result in that fault message:

<ns1:GetQuery>
<ns1:szObjectName>Individual @TOP -1</ns1:szObjectName>
<ns1:szColumnList>*</ns1:szColumnList>
<ns1:szWhereClause>ind_cst_key='c4b8add9-1673-4d3c-bae4-7861329b4b10'</ns1:szWhereClause>
</ns1:GetQuery>
   

To resolve this issue, select only the columns you need in szColumnList. Note: the ability to pass * was removed in the 2010.01 release of netFORUM.

The WebService URL does not exist

When trying to connect on the login page, you might see this error, where the 999 number is the IP address of the xWeb URL:

[+] The WebService URL does not exist. System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 99.999.999.99:999

If you get this error when trying to connect, first make sure that the URL you enter is the netFORUM xWeb URL address followed by ?WSDL.

If you are entering the URL in this format and still getting the error, make sure that this URL is correct by entering it into a browser and making sure you see the WSDL.

If the WSDL does appear, and the netFORUM site is hosted by Avectra, and the URL is an IP address and not a DNS name, then make sure the IP address is the internal version of an IP address. Ask your Avectra contact to ensure you're working with the right IP.

GetQueryLab needs the internal verison of the IP address because of internal Avectra firewall issues.

For your actual integration, you should use the external address for the web service location which ultimately should be a DNS and not an IP address.

FAQ

Q. I'm trying to use the Get Query method to return some results. The query that I want to run involves multiple joins among tables. Is there any way I can do this using Get Query? I was unable to find an example joining tables.

A. The available tables in GetQuery (which you can view in xWeb Lab or GetQueryDefinition) cannot be altered by an integrator. A netFORUM site administrator can add additional table joins in the netFORUM Toolkit by adding more List Tables. Work with your netFORUM client to have this done.

If that's not an option, or if the joins are too complex, then consider developing a specialized web method using ExecuteMethod. This will require some custom development but there are some scenarios where this is the only practical solution. Again, check with your netFORUM client to have this done.

Q. Are all the columns available in GetQuery able to be used in xWeb:UpdateFacadeObject and xWeb:InsertFacadeObject? Do the GetQuery columns overlap with the controls in xWeb:GetFacadeXMLSchema?

A. Yes and no. There are differences. See List Table vs Data Object for an explanation.

Q. Let's say I want to get information about an Object through GetQuery, then update that Object with xWeb:UpdateFacadeObject. How can I know which GetQuery columns correspond to what controls in the object schema that I will pass back to UpdateFacadeObject?

A. Usually this will be straightforward, but not always. In development, run xWeb:GetFacadeObject for a particular Object to see all the data coming back. Then run GetQuery for the same specific Object and record. Observe which controls in GetFacadeObject align with which data elements in the GetQuery response. Then, in production, run GetQuery to get the data you want, but be sure to map this data back to the corresponding schema controls. Once again, there is usually 99% percent correlation between the two. The exceptions are certain schema elements in the more complicated Objects such as Individual that might have two data objects pointing to the same database table. The schema for the columns in these two tables will have different names to avoid ambiguity.

   

JSON Method

POST /xWeb/JSON/GetQuery

Copy
DATA: JSON
{
    "GetQuery" : {
        "szObjectName" : "Individual",
        "szColumnList" : "ind_cst_key, ind_full_name_cp, ind_add_date",
        "szWhereClause" : "ind_delete_flag=0",
        "szOrderBy" : "ind_add_date"
    }
}

 

Copy
SAMPLE RESULT
HTTP STATUS: 200
DATA: JSON
{
    "WildcardComplexType": {
        "IndividualObjects": {
            "@xsi:schemaLocation": "http://www.avectra.com/2005/ Individual.xsd",
            "@recordReturn": "200",
            "@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
            "@xmlns": "http://www.avectra.com/2005/",
            "IndividualObject": [
                {
                    "ind_cst_key": "180bed43-c4d1-4947-9108-008cd4973262",
                    "ind_full_name_cp": "Angela Ward",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "982eaa82-e4dc-4831-b9c9-017e19c25713",
                    "ind_full_name_cp": "Bethany Steele",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "0f7cd110-4570-4341-99f3-05af9eed5451",
                    "ind_full_name_cp": "Julia Jones",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "f8af2c57-5e7c-4ced-88e6-0718dfd4421d",
                    "ind_full_name_cp": "Ken Phillips",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4bd95591-80b6-4faf-bafe-0730c7fdac3c",
                    "ind_full_name_cp": "Nicole Price",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "44c781aa-b267-4ee1-b344-0a5132ae5c14",
                    "ind_full_name_cp": "Doris Graham",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "0c4e3ccf-f6a9-4ea9-8316-0fa027e2b1c0",
                    "ind_full_name_cp": "Lawrence Gross",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "945d6d5e-94d0-421c-815e-116bfe525ebc",
                    "ind_full_name_cp": "Jeff Gonzalez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "c8a6a8f9-e25c-4c56-855e-11cf6b577d99",
                    "ind_full_name_cp": "Rose Santiago",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "b91c3e9c-93fc-4f04-92d5-177b5f3e1dd4",
                    "ind_full_name_cp": "Lee Lynch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "1138cfaf-f064-42a8-8f94-180b59e9e3bd",
                    "ind_full_name_cp": "Billy Test",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "fdaff505-0653-4df5-8ff1-19426fe485cc",
                    "ind_full_name_cp": "Jack Reed",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "8ad5b47b-7919-4717-9453-198451a6023e",
                    "ind_full_name_cp": "Heather Alexander",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "356f3211-b62a-4f42-adae-1e9eff932856",
                    "ind_full_name_cp": "Howard Walker",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "489fde12-7fd9-4d00-9060-2222e94b1066",
                    "ind_full_name_cp": "Cynthia Taylor",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "e2ed233b-dc95-4433-8352-23a07f915b25",
                    "ind_full_name_cp": "Juan Williams",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "6c06969a-d821-4468-886b-2468148f25f9",
                    "ind_full_name_cp": "Maryann Collins",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "008148fa-bd02-47ec-aeca-267ba4365872",
                    "ind_full_name_cp": "Amy Diaz",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "1eb78cf1-80c3-4e28-9e69-26dd55058bb0",
                    "ind_full_name_cp": "Carlos Hill",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "3c194be7-ccfb-49d8-847c-27508204f6af",
                    "ind_full_name_cp": "Blanca Townsend",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a11301c6-11fb-4995-950b-283407c2432d",
                    "ind_full_name_cp": "Paul Brooks",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "100a89fb-a7a5-4d2c-b95b-28ece123af8e",
                    "ind_full_name_cp": "Miguel Hoffman",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a895adb4-3c73-408e-a002-2a92f00860a4",
                    "ind_full_name_cp": "Brittany Singleton",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "85997dd2-5a58-4091-a72a-2b5ca029cfcc",
                    "ind_full_name_cp": "Patrick Johnson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "0679e9e1-b7cf-4e80-8995-2b8425ce7e14",
                    "ind_full_name_cp": "Daniel Hughes",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "32e3a3be-9160-4023-a5ce-2de99069e631",
                    "ind_full_name_cp": "Rochelle Lawrence",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "167d5d99-2e38-4596-bc31-319d82abd6f7",
                    "ind_full_name_cp": "Conrad Jefferson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "ef3e5830-8280-4cc0-ae97-368746c2881d",
                    "ind_full_name_cp": "Charlie Evans",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "d42424ba-abec-4ca6-b0d4-3812c19031d2",
                    "ind_full_name_cp": "Arnold Parsons",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "d5ec3465-883c-45da-95a1-3ef8130c6c56",
                    "ind_full_name_cp": "Vicki Patton",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4a70bd57-bddf-4b7c-9259-40ceb665b09d",
                    "ind_full_name_cp": "Annie Moore",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "c656791f-57ca-46b7-a1f1-42576d57b03e",
                    "ind_full_name_cp": "Eva Hernandez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "1fda925a-95a2-4e92-95a3-455d612b7909",
                    "ind_full_name_cp": "Sam Watson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "85459818-6d76-4b44-96ca-4b6fbee90258",
                    "ind_full_name_cp": "Beatrice Owens",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "769f996c-06d8-4f17-bf41-4cf743f3ed45",
                    "ind_full_name_cp": "David Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a410682b-1c7b-4c4f-9d14-4d7bf03962c8",
                    "ind_full_name_cp": "Henry Reed",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "51931317-1745-42b9-bc26-4dab5132662f",
                    "ind_full_name_cp": "Jessica Stewart",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "2e53c5a5-c83c-4fc7-b7be-4fafd2e032e6",
                    "ind_full_name_cp": "Paula Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "f13c559f-c5d4-4c11-b0ad-4fd4ef75eea8",
                    "ind_full_name_cp": "Laura James",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "d6652c48-96a7-4c79-a3cb-50400080edb7",
                    "ind_full_name_cp": "Ashley Patterson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "64f56122-29e6-4da6-85d9-508d313669f6",
                    "ind_full_name_cp": "Maria A Foster",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "612da4ff-8691-4bc6-9554-5656848ca7cf",
                    "ind_full_name_cp": "Dorothy Stevenson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4fbefe3c-6111-4398-9016-577ed707955f",
                    "ind_full_name_cp": "Beverly Torres",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "befbce30-e1bb-43e6-b209-579488ef86bd",
                    "ind_full_name_cp": "Bernadette Hart",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a136b1cc-a3a2-47c8-859f-5d31221e30db",
                    "ind_full_name_cp": "Johnnie Morales",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "8dae37f8-72fc-412a-8b28-5e3eb410e37e",
                    "ind_full_name_cp": "Andrea Haslehurst",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "fb0f3144-9bce-4f20-9418-5ef09239a744",
                    "ind_full_name_cp": "Tom Green",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "f0ef8b54-e1b1-4d3b-8e08-60e17967ad8b",
                    "ind_full_name_cp": "Yolanda Matthews",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "56911506-764d-4aac-8a1c-63cf0c2cfe2c",
                    "ind_full_name_cp": "test test",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "0b22788c-530b-4b87-9ba9-65443d8f31e4",
                    "ind_full_name_cp": "Paula2 Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4634f0a3-07f2-4ec2-9630-688d4d9dcb80",
                    "ind_full_name_cp": "Jeannie Mcbride",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "bf646c2d-b675-4710-a4f3-6caa4e27a6bc",
                    "ind_full_name_cp": "Larry Jenkins",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "1dc3c725-da06-4866-b775-6e0149f2590e",
                    "ind_full_name_cp": "Melody Richards",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "13f36614-c5cd-4503-8f78-71e919a1af29",
                    "ind_full_name_cp": "Lois Bryant",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "411206b8-b7ae-45a3-a424-75335b47a70a",
                    "ind_full_name_cp": "Natasha Moltchanova",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "519d2190-7c8c-4936-b924-75381023bc9b",
                    "ind_full_name_cp": "Jeremy Lopez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a7849da2-3194-43b6-b0b4-75d12883b0b0",
                    "ind_full_name_cp": "Jordan Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "6ece4574-469b-4448-8216-75bfb5f46834",
                    "ind_full_name_cp": "Andrea Murphy",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "40b83177-cb60-45e3-84b5-76a2cb7ea95c",
                    "ind_full_name_cp": "Dr. Bruce Richardson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "5342f041-9ca9-4872-babc-7940c347bb13",
                    "ind_full_name_cp": "Mike Davis",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "dff52fc3-2db3-4382-85d9-7ab8315fb78d",
                    "ind_full_name_cp": "Luke Wagner",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "7e9ff2ae-a091-4fb7-9256-82808fe3bc39",
                    "ind_full_name_cp": "Sadie Wilkerson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "dbde7cf9-a685-4f06-ad82-8303ca646c6c",
                    "ind_full_name_cp": "Jay Lambert",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "e2b81bd6-efac-4638-8ed8-861ca1cca80d",
                    "ind_full_name_cp": "Ismael Jordan",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a270d5a4-88f1-4519-9efb-89ec244995da",
                    "ind_full_name_cp": "Craig Robinson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "095f1dac-8490-40e3-a9fd-8b943b14c260",
                    "ind_full_name_cp": "Christina Brown",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "5aaf918b-06d3-4755-94e0-8d37e76c5832",
                    "ind_full_name_cp": "Ben Nelson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "faccd9c9-ec71-4bca-9641-8ef1af806c02",
                    "ind_full_name_cp": "Mary Powell",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "a8219c08-4799-4dbe-890a-91dca61196ce",
                    "ind_full_name_cp": "Louise Morgan",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "ed8afff2-85fb-4ddb-90c8-93c3a3c56565",
                    "ind_full_name_cp": "Andrew Jackson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "b6da2bee-4a23-46dc-8fd5-979cb7af9884",
                    "ind_full_name_cp": "Nadine Castro",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "49c4e03a-dbc8-4e32-9c34-9835c4810a34",
                    "ind_full_name_cp": "Ben Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "005eb991-3932-4617-984a-98d511798eff",
                    "ind_full_name_cp": "Josefina Ellis",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "f77d1914-c72d-4638-a47c-9b7937bacf0e",
                    "ind_full_name_cp": "Neal Ball",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "d7b613d8-01ad-46d9-a9f6-9c14beea0f99",
                    "ind_full_name_cp": "Robert Young",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "3ef0ff58-b9e5-45d5-af74-a17ed71a5440",
                    "ind_full_name_cp": "Ana Welch",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "b528c632-d346-41b5-aa72-a4412fc7b206",
                    "ind_full_name_cp": "Anthony J Allen",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "c9563c95-1016-4ee7-8c4a-a4640ed26b28",
                    "ind_full_name_cp": "Willard Moody",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "97fd1049-2ca9-49d1-8195-a5fccbc5c6c7",
                    "ind_full_name_cp": "Angie Waters",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "5357df90-0193-4f26-8df4-a750332a2ca7",
                    "ind_full_name_cp": "Rose Parker",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4a48536d-8b18-443d-a602-aaf4d7f4a6e2",
                    "ind_full_name_cp": "Will Carroll Smith",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "8056d019-b602-4d6f-a266-afa45cc54bf3",
                    "ind_full_name_cp": "Kathy Cooper",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "c07d8ebf-c052-4a11-ade0-b09bd282739f",
                    "ind_full_name_cp": "Todd Young",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "47abd36a-4d45-43bd-bad0-b5fd3b53c48c",
                    "ind_full_name_cp": "Kristopher Poole",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "dbbf5ef3-e380-4104-8fa8-bbec11c47c6c",
                    "ind_full_name_cp": "Ted Park",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "752c4df9-5323-451c-bcab-bce0c9540260",
                    "ind_full_name_cp": "Cathy Weber",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "26213807-eab9-49c3-aa48-bd974e9899df",
                    "ind_full_name_cp": "Bonnie Martinez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "3f7831f0-7b37-43ec-8984-be497ded1e78",
                    "ind_full_name_cp": "Traci Beck",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "45717103-14f3-4493-97e1-bf79a53de21c",
                    "ind_full_name_cp": "Stacy Vaughn",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "b0b65af9-bc61-470d-a02d-c168dea758da",
                    "ind_full_name_cp": "Patricia Berry",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "389d35a0-bcd8-4a9a-9418-c3cda124bf37",
                    "ind_full_name_cp": "Brooke Gill",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "4345a9f9-f02e-4069-872a-c4f2c322d40e",
                    "ind_full_name_cp": "John Jack Wilson",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "2ac50493-54b8-4366-b53e-cb012990886d",
                    "ind_full_name_cp": "Rick Coleman",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "425a9055-9c67-43bb-89e1-cdf5cf68d48b",
                    "ind_full_name_cp": "Allison Huff",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "c9f0d7f3-d95c-4e4b-a74f-ce575f761a35",
                    "ind_full_name_cp": "Todd Howard",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "ad759f6b-df2d-43d0-98b4-d26958d10613",
                    "ind_full_name_cp": "Elisa Lamb",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "3b4decba-a038-4580-97d5-d47897e215a1",
                    "ind_full_name_cp": "Gretchen Long",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "28e35def-21d2-4073-8411-d5b1ee407408",
                    "ind_full_name_cp": "Jesse Brown",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "cd8cec8c-c58c-4b55-a308-dab1ef56c82b",
                    "ind_full_name_cp": "Ms Mamie A Gomez, Jr., PMP, CAT",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "f8af3b00-b38a-4766-99de-daff31547235",
                    "ind_full_name_cp": "Shaun Hernandez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "ae204454-32be-45f1-99a5-dbdf441df34b",
                    "ind_full_name_cp": "Harry Adams",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "904ab6db-a935-48a9-aafa-df1ce9fa8f7f",
                    "ind_full_name_cp": "Phillip Lindsey",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "5854f21c-e934-4c22-8121-e0d488533c67",
                    "ind_full_name_cp": "Arthur Fields",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "263179d5-2f0e-45de-9125-e371c2efb1cc",
                    "ind_full_name_cp": "Ralph Sanchez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "5206cf99-2a1f-4d4b-9d0e-e616c3db787f",
                    "ind_full_name_cp": "Marguerite Watkins",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "b29e4594-2ac5-40c1-a76c-e76d209d759c",
                    "ind_full_name_cp": "Linda Clark",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "6c231822-667d-4d7b-88fa-e7aa3efe3ae7",
                    "ind_full_name_cp": "Nataliia Moltchanova",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "e4e25625-586f-448d-a0ca-e7b971590167",
                    "ind_full_name_cp": "Johnny Rivera",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "844f065a-a076-410e-b192-e861ce65c044",
                    "ind_full_name_cp": "Mickey Mouse, IS",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "9c3c2863-f72e-4cd9-aedf-eb3e7dda9af0",
                    "ind_full_name_cp": "Beverly Sally Alvarez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "8edea146-a9ce-4a49-bba3-f6a2e39dd8cd",
                    "ind_full_name_cp": "Wendell Santos",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "d41e9e75-55b7-43c8-b095-f8055d1828c8",
                    "ind_full_name_cp": "Jonathan Haslehurst",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "38b0e844-5f18-4979-bd19-fcfc3e774593",
                    "ind_full_name_cp": "Lori Ramirez",
                    "ind_add_date": "2020-02-02T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "2296b1df-21a7-4da7-90fa-a36c4bcec7d6",
                    "ind_full_name_cp": "Ronald  Odom",
                    "ind_add_date": "2020-02-03T05:55:00+13:00"
                },
                {
                    "ind_cst_key": "c78eec70-33d8-4cbc-abbe-129a7a75372d",
                    "ind_full_name_cp": "Mary Castle",
                    "ind_add_date": "2020-02-05T05:55:00+13:00"
                },
                {
                    "ind_cst_key": "58b43caf-1eee-4a14-8e66-aef0ab19387d",
                    "ind_full_name_cp": "Amy Newman",
                    "ind_add_date": "2020-10-14T13:39:00+13:00"
                },
                {
                    "ind_cst_key": "1bee1281-5945-4a46-9351-124b22c0bf9b",
                    "ind_full_name_cp": "Bruce Lee",
                    "ind_add_date": "2020-10-15T13:39:00+13:00"
                },
                {
                    "ind_cst_key": "00000000-0000-0000-0000-000000000000",
                    "ind_full_name_cp": "web user",
                    "ind_add_date": "2020-10-16T12:59:00+13:00"
                },
                {
                    "ind_cst_key": "a9775f1a-607f-49f1-a246-b2bb44bb750e",
                    "ind_full_name_cp": "Mandy Newman",
                    "ind_add_date": "2020-10-16T13:39:00+13:00"
                },
                {
                    "ind_cst_key": "0d2f0c7f-7a46-4eaa-8afb-fb05ff7e528c",
                    "ind_full_name_cp": "Eric Newman",
                    "ind_add_date": "2020-10-19T13:39:00+13:00"
                },
                {
                    "ind_cst_key": "358a9330-c44e-4802-83fb-3d0921f5236a",
                    "ind_full_name_cp": "Akshay AB Bose, II",
                    "ind_add_date": "2020-10-20T08:49:00+13:00"
                },
                {
                    "ind_cst_key": "26a630c5-9037-4edf-92b9-327c83e2fea9",
                    "ind_full_name_cp": "Sara Lee",
                    "ind_add_date": "2020-10-20T13:39:00+13:00"
                },
                {
                    "ind_cst_key": "64e39743-2193-47e6-a1ce-ed2671997252",
                    "ind_full_name_cp": "Amanda Newman",
                    "ind_add_date": "2020-10-21T00:00:00+13:00"
                },
                {
                    "ind_cst_key": "3d4c181a-ea79-4a33-b406-c114ef3787f1",
                    "ind_full_name_cp": "Nikhil Baad",
                    "ind_add_date": "2020-10-21T02:19:00+13:00"
                },
                {
                    "ind_cst_key": "e74d893f-d811-48ac-a7a9-dcdb2835d48c",
                    "ind_full_name_cp": "Mr. Cristiano Ronaldo",
                    "ind_add_date": "2020-10-21T02:57:00+13:00"
                },
                {
                    "ind_cst_key": "14c6f50d-cfa9-44dd-adbc-af0159c17be7",
                    "ind_full_name_cp": "Pravin Discount",
                    "ind_add_date": "2020-10-21T04:21:00+13:00"
                },
                {
                    "ind_cst_key": "9ac42d2f-71ce-4bef-9b66-aa125e9c773d",
                    "ind_full_name_cp": "John Thomas",
                    "ind_add_date": "2020-10-21T04:39:00+13:00"
                },
                {
                    "ind_cst_key": "2eeb8b7f-e33c-452e-a2da-9fc7697b204a",
                    "ind_full_name_cp": "William Olley",
                    "ind_add_date": "2020-10-21T04:52:00+13:00"
                },
                {
                    "ind_cst_key": "d5fb85e7-92d4-464b-a213-fecd97e37b9e",
                    "ind_full_name_cp": "Mr. shashikant S Kamble, III",
                    "ind_add_date": "2020-10-22T01:25:00+13:00"
                },
                {
                    "ind_cst_key": "52896fc1-87f5-4265-9db9-dfdbeb0cc3f4",
                    "ind_full_name_cp": "ak333 ak333",
                    "ind_add_date": "2020-10-22T02:37:00+13:00"
                },
                {
                    "ind_cst_key": "cd864d7b-fe84-4e73-bea8-aa676d67a19c",
                    "ind_full_name_cp": "akdup333 akdup333",
                    "ind_add_date": "2020-10-22T02:40:00+13:00"
                },
                {
                    "ind_cst_key": "9f74289f-e7a6-451e-b86b-daa7663bb99e",
                    "ind_full_name_cp": "Dr. Daniel Craig, II",
                    "ind_add_date": "2020-10-22T03:01:00+13:00"
                },
                {
                    "ind_cst_key": "882dc2c7-2568-4139-a1b8-4eaa021e12cc",
                    "ind_full_name_cp": "Sherlock Homes",
                    "ind_add_date": "2020-10-22T03:10:00+13:00"
                },
                {
                    "ind_cst_key": "3f36fc74-11f9-49f6-a543-3c10db9ae125",
                    "ind_full_name_cp": "Dr. Pierce Broson, III",
                    "ind_add_date": "2020-10-22T03:18:00+13:00"
                },
                {
                    "ind_cst_key": "4b4361e8-f09a-46e3-a013-e5e8d65fdd08",
                    "ind_full_name_cp": "Miss  Marvel",
                    "ind_add_date": "2020-10-22T07:08:00+13:00"
                },
                {
                    "ind_cst_key": "dea060a5-170f-4a9d-9659-b37270ccdec7",
                    "ind_full_name_cp": "Burl1 Ontario1",
                    "ind_add_date": "2020-10-22T07:14:00+13:00"
                },
                {
                    "ind_cst_key": "8dc80a00-c66c-4c1f-9d74-5d0082c058ad",
                    "ind_full_name_cp": "blue2 Ontario1",
                    "ind_add_date": "2020-10-22T07:23:00+13:00"
                },
                {
                    "ind_cst_key": "771a0ef9-3075-4bbc-9257-f4b8b8a6720e",
                    "ind_full_name_cp": "blue3 Alberta2",
                    "ind_add_date": "2020-10-22T07:23:00+13:00"
                },
                {
                    "ind_cst_key": "6d9441d8-9af7-461e-b6a6-826fc26369a4",
                    "ind_full_name_cp": "micc testing",
                    "ind_add_date": "2020-10-22T07:30:00+13:00"
                },
                {
                    "ind_cst_key": "8548cd21-eeed-4d19-9fc1-b683af8891e4",
                    "ind_full_name_cp": "eeee rrrrr",
                    "ind_add_date": "2020-10-22T10:21:00+13:00"
                },
                {
                    "ind_cst_key": "9a385286-2a8b-4db1-afb1-6d9b075b9468",
                    "ind_full_name_cp": "apple1 bbbbbb",
                    "ind_add_date": "2020-10-22T10:31:00+13:00"
                },
                {
                    "ind_cst_key": "ecd2c598-e253-41b9-8dad-dd19ded8357f",
                    "ind_full_name_cp": "Miss Rozaa D.",
                    "ind_add_date": "2020-10-22T10:31:00+13:00"
                },
                {
                    "ind_cst_key": "2139af5c-caa4-46ce-982a-6eb62fa7d037",
                    "ind_full_name_cp": "Ind 127897",
                    "ind_add_date": "2020-10-23T02:44:00+13:00"
                },
                {
                    "ind_cst_key": "c91fe65e-fbca-4366-9607-7ff2f103bc07",
                    "ind_full_name_cp": "Mrs. Deepti P Aphale, II, Designation",
                    "ind_add_date": "2020-10-23T10:55:00+13:00"
                },
                {
                    "ind_cst_key": "7766c404-756d-4a80-a2bd-92842a14cd3e",
                    "ind_full_name_cp": "tt Ind 121093, III",
                    "ind_add_date": "2020-10-26T02:19:00+13:00"
                },
                {
                    "ind_cst_key": "0a4a8066-8433-4b74-ba6f-a355d5255ece",
                    "ind_full_name_cp": "Eric Prospect",
                    "ind_add_date": "2020-10-26T11:40:00+13:00"
                },
                {
                    "ind_cst_key": "74813045-c14e-4379-b91f-b4024c45aeaf",
                    "ind_full_name_cp": "Mr. Adam Jacob Prospectorus, Jr.",
                    "ind_add_date": "2020-10-26T12:23:00+13:00"
                },
                {
                    "ind_cst_key": "ff04f4c6-8621-48f9-94e1-d8312d43b815",
                    "ind_full_name_cp": "Emma Prospect",
                    "ind_add_date": "2020-10-26T12:23:00+13:00"
                },
                {
                    "ind_cst_key": "cdd82e91-b2db-476f-b40e-4f79a9e016d2",
                    "ind_full_name_cp": "Julia Prospect",
                    "ind_add_date": "2020-10-26T12:23:00+13:00"
                },
                {
                    "ind_cst_key": "7a392773-7470-41c1-b6e8-4436620d03fe",
                    "ind_full_name_cp": "Mandy Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "e92dd2bb-ebbb-4dde-b89a-5bff4988daa5",
                    "ind_full_name_cp": "Eddie Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "b5865dad-90e0-419d-a74f-5b443208a92d",
                    "ind_full_name_cp": "Mike Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "c5d5c5c5-1e0a-4fd6-9eba-2fcd2648005b",
                    "ind_full_name_cp": "Sara Snownam",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "d4e53bb1-7507-4a09-80ed-09afb65683f3",
                    "ind_full_name_cp": "Ellie Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "8cacdb1c-1e30-494a-828a-0fc581fb1187",
                    "ind_full_name_cp": "Allison Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "15b379a9-20ea-4fa6-b735-f1b6d92c3060",
                    "ind_full_name_cp": "Molly Snowman",
                    "ind_add_date": "2020-10-26T14:12:00+13:00"
                },
                {
                    "ind_cst_key": "c8dab363-a027-4be7-86a0-c74c610ab009",
                    "ind_full_name_cp": "James  Ryan",
                    "ind_add_date": "2020-10-27T02:48:00+13:00"
                },
                {
                    "ind_cst_key": "d25860ce-93a3-487f-9262-3d17682944d0",
                    "ind_full_name_cp": "Test11 Oak11",
                    "ind_add_date": "2020-10-27T03:36:00+13:00"
                },
                {
                    "ind_cst_key": "2e2b7d9b-de6f-406f-a388-8c2b357a1ecb",
                    "ind_full_name_cp": "Kim Jn",
                    "ind_add_date": "2020-10-27T04:09:00+13:00"
                },
                {
                    "ind_cst_key": "49813237-d058-407c-9f1b-d3a64a38f9e0",
                    "ind_full_name_cp": "Oak1 Quebec3",
                    "ind_add_date": "2020-10-27T04:13:00+13:00"
                },
                {
                    "ind_cst_key": "8de25f3c-7dad-49a3-9126-d3e744ef0bc6",
                    "ind_full_name_cp": "Wpcsk Wpcsk",
                    "ind_add_date": "2020-10-27T04:35:00+13:00"
                },
                {
                    "ind_cst_key": "9824c4c0-d1ad-41f6-955d-fd2b7c961e5b",
                    "ind_full_name_cp": "hat2 hat22",
                    "ind_add_date": "2020-10-27T04:46:00+13:00"
                },
                {
                    "ind_cst_key": "6a37e0d1-864b-4973-b1dc-0c99f0784ac8",
                    "ind_full_name_cp": "Bernice Tabb",
                    "ind_add_date": "2020-10-27T05:14:00+13:00"
                },
                {
                    "ind_cst_key": "927d7212-558d-44ac-ba51-0549608fdfc0",
                    "ind_full_name_cp": "Oak111 Quebec333",
                    "ind_add_date": "2020-10-27T05:19:00+13:00"
                },
                {
                    "ind_cst_key": "ff3be689-4444-4bb2-b421-d1ccf085acd6",
                    "ind_full_name_cp": "Ham1 dk156",
                    "ind_add_date": "2020-10-27T05:20:00+13:00"
                },
                {
                    "ind_cst_key": "205d857b-35ae-41c3-8d12-c8081e53c9fa",
                    "ind_full_name_cp": "Burl1 dk165",
                    "ind_add_date": "2020-10-27T05:20:00+13:00"
                },
                {
                    "ind_cst_key": "7a8e8979-765d-4ced-8b6d-1662c02cbc2f",
                    "ind_full_name_cp": "Nik cr7",
                    "ind_add_date": "2020-10-27T05:47:00+13:00"
                },
                {
                    "ind_cst_key": "82ffec8a-9d31-487f-a077-5ede9103979e",
                    "ind_full_name_cp": "asddddd dddddd",
                    "ind_add_date": "2020-10-27T05:47:00+13:00"
                },
                {
                    "ind_cst_key": "3945a3ae-80eb-4487-bd12-b2c8362f7fd0",
                    "ind_full_name_cp": "Oak1111 Quebec3333",
                    "ind_add_date": "2020-10-27T05:47:00+13:00"
                },
                {
                    "ind_cst_key": "8e3a780d-2f4f-4f9c-919f-bf7f8e957b90",
                    "ind_full_name_cp": "mmm mmm",
                    "ind_add_date": "2020-10-27T06:03:00+13:00"
                },
                {
                    "ind_cst_key": "ab77851a-135e-4c16-9a6a-bf01da9adfea",
                    "ind_full_name_cp": "TestFirstName TestLastName",
                    "ind_add_date": "2020-10-27T06:03:00+13:00"
                },
                {
                    "ind_cst_key": "9d1250cc-9815-4418-9a6d-652fced91041",
                    "ind_full_name_cp": "nnnn nnnn",
                    "ind_add_date": "2020-10-27T06:03:00+13:00"
                },
                {
                    "ind_cst_key": "3b4f7b8c-61fc-4d32-8906-9ac796149376",
                    "ind_full_name_cp": "asdaxxxx xxxx",
                    "ind_add_date": "2020-10-27T06:10:00+13:00"
                },
                {
                    "ind_cst_key": "205bdcf1-40a9-4e22-a7f5-e3578a3ada29",
                    "ind_full_name_cp": "aaa aaa",
                    "ind_add_date": "2020-10-27T06:10:00+13:00"
                },
                {
                    "ind_cst_key": "3081051a-8251-49e7-91fd-cb9b94b5a255",
                    "ind_full_name_cp": "Shankar Mahadevan",
                    "ind_add_date": "2020-10-27T07:05:00+13:00"
                },
                {
                    "ind_cst_key": "9783247f-53e8-4e09-be19-61d58efd267d",
                    "ind_full_name_cp": "Deepti Test",
                    "ind_add_date": "2020-10-27T08:52:00+13:00"
                },
                {
                    "ind_cst_key": "8110e2ea-66f7-4cbe-be04-ab9b3020f199",
                    "ind_full_name_cp": "Ms Sarah A Snowman",
                    "ind_add_date": "2020-10-27T15:48:00+13:00"
                },
                {
                    "ind_cst_key": "cd2434d0-b532-4d5d-ae6d-199d5fae64da",
                    "ind_full_name_cp": "Mr. Adam J Snowman",
                    "ind_add_date": "2020-10-27T15:52:00+13:00"
                },
                {
                    "ind_cst_key": "b96f9fa0-d5e1-4cb2-8258-398d2dddfaeb",
                    "ind_full_name_cp": "Ms Amy S Snowman",
                    "ind_add_date": "2020-10-27T15:55:00+13:00"
                },
                {
                    "ind_cst_key": "63b4c2a3-63ce-4756-9461-34c40c0eb239",
                    "ind_full_name_cp": "Irina Chabanny",
                    "ind_add_date": "2020-10-29T15:05:00+13:00"
                },
                {
                    "ind_cst_key": "01ef468b-c023-4a6e-b6fb-94843caf5951",
                    "ind_full_name_cp": "Joanna 1630435362 Szarko, CSTE",
                    "ind_add_date": "2020-11-02T14:49:00+13:00"
                },
                {
                    "ind_cst_key": "b10c18fb-7ea0-4e32-a29d-ba77626ea225",
                    "ind_full_name_cp": "Ethan J Hunt",
                    "ind_add_date": "2020-11-05T00:24:00+13:00"
                },
                {
                    "ind_cst_key": "24a640ea-8bd4-42bb-b2ea-6b4402bd3a3c",
                    "ind_full_name_cp": "Mayank Sisodia",
                    "ind_add_date": "2020-11-05T03:40:00+13:00"
                },
                {
                    "ind_cst_key": "50147daa-7c00-4f39-8122-9c6f7277c376",
                    "ind_full_name_cp": "Susan David",
                    "ind_add_date": "2020-11-05T06:35:00+13:00"
                },
                {
                    "ind_cst_key": "3e8f2744-f22c-48ec-8cd5-b0cec44ec87f",
                    "ind_full_name_cp": "Aiesha Bldwin",
                    "ind_add_date": "2020-11-05T06:35:00+13:00"
                },
                {
                    "ind_cst_key": "0c3a40e5-d529-45ca-97b5-575a20ab9278",
                    "ind_full_name_cp": "Stanley Turpentine",
                    "ind_add_date": "2020-11-05T06:35:00+13:00"
                },
                {
                    "ind_cst_key": "4154421e-5b46-40d1-9286-f33cabd7117d",
                    "ind_full_name_cp": "Bob Pickles",
                    "ind_add_date": "2020-11-05T06:35:00+13:00"
                },
                {
                    "ind_cst_key": "31fa38b8-dd1e-4505-9241-9098f58dd7f5",
                    "ind_full_name_cp": "Pravin Correspondence",
                    "ind_add_date": "2020-11-09T03:10:00+13:00"
                },
                {
                    "ind_cst_key": "cdf4d0bc-954b-4420-9422-1262e97ed12f",
                    "ind_full_name_cp": "Roberto Carlos",
                    "ind_add_date": "2020-11-09T05:36:00+13:00"
                },
                {
                    "ind_cst_key": "e43a1d9f-f71c-4615-8b83-2f290aa203dc",
                    "ind_full_name_cp": "Steve 123456789 Blake",
                    "ind_add_date": "2020-11-09T15:35:00+13:00"
                },
                {
                    "ind_cst_key": "1a943e68-ad44-4f11-8d6f-4613d342e27f",
                    "ind_full_name_cp": "Juan 987654321 Dixon",
                    "ind_add_date": "2020-11-09T15:38:00+13:00"
                },
                {
                    "ind_cst_key": "12c53245-560a-4227-ae9b-f8ed24910527",
                    "ind_full_name_cp": "Amy Weber",
                    "ind_add_date": "2020-11-09T17:57:00+13:00"
                },
                {
                    "ind_cst_key": "1e53be02-923f-4af8-878d-26fb6cea8e93",
                    "ind_full_name_cp": "Allison Weber",
                    "ind_add_date": "2020-11-09T18:12:00+13:00"
                },
                {
                    "ind_cst_key": "f29c42e5-ab48-4601-8414-2f151a1e0c49",
                    "ind_full_name_cp": "ak01 ak01",
                    "ind_add_date": "2020-11-10T04:17:00+13:00"
                },
                {
                    "ind_cst_key": "0ef9326c-b5e0-45b6-a7a8-d731d7271ad5",
                    "ind_full_name_cp": "Test1 test_last_name",
                    "ind_add_date": "2020-11-10T09:04:00+13:00"
                },
                {
                    "ind_cst_key": "7b217cbd-6ddb-44f9-afa8-1ec3c7385b5d",
                    "ind_full_name_cp": "Tony Stark",
                    "ind_add_date": "2020-11-10T09:19:00+13:00"
                },
                {
                    "ind_cst_key": "a5578edf-6c4a-4866-a264-87d095df9ffd",
                    "ind_full_name_cp": "Jenny F",
                    "ind_add_date": "2020-11-11T03:59:00+13:00"
                },
                {
                    "ind_cst_key": "b26b0a14-e321-451a-8779-853848e0de19",
                    "ind_full_name_cp": "Rachel  Green",
                    "ind_add_date": "2020-11-11T04:03:00+13:00"
                },
                {
                    "ind_cst_key": "229c82ce-571f-4eab-bece-074b1cc53803",
                    "ind_full_name_cp": "Ms Linda Allison Lee",
                    "ind_add_date": "2020-11-12T11:00:00+13:00"
                },
                {
                    "ind_cst_key": "8d6ae843-685c-4e62-9f11-23f43e248213",
                    "ind_full_name_cp": "Scott Scottorade",
                    "ind_add_date": "2020-11-12T13:14:00+13:00"
                }
            ]
        }
    }
}