eloqua 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +11 -0
- data/.yardopts +2 -0
- data/CHANGELOG.md +23 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +81 -0
- data/LICENSE +21 -0
- data/README.md +245 -0
- data/Rakefile +13 -0
- data/TODO.md +8 -0
- data/eloqua.gemspec +32 -0
- data/eloqua_initializer.tpl.rb +3 -0
- data/lib/eloqua.rb +51 -0
- data/lib/eloqua/api.rb +119 -0
- data/lib/eloqua/api/action.rb +41 -0
- data/lib/eloqua/api/service.rb +240 -0
- data/lib/eloqua/asset.rb +31 -0
- data/lib/eloqua/builder/templates.rb +31 -0
- data/lib/eloqua/builder/xml.rb +129 -0
- data/lib/eloqua/entity.rb +72 -0
- data/lib/eloqua/exceptions.rb +5 -0
- data/lib/eloqua/helper/attribute_map.rb +78 -0
- data/lib/eloqua/query.rb +291 -0
- data/lib/eloqua/remote_object.rb +274 -0
- data/lib/eloqua/version.rb +3 -0
- data/lib/eloqua/wsdl/action.wsdl +1 -0
- data/lib/eloqua/wsdl/data.wsdl +1 -0
- data/lib/eloqua/wsdl/email.wsdl +1 -0
- data/lib/eloqua/wsdl/service.wsdl +1 -0
- data/lib/tasks/test.rake +24 -0
- data/rspec.watchr +74 -0
- data/spec/fixtures/add_group_member/success.xml +18 -0
- data/spec/fixtures/create/contact_duplicate.xml +30 -0
- data/spec/fixtures/create/contact_success.xml +25 -0
- data/spec/fixtures/create_asset/failure.xml +30 -0
- data/spec/fixtures/create_asset/group_success.xml +25 -0
- data/spec/fixtures/delete_asset/access_deny.xml +31 -0
- data/spec/fixtures/describe_asset/success.xml +72 -0
- data/spec/fixtures/describe_asset_type/success.xml +23 -0
- data/spec/fixtures/describe_entity/success.xml +54 -0
- data/spec/fixtures/describe_entity_type/success.xml +45 -0
- data/spec/fixtures/get_member_count_in_step_by_status/success.xml +15 -0
- data/spec/fixtures/list_asset_types/success.xml +28 -0
- data/spec/fixtures/list_entity_types/success.xml +21 -0
- data/spec/fixtures/list_group_membership/success.xml +25 -0
- data/spec/fixtures/list_members_in_step_by_status/success.xml +15 -0
- data/spec/fixtures/query/contact_email_one.xml +38 -0
- data/spec/fixtures/query/contact_email_two.xml +56 -0
- data/spec/fixtures/query/contact_missing.xml +19 -0
- data/spec/fixtures/query/fault.xml +43 -0
- data/spec/fixtures/remove_group_member/success.xml +18 -0
- data/spec/fixtures/retrieve/contact_missing.xml +17 -0
- data/spec/fixtures/retrieve/contact_multiple.xml +3460 -0
- data/spec/fixtures/retrieve/contact_single.xml +38 -0
- data/spec/fixtures/retrieve_asset/failure.xml +17 -0
- data/spec/fixtures/retrieve_asset/success.xml +50 -0
- data/spec/fixtures/update/contact_success.xml +26 -0
- data/spec/lib/eloqua/api/action_spec.rb +36 -0
- data/spec/lib/eloqua/api/service_spec.rb +498 -0
- data/spec/lib/eloqua/api_spec.rb +133 -0
- data/spec/lib/eloqua/asset_spec.rb +63 -0
- data/spec/lib/eloqua/builder/templates_spec.rb +68 -0
- data/spec/lib/eloqua/builder/xml_spec.rb +254 -0
- data/spec/lib/eloqua/entity_spec.rb +224 -0
- data/spec/lib/eloqua/helper/attribute_map_spec.rb +14 -0
- data/spec/lib/eloqua/query_spec.rb +596 -0
- data/spec/lib/eloqua/remote_object_spec.rb +742 -0
- data/spec/lib/eloqua_spec.rb +171 -0
- data/spec/shared/attribute_map.rb +173 -0
- data/spec/shared/class_to_api_delegation.rb +50 -0
- data/spec/spec_helper.rb +48 -0
- data/spec/support/helper.rb +73 -0
- metadata +366 -0
@@ -0,0 +1,30 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-12T01:38:27.740Z</u:Created>
|
6
|
+
<u:Expires>2011-04-12T01:43:27.740Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<CreateAssetResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<CreateAssetResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<CreateAssetResult>
|
14
|
+
<AssetType>
|
15
|
+
<ID>0</ID>
|
16
|
+
<Name>ContactGroupName</Name>
|
17
|
+
<Type>ContactGroup</Type>
|
18
|
+
</AssetType>
|
19
|
+
<Errors>
|
20
|
+
<Error>
|
21
|
+
<ErrorCode>UnexpectedException</ErrorCode>
|
22
|
+
<Message>Could not create asset. Please contact Eloqua Support for Assistance.</Message>
|
23
|
+
</Error>
|
24
|
+
</Errors>
|
25
|
+
<ID>-1</ID>
|
26
|
+
</CreateAssetResult>
|
27
|
+
</CreateAssetResult>
|
28
|
+
</CreateAssetResponse>
|
29
|
+
</s:Body>
|
30
|
+
</s:Envelope>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-12T01:36:34.963Z</u:Created>
|
6
|
+
<u:Expires>2011-04-12T01:41:34.963Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<CreateAssetResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<CreateAssetResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<CreateAssetResult>
|
14
|
+
<AssetType>
|
15
|
+
<ID>0</ID>
|
16
|
+
<Name>ContactGroupName</Name>
|
17
|
+
<Type>ContactGroup</Type>
|
18
|
+
</AssetType>
|
19
|
+
<Errors/>
|
20
|
+
<ID>123</ID>
|
21
|
+
</CreateAssetResult>
|
22
|
+
</CreateAssetResult>
|
23
|
+
</CreateAssetResponse>
|
24
|
+
</s:Body>
|
25
|
+
</s:Envelope>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T00:47:02.906Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T00:52:02.906Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<DeleteAssetResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<DeleteAssetResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<DeleteAssetResult>
|
14
|
+
<AssetType>
|
15
|
+
<ID>0</ID>
|
16
|
+
<Name>ContactGroupName</Name>
|
17
|
+
<Type>ContactGroup</Type>
|
18
|
+
</AssetType>
|
19
|
+
<Errors>
|
20
|
+
<Error>
|
21
|
+
<ErrorCode>UnauthorizedAction</ErrorCode>
|
22
|
+
<Message>You are not authorized to delete contact groups.</Message>
|
23
|
+
</Error>
|
24
|
+
</Errors>
|
25
|
+
<ID>0</ID>
|
26
|
+
<Success>false</Success>
|
27
|
+
</DeleteAssetResult>
|
28
|
+
</DeleteAssetResult>
|
29
|
+
</DeleteAssetResponse>
|
30
|
+
</s:Body>
|
31
|
+
</s:Envelope>
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T17:31:54.936Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T17:36:54.936Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<DescribeAssetResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<DescribeAssetResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<Fields>
|
14
|
+
<DynamicAssetFieldDefinition>
|
15
|
+
<DataType>String</DataType>
|
16
|
+
<DisplayName>Name</DisplayName>
|
17
|
+
<InternalName>name</InternalName>
|
18
|
+
<IsRequired>true</IsRequired>
|
19
|
+
<IsWriteable>true</IsWriteable>
|
20
|
+
<Length>100</Length>
|
21
|
+
</DynamicAssetFieldDefinition>
|
22
|
+
<DynamicAssetFieldDefinition>
|
23
|
+
<DataType>String</DataType>
|
24
|
+
<DisplayName>Description</DisplayName>
|
25
|
+
<InternalName>description</InternalName>
|
26
|
+
<IsRequired>false</IsRequired>
|
27
|
+
<IsWriteable>true</IsWriteable>
|
28
|
+
<Length>250</Length>
|
29
|
+
</DynamicAssetFieldDefinition>
|
30
|
+
<DynamicAssetFieldDefinition>
|
31
|
+
<DataType>String</DataType>
|
32
|
+
<DisplayName>Owner</DisplayName>
|
33
|
+
<InternalName>createdby</InternalName>
|
34
|
+
<IsRequired>false</IsRequired>
|
35
|
+
<IsWriteable>false</IsWriteable>
|
36
|
+
<Length>50</Length>
|
37
|
+
</DynamicAssetFieldDefinition>
|
38
|
+
<DynamicAssetFieldDefinition>
|
39
|
+
<DataType>DateTime</DataType>
|
40
|
+
<DisplayName>Created Date</DisplayName>
|
41
|
+
<InternalName>createdat</InternalName>
|
42
|
+
<IsRequired>false</IsRequired>
|
43
|
+
<IsWriteable>false</IsWriteable>
|
44
|
+
<Length>4</Length>
|
45
|
+
</DynamicAssetFieldDefinition>
|
46
|
+
<DynamicAssetFieldDefinition>
|
47
|
+
<DataType>String</DataType>
|
48
|
+
<DisplayName>Modified By</DisplayName>
|
49
|
+
<InternalName>modifiedby</InternalName>
|
50
|
+
<IsRequired>false</IsRequired>
|
51
|
+
<IsWriteable>false</IsWriteable>
|
52
|
+
<Length>50</Length>
|
53
|
+
</DynamicAssetFieldDefinition>
|
54
|
+
<DynamicAssetFieldDefinition>
|
55
|
+
<DataType>DateTime</DataType>
|
56
|
+
<DisplayName>Modified Date</DisplayName>
|
57
|
+
<InternalName>modifiedat</InternalName>
|
58
|
+
<IsRequired>false</IsRequired>
|
59
|
+
<IsWriteable>false</IsWriteable>
|
60
|
+
<Length>4</Length>
|
61
|
+
</DynamicAssetFieldDefinition>
|
62
|
+
</Fields>
|
63
|
+
<IsCreateable>true</IsCreateable>
|
64
|
+
<IsDeletable>true</IsDeletable>
|
65
|
+
<IsQueryable>false</IsQueryable>
|
66
|
+
<IsRetrievable>true</IsRetrievable>
|
67
|
+
<IsUpdateable>true</IsUpdateable>
|
68
|
+
<Name>Contact Group</Name>
|
69
|
+
</DescribeAssetResult>
|
70
|
+
</DescribeAssetResponse>
|
71
|
+
</s:Body>
|
72
|
+
</s:Envelope>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T22:32:57.351Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T22:37:57.351Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<DescribeAssetTypeResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<DescribeAssetTypeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<AssetTypes>
|
14
|
+
<AssetType>
|
15
|
+
<ID>123</ID>
|
16
|
+
<Name>(Test) Property #5760</Name>
|
17
|
+
<Type>ContactGroup</Type>
|
18
|
+
</AssetType>
|
19
|
+
</AssetTypes>
|
20
|
+
</DescribeAssetTypeResult>
|
21
|
+
</DescribeAssetTypeResponse>
|
22
|
+
</s:Body>
|
23
|
+
</s:Envelope>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T17:28:41.525Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T17:33:41.525Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<DescribeEntityResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<DescribeEntityResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<Fields>
|
14
|
+
<DynamicEntityFieldDefinition>
|
15
|
+
<DataType>Text</DataType>
|
16
|
+
<DefaultValue i:nil="true"/>
|
17
|
+
<DisplayName>Email Address</DisplayName>
|
18
|
+
<InternalName>C_EmailAddress</InternalName>
|
19
|
+
<IsCustom>false</IsCustom>
|
20
|
+
<IsRequired>false</IsRequired>
|
21
|
+
<IsWriteable>true</IsWriteable>
|
22
|
+
<Length>100</Length>
|
23
|
+
</DynamicEntityFieldDefinition>
|
24
|
+
<DynamicEntityFieldDefinition>
|
25
|
+
<DataType>Text</DataType>
|
26
|
+
<DefaultValue i:nil="true"/>
|
27
|
+
<DisplayName>First Name</DisplayName>
|
28
|
+
<InternalName>C_FirstName</InternalName>
|
29
|
+
<IsCustom>false</IsCustom>
|
30
|
+
<IsRequired>false</IsRequired>
|
31
|
+
<IsWriteable>true</IsWriteable>
|
32
|
+
<Length>100</Length>
|
33
|
+
</DynamicEntityFieldDefinition>
|
34
|
+
<DynamicEntityFieldDefinition>
|
35
|
+
<DataType>Text</DataType>
|
36
|
+
<DefaultValue i:nil="true"/>
|
37
|
+
<DisplayName>Last Name</DisplayName>
|
38
|
+
<InternalName>C_LastName</InternalName>
|
39
|
+
<IsCustom>false</IsCustom>
|
40
|
+
<IsRequired>false</IsRequired>
|
41
|
+
<IsWriteable>true</IsWriteable>
|
42
|
+
<Length>100</Length>
|
43
|
+
</DynamicEntityFieldDefinition>
|
44
|
+
</Fields>
|
45
|
+
<IsCreateable>true</IsCreateable>
|
46
|
+
<IsDeletable>true</IsDeletable>
|
47
|
+
<IsQueryable>true</IsQueryable>
|
48
|
+
<IsRetrievable>true</IsRetrievable>
|
49
|
+
<IsUpdateable>true</IsUpdateable>
|
50
|
+
<Name i:nil="true"/>
|
51
|
+
</DescribeEntityResult>
|
52
|
+
</DescribeEntityResponse>
|
53
|
+
</s:Body>
|
54
|
+
</s:Envelope>
|
@@ -0,0 +1,45 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"
|
2
|
+
xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
3
|
+
<s:Header>
|
4
|
+
<o:Security s:mustUnderstand="1"
|
5
|
+
xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
6
|
+
<u:Timestamp u:Id="_0">
|
7
|
+
<u:Created>2011-04-16T19:37:05.677Z</u:Created>
|
8
|
+
<u:Expires>2011-04-16T19:42:05.677Z</u:Expires>
|
9
|
+
</u:Timestamp>
|
10
|
+
</o:Security>
|
11
|
+
</s:Header>
|
12
|
+
<s:Body>
|
13
|
+
<DescribeEntityTypeResponse xmlns="https://secure.eloqua.com/API/1.2">
|
14
|
+
<DescribeEntityTypeResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
15
|
+
<EntityTypes>
|
16
|
+
<EntityType>
|
17
|
+
<ID>0</ID>
|
18
|
+
<Name>Contact</Name>
|
19
|
+
<Type>Base</Type>
|
20
|
+
</EntityType>
|
21
|
+
<EntityType>
|
22
|
+
<ID>0</ID>
|
23
|
+
<Name>Company</Name>
|
24
|
+
<Type>Base</Type>
|
25
|
+
</EntityType>
|
26
|
+
<EntityType>
|
27
|
+
<ID>0</ID>
|
28
|
+
<Name>Prospect</Name>
|
29
|
+
<Type>Base</Type>
|
30
|
+
</EntityType>
|
31
|
+
<EntityType>
|
32
|
+
<ID>0</ID>
|
33
|
+
<Name>Visitor</Name>
|
34
|
+
<Type>Base</Type>
|
35
|
+
</EntityType>
|
36
|
+
<EntityType>
|
37
|
+
<ID>0</ID>
|
38
|
+
<Name>ProcessedActivity</Name>
|
39
|
+
<Type>Base</Type>
|
40
|
+
</EntityType>
|
41
|
+
</EntityTypes>
|
42
|
+
</DescribeEntityTypeResult>
|
43
|
+
</DescribeEntityTypeResponse>
|
44
|
+
</s:Body>
|
45
|
+
</s:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2012-07-16T14:17:39.575Z</u:Created>
|
6
|
+
<u:Expires>2012-07-16T14:22:39.575Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<GetMemberCountInStepByStatusResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<GetMemberCountInStepByStatusResult>0</GetMemberCountInStepByStatusResult>
|
13
|
+
</GetMemberCountInStepByStatusResponse>
|
14
|
+
</s:Body>
|
15
|
+
</s:Envelope>
|
@@ -0,0 +1,28 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T17:15:03.074Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T17:20:03.074Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<ListAssetTypesResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<ListAssetTypesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<AssetTypes xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
|
14
|
+
<a:string>DataExport</a:string>
|
15
|
+
<a:string>DataImport</a:string>
|
16
|
+
<a:string>Email</a:string>
|
17
|
+
<a:string>EmailHeader</a:string>
|
18
|
+
<a:string>EmailFooter</a:string>
|
19
|
+
<a:string>ContactGroup</a:string>
|
20
|
+
<a:string>CompanyGroup</a:string>
|
21
|
+
<a:string>ProspectGroup</a:string>
|
22
|
+
<a:string>Form</a:string>
|
23
|
+
<a:string>None</a:string>
|
24
|
+
</AssetTypes>
|
25
|
+
</ListAssetTypesResult>
|
26
|
+
</ListAssetTypesResponse>
|
27
|
+
</s:Body>
|
28
|
+
</s:Envelope>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T17:09:07.056Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T17:14:07.056Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<ListEntityTypesResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<ListEntityTypesResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<EntityTypes xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
|
14
|
+
<a:string>Base</a:string>
|
15
|
+
<a:string>DataCardSet</a:string>
|
16
|
+
<a:string>Form</a:string>
|
17
|
+
</EntityTypes>
|
18
|
+
</ListEntityTypesResult>
|
19
|
+
</ListEntityTypesResponse>
|
20
|
+
</s:Body>
|
21
|
+
</s:Envelope>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-13T01:19:53.408Z</u:Created>
|
6
|
+
<u:Expires>2011-04-13T01:24:53.408Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<ListGroupMembershipResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<ListGroupMembershipResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<DynamicAsset>
|
14
|
+
<AssetType>
|
15
|
+
<ID>29</ID>
|
16
|
+
<Name>Lead Scoring - All Scored Leads</Name>
|
17
|
+
<Type>ContactGroup</Type>
|
18
|
+
</AssetType>
|
19
|
+
<FieldValueCollection/>
|
20
|
+
<Id>29</Id>
|
21
|
+
</DynamicAsset>
|
22
|
+
</ListGroupMembershipResult>
|
23
|
+
</ListGroupMembershipResponse>
|
24
|
+
</s:Body>
|
25
|
+
</s:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2012-07-16T14:26:27.490Z</u:Created>
|
6
|
+
<u:Expires>2012-07-16T14:31:27.490Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<ListMembersInStepByStatusResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<ListMembersInStepByStatusResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance"/>
|
13
|
+
</ListMembersInStepByStatusResponse>
|
14
|
+
</s:Body>
|
15
|
+
</s:Envelope>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-06T03:59:07.465Z</u:Created>
|
6
|
+
<u:Expires>2011-04-06T04:04:07.465Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<QueryResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<QueryResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<Entities>
|
14
|
+
<DynamicEntity>
|
15
|
+
<EntityType>
|
16
|
+
<ID>0</ID>
|
17
|
+
<Name>Contact</Name>
|
18
|
+
<Type>Base</Type>
|
19
|
+
</EntityType>
|
20
|
+
<FieldValueCollection>
|
21
|
+
<EntityFields>
|
22
|
+
<InternalName>C_EmailAddress</InternalName>
|
23
|
+
<Value>james@lightsofapollo.com</Value>
|
24
|
+
</EntityFields>
|
25
|
+
<EntityFields>
|
26
|
+
<InternalName>C_FirstName</InternalName>
|
27
|
+
<Value>James</Value>
|
28
|
+
</EntityFields>
|
29
|
+
</FieldValueCollection>
|
30
|
+
<Id>1</Id>
|
31
|
+
</DynamicEntity>
|
32
|
+
</Entities>
|
33
|
+
<TotalPages>1</TotalPages>
|
34
|
+
<TotalRecords>1</TotalRecords>
|
35
|
+
</QueryResult>
|
36
|
+
</QueryResponse>
|
37
|
+
</s:Body>
|
38
|
+
</s:Envelope>
|
@@ -0,0 +1,56 @@
|
|
1
|
+
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
|
2
|
+
<s:Header>
|
3
|
+
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
4
|
+
<u:Timestamp u:Id="_0">
|
5
|
+
<u:Created>2011-04-06T07:04:09.011Z</u:Created>
|
6
|
+
<u:Expires>2011-04-06T07:09:09.011Z</u:Expires>
|
7
|
+
</u:Timestamp>
|
8
|
+
</o:Security>
|
9
|
+
</s:Header>
|
10
|
+
<s:Body>
|
11
|
+
<QueryResponse xmlns="https://secure.eloqua.com/API/1.2">
|
12
|
+
<QueryResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
|
13
|
+
<Entities>
|
14
|
+
<DynamicEntity>
|
15
|
+
<EntityType>
|
16
|
+
<ID>0</ID>
|
17
|
+
<Name>Contact</Name>
|
18
|
+
<Type>Base</Type>
|
19
|
+
</EntityType>
|
20
|
+
<FieldValueCollection>
|
21
|
+
<EntityFields>
|
22
|
+
<InternalName>C_EmailAddress</InternalName>
|
23
|
+
<Value>james@lightsofapollo.com</Value>
|
24
|
+
</EntityFields>
|
25
|
+
<EntityFields>
|
26
|
+
<InternalName>ContactID</InternalName>
|
27
|
+
<Value>1</Value>
|
28
|
+
</EntityFields>
|
29
|
+
</FieldValueCollection>
|
30
|
+
<Id>1</Id>
|
31
|
+
</DynamicEntity>
|
32
|
+
<DynamicEntity>
|
33
|
+
<EntityType>
|
34
|
+
<ID>0</ID>
|
35
|
+
<Name>Contact</Name>
|
36
|
+
<Type>Base</Type>
|
37
|
+
</EntityType>
|
38
|
+
<FieldValueCollection>
|
39
|
+
<EntityFields>
|
40
|
+
<InternalName>C_EmailAddress</InternalName>
|
41
|
+
<Value>iam.revelation@gmail.com</Value>
|
42
|
+
</EntityFields>
|
43
|
+
<EntityFields>
|
44
|
+
<InternalName>ContactID</InternalName>
|
45
|
+
<Value>2</Value>
|
46
|
+
</EntityFields>
|
47
|
+
</FieldValueCollection>
|
48
|
+
<Id>2</Id>
|
49
|
+
</DynamicEntity>
|
50
|
+
</Entities>
|
51
|
+
<TotalPages>1</TotalPages>
|
52
|
+
<TotalRecords>2</TotalRecords>
|
53
|
+
</QueryResult>
|
54
|
+
</QueryResponse>
|
55
|
+
</s:Body>
|
56
|
+
</s:Envelope>
|