PUT person/PutPersonInformations

Request Information

URI Parameters

None.

Body Parameters

PersonInformationsInput
NameDescriptionTypeAdditional 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.

Email

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "Guid": "07dd1003-02fd-459e-b805-b2218dbf785b",
  "PersonType": {
    "Guid": "400feb1e-b57a-47d1-9972-8a102e612a7e",
    "Code": "sample string 2",
    "Title": "sample string 3"
  },
  "Civility": {
    "Guid": "65055327-8f07-49e3-93ec-189223d04f3a",
    "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": "1d605748-9ff4-4935-9c84-555621e01682",
    "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>65055327-8f07-49e3-93ec-189223d04f3a</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>1d605748-9ff4-4935-9c84-555621e01682</d2p1:Guid>
    <d2p1:Title>sample string 3</d2p1:Title>
  </Country>
  <Email>sample string 12</Email>
  <Firstname>sample string 3</Firstname>
  <Guid>07dd1003-02fd-459e-b805-b2218dbf785b</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>400feb1e-b57a-47d1-9972-8a102e612a7e</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
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.