POST api/Customer/LazyToCustomer
Request Information
URI Parameters
None.
Body Parameters
LazyToCustomerRequestName | Description | Type | Additional information |
---|---|---|---|
RequestId | string |
None. |
|
Password | string |
None. |
|
NotificationPermission | boolean |
None. |
|
FirstName | string |
None. |
|
LastName | string |
None. |
|
Source | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "RequestId": "sample string 1", "Password": "sample string 2", "NotificationPermission": true, "FirstName": "sample string 4", "LastName": "sample string 5", "Source": "sample string 6" }
application/xml, text/xml
Sample:
<LazyToCustomerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <FirstName>sample string 4</FirstName> <LastName>sample string 5</LastName> <NotificationPermission>true</NotificationPermission> <Password>sample string 2</Password> <RequestId>sample string 1</RequestId> <Source>sample string 6</Source> </LazyToCustomerRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LazyToCustomerResponseName | Description | Type | Additional information |
---|---|---|---|
Messages | Collection of MessageModel |
None. |
|
Data | Object |
None. |
|
Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{ "Messages": [ { "Code": 1, "Level": "sample string 2", "Message": "sample string 3", "SubMessage": "sample string 4" }, { "Code": 1, "Level": "sample string 2", "Message": "sample string 3", "SubMessage": "sample string 4" } ], "Data": {}, "Success": true }
application/xml, text/xml
Sample:
<LazyToCustomerResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Data xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common" /> <Messages xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common"> <MessageModel> <Code>1</Code> <Level>sample string 2</Level> <Message>sample string 3</Message> <SubMessage>sample string 4</SubMessage> </MessageModel> <MessageModel> <Code>1</Code> <Level>sample string 2</Level> <Message>sample string 3</Message> <SubMessage>sample string 4</SubMessage> </MessageModel> </Messages> <Success xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response.Common">true</Success> </LazyToCustomerResponse>