POST api/v1/Users/UpdateLoggedInPersonsCardName
Update LoggedIn Person card name
Request Information
URI Parameters
None.
Body Parameters
PersonCardNameViewModelName | 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": "1467ecdc-9472-462b-a50f-44aaaedaeada", "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>1467ecdc-9472-462b-a50f-44aaaedaeada</PersonsCardId> </PersonCardNameViewModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultName | 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>