Created
December 28, 2016 17:27
-
-
Save EliJDonahue/d5eb2147c10eb2ba063f194943eeb1c9 to your computer and use it in GitHub Desktop.
Generic example of an AML response
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <SOAP-ENV:Envelope | |
| xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> | |
| <SOAP-ENV:Body> | |
| <Result> | |
| <Item type="{ITEMTYPE NAME}" typeId="{ITEMTYPE ID}" id="{ITEM ID}"> | |
| <property_1></property_1> | |
| <property_2></property_2> | |
| ... | |
| <property_n></property_n> | |
| <!-- Item property example --> | |
| <item_property keyed_name="TARGET ITEM KEYED NAME" type="{TARGET ITEMTYPE NAME}">{TARGET ITEM ID}</item_property> | |
| <!-- The Relationships tag may contain multiple types of relationship itemtypes --> | |
| <Relationships> | |
| <Item type="{RELATIONSHIP ITEMTYPE NAME}" typeId="{RELATIONSHIP ITEMTYPE ID}" id="{RELATIONSHIP ITEM ID}"> | |
| <property_1></property_1> | |
| <property_2></property_2> | |
| ... | |
| <property_n></property_n> | |
| <related_id keyed_name="RELATED ITEM KEYED NAME" type="{RELATED ITEMTYPE NAME}"> | |
| <Item type="{ITEMTYPE NAME}" typeId="{ITEMTYPE ID}" id="{ITEM ID}"> | |
| <property_1></property_1> | |
| <property_2></property_2> | |
| ... | |
| <property_n></property_n> | |
| </Item> | |
| </related_id> | |
| <source_id keyed_name="PARENT ITEM KEYED NAME" type="{PARENT ITEMTYPE NAME}">{PARENT ITEM ID}</source_id> | |
| </Item> | |
| </Relationships> | |
| </Item> | |
| </Result> | |
| </SOAP-ENV:Body> | |
| </SOAP-ENV:Envelope> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment