POST api/v2/Users/UpdateLoggedInPersonsCardName

Update LoggedIn Person card name

Request Information

URI Parameters

None.

Body Parameters

PersonCardNameViewModel
NameDescriptionTypeAdditional information
PersonsCardId

Represents the Person's card Id Number

globally unique identifier

None.

PersonCardName

Represents the Person's card Name

string

None.

Request Formats

application/json, text/json

Sample:
{
  "PersonsCardId": "f58cf5f1-39c7-44bb-8211-b6f7de952dc8",
  "PersonCardName": "sample string 2"
}

application/xml, text/xml

Sample:
<PersonCardNameViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <PersonCardName>sample string 2</PersonCardName>
  <PersonsCardId>f58cf5f1-39c7-44bb-8211-b6f7de952dc8</PersonsCardId>
</PersonCardNameViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
ResultCode

Represents the result code

integer

None.

Description

Represents a description of the result code

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ResultCode": 1,
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIWebRole.Controllers">
  <Description>sample string 2</Description>
  <HttpStatusCode>Continue</HttpStatusCode>
  <ResultCode>1</ResultCode>
</Result>