POST api/{database}/AccountManager
Creates a new AccountManager with the specified values
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| value | The AccountManager with the updated values. |
Define this parameter in the request body. |
Request body formats
application/json, text/json
Sample:
{
"accountManagerId": "sample string 1",
"messages": [],
"canChange": true,
"cannotChangeReason": "sample string 3",
"description": "sample string 4",
"gender": "sample string 5",
"preferred": "sample string 6",
"state": "sample string 7"
}
application/xml, text/xml
Sample:
<AccountManager xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.CRM.Edit"> <AccountManagerId>sample string 1</AccountManagerId> <CanChange>true</CanChange> <CannotChangeReason>sample string 3</CannotChangeReason> <Description>sample string 4</Description> <Gender>sample string 5</Gender> <Messages xmlns:d2p1="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.Web.WebApi.Core.Models" /> <Preferred>sample string 6</Preferred> <State>sample string 7</State> </AccountManager>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Response body formats
application/json, text/json
Sample:
{
"accountManagerId": "sample string 1",
"messages": [],
"canChange": true,
"cannotChangeReason": "sample string 3",
"description": "sample string 4",
"gender": "sample string 5",
"preferred": "sample string 6",
"state": "sample string 7"
}
application/xml, text/xml
Sample:
<AccountManager xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.BL.CRM.Edit"> <AccountManagerId>sample string 1</AccountManagerId> <CanChange>true</CanChange> <CannotChangeReason>sample string 3</CannotChangeReason> <Description>sample string 4</Description> <Gender>sample string 5</Gender> <Messages xmlns:d2p1="http://schemas.datacontract.org/2004/07/UNIT4.Multivers.API.Web.WebApi.Core.Models" /> <Preferred>sample string 6</Preferred> <State>sample string 7</State> </AccountManager>