PUT person/PutPersonInformations
Request Information
URI Parameters
None.
Body Parameters
PersonInformationsInput| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Guid | globally unique identifier |
None. |
|
| PersonType | PersonTypeOutput |
None. |
|
| Civility | CivilityOutput |
None. |
|
| Firstname | string |
None. |
|
| Lastname | string |
None. |
|
| Street1 | string |
None. |
|
| Street2 | string |
None. |
|
| Street3 | string |
None. |
|
| PostalCode | string |
None. |
|
| City | string |
None. |
|
| Country | CountryOutput |
None. |
|
| Phone | string |
None. |
|
| Mobile | string |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Guid": "ec24c677-b2d1-48fd-b95e-c9fb267b3953",
"PersonType": {
"Guid": "2e4be23f-0529-4b49-8fda-8f10cd216ab7",
"Code": "sample string 2",
"Title": "sample string 3"
},
"Civility": {
"Guid": "35a2ca24-803c-4acc-a554-722b6c8895c4",
"Code": "sample string 2",
"Title": "sample string 3"
},
"Firstname": "sample string 3",
"Lastname": "sample string 4",
"Street1": "sample string 5",
"Street2": "sample string 6",
"Street3": "sample string 7",
"PostalCode": "sample string 8",
"City": "sample string 9",
"Country": {
"Guid": "59335c2f-cfd6-47c2-b4d7-d21d27ab3349",
"Code": "sample string 2",
"Title": "sample string 3",
"European": true
},
"Phone": "sample string 10",
"Mobile": "sample string 11",
"Email": "sample string 12"
}
application/xml, text/xml
Sample:
<PersonInformationsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestApi.Models.Inputs">
<City>sample string 9</City>
<Civility xmlns:d2p1="http://schemas.datacontract.org/2004/07/RestApi.Models.Outputs">
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:Guid>35a2ca24-803c-4acc-a554-722b6c8895c4</d2p1:Guid>
<d2p1:Title>sample string 3</d2p1:Title>
</Civility>
<Country xmlns:d2p1="http://schemas.datacontract.org/2004/07/RestApi.Models.Outputs">
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:European>true</d2p1:European>
<d2p1:Guid>59335c2f-cfd6-47c2-b4d7-d21d27ab3349</d2p1:Guid>
<d2p1:Title>sample string 3</d2p1:Title>
</Country>
<Email>sample string 12</Email>
<Firstname>sample string 3</Firstname>
<Guid>ec24c677-b2d1-48fd-b95e-c9fb267b3953</Guid>
<Id>1</Id>
<Lastname>sample string 4</Lastname>
<Mobile>sample string 11</Mobile>
<PersonType xmlns:d2p1="http://schemas.datacontract.org/2004/07/RestApi.Models.Outputs">
<d2p1:Code>sample string 2</d2p1:Code>
<d2p1:Guid>2e4be23f-0529-4b49-8fda-8f10cd216ab7</d2p1:Guid>
<d2p1:Title>sample string 3</d2p1:Title>
</PersonType>
<Phone>sample string 10</Phone>
<PostalCode>sample string 8</PostalCode>
<Street1>sample string 5</Street1>
<Street2>sample string 6</Street2>
<Street3>sample string 7</Street3>
</PersonInformationsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |