POST api/G3/EditClient?clientId={clientId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
clientId

string

Required

Body Parameters

G3EditClientRequest
NameDescriptionTypeAdditional information
PhoneNumber

string

None.

Address

G3Address

None.

CountryOfResidence

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PhoneNumber": "sample string 1",
  "Address": {
    "AddressString": "sample string 1",
    "Apartment": "sample string 2",
    "Building": "sample string 3",
    "City": "sample string 4",
    "CountryCode": "sample string 5",
    "House": "sample string 6",
    "Postcode": "sample string 7",
    "State": "sample string 8",
    "Street": "sample string 9"
  },
  "CountryOfResidence": "sample string 2"
}

text/xml

Sample:
<G3EditClientRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RIA_API.Models.Requests.G3">
  <Address xmlns:d2p1="http://schemas.datacontract.org/2004/07/RIA_API.Models.G3">
    <d2p1:AddressString>sample string 1</d2p1:AddressString>
    <d2p1:Apartment>sample string 2</d2p1:Apartment>
    <d2p1:Building>sample string 3</d2p1:Building>
    <d2p1:City>sample string 4</d2p1:City>
    <d2p1:CountryCode>sample string 5</d2p1:CountryCode>
    <d2p1:House>sample string 6</d2p1:House>
    <d2p1:Postcode>sample string 7</d2p1:Postcode>
    <d2p1:State>sample string 8</d2p1:State>
    <d2p1:Street>sample string 9</d2p1:Street>
  </Address>
  <CountryOfResidence>sample string 2</CountryOfResidence>
  <PhoneNumber>sample string 1</PhoneNumber>
</G3EditClientRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, text/xml

Sample:

Sample not available.