POST api/v1/Users/UpdateLoggedInPersonsCardName
Update LoggedIn Person card name
Request Information
URI Parameters
None.
Body Parameters
PersonCardNameViewModel| Name | Description | Type | Additional 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": "756e12d2-e7da-4040-af42-66921443be05",
"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>756e12d2-e7da-4040-af42-66921443be05</PersonsCardId> </PersonCardNameViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Result| Name | Description | Type | Additional 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>