POST api/Customer/Register?lunchboxId={lunchboxId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
lunchboxId | integer |
None. |
Body Parameters
CustomerRegisterName | Description | Type | Additional information |
---|---|---|---|
string |
None. |
||
Firstname | string |
None. |
|
Lastname | string |
None. |
|
Company | string |
None. |
|
Phone | string |
None. |
|
PhoneExt | string |
None. |
|
Password | string |
None. |
|
Subscribe | boolean |
None. |
|
KeepMeLoggedIn | boolean |
None. |
|
CardId | string |
None. |
|
GiftCardSwipe | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Email": "sample string 1", "Firstname": "sample string 2", "Lastname": "sample string 3", "Company": "sample string 4", "Phone": "sample string 5", "PhoneExt": "sample string 6", "Password": "sample string 7", "Subscribe": true, "KeepMeLoggedIn": true, "CardId": "sample string 10", "GiftCardSwipe": "sample string 11" }
text/html
Sample:
{"Email":"sample string 1","Firstname":"sample string 2","Lastname":"sample string 3","Company":"sample string 4","Phone":"sample string 5","PhoneExt":"sample string 6","Password":"sample string 7","Subscribe":true,"KeepMeLoggedIn":true,"CardId":"sample string 10","GiftCardSwipe":"sample string 11"}
application/xml, text/xml
Sample:
<CustomerRegister xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Specialtys.DTO"> <CardId>sample string 10</CardId> <Company>sample string 4</Company> <Email>sample string 1</Email> <Firstname>sample string 2</Firstname> <GiftCardSwipe>sample string 11</GiftCardSwipe> <KeepMeLoggedIn>true</KeepMeLoggedIn> <Lastname>sample string 3</Lastname> <Password>sample string 7</Password> <Phone>sample string 5</Phone> <PhoneExt>sample string 6</PhoneExt> <Subscribe>true</Subscribe> </CustomerRegister>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html, application/xml, text/xml
Sample:
Sample not available.