Skip to main content
Mitratech Success Center

Client Support Center

Need help? Click a product group below to select your application and get access to knowledge articles, webinars, training content, and release notes or to contact our support team.

Authorized users - log in to create a ticket, view tickets status and check your success plan details.

 

How to access Embedded object via XML worksheet

This article provides the information about how to access the Embedded object via XML worksheet.

For Embedded, you can use XML request for the following:

  1. Inserting Embedded Objects
  2. Updating Embedded Objects
  3. Deleting Embedded Objects" on page 206

Embedded

Inserting Embedded Objects

Here is an example XML request to add a new Embedded Object in TeamConnect via XML worksheet:

<TeamConnectRequest>
<Authentication>
    <Username>george</Username>
    <Password>password</Password>
</Authentication>
<Project op="insert" >
    <Application>SETT</Application>
    <Name>Settlement offer made to claimant</Name>
    <Parent keymap="NumberString">05-02-0051</Parent>
</Project>
</TeamConnectRequest>

Updating Embedded Objects

Here is an example XML request to update an Embedded in TeamConnect via XML worksheet:

<TeamConnectRequest>
<Authentication>
    <Username>george</Username>
    <Password>password</Password>
</Authentication>
<Project op="update" Parent.NumberString="05-02-0051" Name="Settlement offer made to claimant">
    <Detail key="SETT_INJR" />
</Project>
</TeamConnectRequest>

Deleting Embedded Objects

Here is an example XML request to delete an Embedded in TeamConnect via XML worksheet:

<TeamConnectRequest>
<Authentication>
    <Username>george</Username>
    <Password>password</Password>
</Authentication>
<Project op="delete" Parent.NumberString="05-02-0051" Name="Settlement offer made to claimant">
</Project>
</TeamConnectRequest>
  • Was this article helpful?