SelectContact
fetches contact information, like all types of contact related data, from the ERP system or CRM system.
Request XML
| <?xml version="1.0" encoding="UTF-8"?>
<BuyerCustomerParty>
<Party>
<Contact>
<ID>10000</ID>
</Contact>
</Party>
</BuyerCustomerParty>
|
Response XML
| <?xml version="1.0" encoding="UTF-8"?>
<OrderResponse>
<ErpContact ses_type="ses:Contact">
<Contact>
</Contact>
</ErpContact>
</OrderResponse>
|
1
2
3
4
5
6
7
8
9
10
11
12
13 | <Contact>
<ID>KT1001</ID>
<Name>Mr Fred Churchill</Name>
<Telephone>+44 127 2653214</Telephone>
<Telefax>+44 127 2653215</Telefax>
<ElectronicMail>fred@iytcorporation.gov.uk</ElectronicMail>
<OtherCommunication></OtherCommunication>
<Note></Note>
<SesExtension>
<LanguageCode></LanguageCode>
<IsMain></IsMain>
</SesExtension>
</Contact>
|