POST api/PostContactDetails?sessionKey={sessionKey}&memberID={memberID}&userID={userID}&submit={submit}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sessionKey | string |
Required |
|
| memberID | integer |
Required |
|
| userID | integer |
Required |
|
| submit | boolean |
Required |
Body Parameters
Collection of WebField| Name | Description | Type | Additional information |
|---|---|---|---|
| Name | string |
None. |
|
| Type | string |
None. |
|
| Value | Object |
None. |
|
| ValueID | integer |
None. |
|
| Format | string |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"$type": "EBSphere.Mobile.Shared.Models.WebField, EBSphere.Mobile.Shared",
"Name": "sample string 1",
"Type": "sample string 2",
"Value": {
"$type": "System.Object, mscorlib"
},
"ValueID": 1,
"Format": "sample string 4"
},
{
"$type": "EBSphere.Mobile.Shared.Models.WebField, EBSphere.Mobile.Shared",
"Name": "sample string 1",
"Type": "sample string 2",
"Value": {
"$type": "System.Object, mscorlib"
},
"ValueID": 1,
"Format": "sample string 4"
}
]
application/xml, text/xml
Sample:
<ArrayOfWebField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EBSphere.Mobile.Shared.Models">
<WebField>
<Format>sample string 4</Format>
<Name>sample string 1</Name>
<Type>sample string 2</Type>
<Value />
<ValueID>1</ValueID>
</WebField>
<WebField>
<Format>sample string 4</Format>
<Name>sample string 1</Name>
<Type>sample string 2</Type>
<Value />
<ValueID>1</ValueID>
</WebField>
</ArrayOfWebField>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.