The FriendDetailAdd class is used for attaching additonal details to a friend. Simply build up a string in the style of either XML or JSON and POST it to the correct end point.
| Property | Type | Description |
|---|---|---|
| FriendName | string | The name of the friend to add details to. |
| Detail | string | The detail to add. |
<FriendDetailAdd xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Detail>We work at CIX</Detail> <FriendName>charlie</FriendName> </FriendDetailAdd>
{ "FriendName":"charlie", "Detail":"We work at CIX" }