POST api/Signup
Request Information
URI Parameters
None.
Body Parameters
SignupParmName | Description | Type | Additional information |
---|---|---|---|
FirstName | string |
None. |
|
LastName | string |
None. |
|
EmailAddress | string |
None. |
|
PhoneNumber | string |
None. |
|
UserID | string |
None. |
|
Password | string |
None. |
|
ReenterPassword | string |
None. |
|
CompanyName | string |
None. |
|
Address1 | string |
None. |
|
Address2 | string |
None. |
|
Address3 | string |
None. |
|
CityName | string |
None. |
|
StateProvID | string |
None. |
|
PostalCode | string |
None. |
|
CountryID | string |
None. |
|
IncludeInDirectory | boolean |
None. |
|
Service1Code | string |
None. |
|
Service1Name | string |
None. |
|
Service1Type | string |
None. |
|
Service2Code | string |
None. |
|
Service2Name | string |
None. |
|
Service2Type | string |
None. |
|
Service3Code | string |
None. |
|
Service3Name | string |
None. |
|
Service3Type | string |
None. |
|
Service4Code | string |
None. |
|
Service4Name | string |
None. |
|
Service4Type | string |
None. |
|
PromoCode | string |
None. |
|
InvoiceEmailAddress | string |
None. |
|
VerifyIdentity | string |
None. |
|
AgreeToTerms | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "FirstName": "sample string 1", "LastName": "sample string 2", "EmailAddress": "sample string 3", "PhoneNumber": "sample string 4", "UserID": "sample string 5", "Password": "sample string 6", "ReenterPassword": "sample string 7", "CompanyName": "sample string 8", "Address1": "sample string 9", "Address2": "sample string 10", "Address3": "sample string 11", "CityName": "sample string 12", "StateProvID": "sample string 13", "PostalCode": "sample string 14", "CountryID": "sample string 15", "IncludeInDirectory": true, "Service1Code": "sample string 17", "Service1Name": "sample string 18", "Service1Type": "sample string 19", "Service2Code": "sample string 20", "Service2Name": "sample string 21", "Service2Type": "sample string 22", "Service3Code": "sample string 23", "Service3Name": "sample string 24", "Service3Type": "sample string 25", "Service4Code": "sample string 26", "Service4Name": "sample string 27", "Service4Type": "sample string 28", "PromoCode": "sample string 29", "InvoiceEmailAddress": "sample string 30", "VerifyIdentity": "sample string 31", "AgreeToTerms": true }
application/xml, text/xml
Sample:
<SignupParm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <Address1>sample string 9</Address1> <Address2>sample string 10</Address2> <Address3>sample string 11</Address3> <AgreeToTerms>true</AgreeToTerms> <CityName>sample string 12</CityName> <CompanyName>sample string 8</CompanyName> <CountryID>sample string 15</CountryID> <EmailAddress>sample string 3</EmailAddress> <FirstName>sample string 1</FirstName> <IncludeInDirectory>true</IncludeInDirectory> <InvoiceEmailAddress>sample string 30</InvoiceEmailAddress> <LastName>sample string 2</LastName> <Password>sample string 6</Password> <PhoneNumber>sample string 4</PhoneNumber> <PostalCode>sample string 14</PostalCode> <PromoCode>sample string 29</PromoCode> <ReenterPassword>sample string 7</ReenterPassword> <Service1Code>sample string 17</Service1Code> <Service1Name>sample string 18</Service1Name> <Service1Type>sample string 19</Service1Type> <Service2Code>sample string 20</Service2Code> <Service2Name>sample string 21</Service2Name> <Service2Type>sample string 22</Service2Type> <Service3Code>sample string 23</Service3Code> <Service3Name>sample string 24</Service3Name> <Service3Type>sample string 25</Service3Type> <Service4Code>sample string 26</Service4Code> <Service4Name>sample string 27</Service4Name> <Service4Type>sample string 28</Service4Type> <StateProvID>sample string 13</StateProvID> <UserID>sample string 5</UserID> <VerifyIdentity>sample string 31</VerifyIdentity> </SignupParm>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SignupResponseName | Description | Type | Additional information |
---|---|---|---|
IsSuccessful | boolean |
None. |
|
ErrorMessage | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "IsSuccessful": true, "ErrorMessage": "sample string 2" }
application/xml, text/xml
Sample:
<SignupResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ParcelLogic.WebApi.Transportation.Models"> <ErrorMessage>sample string 2</ErrorMessage> <IsSuccessful>true</IsSuccessful> </SignupResponse>