GET | /signup/api/user/{userID}/dob/{dob}/standardSignup/memberInfo |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
UserID | path | int | No | |
Dob | path | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
MemberInfo | form | MemberDto | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
UserID | form | int | No | |
FirstName | form | string | No | |
MiddleName | form | string | No | |
LastName | form | string | No | |
form | string | No | ||
Phone | form | string | No | |
ClientUserId | form | string | No | |
DateOfBirth | form | string | No | |
Address | form | AddressDto | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Address1 | form | string | No | |
Address2 | form | string | No | |
City | form | string | No | |
State | form | string | No | |
ZipCode | form | string | No | |
Country | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /signup/api/user/{userID}/dob/{dob}/standardSignup/memberInfo HTTP/1.1 Host: devapi.billhighway.com Accept: text/jsv
HTTP/1.1 200 OK Content-Type: text/jsv Content-Length: length { MemberInfo: { UserID: 0, FirstName: String, MiddleName: String, LastName: String, Email: String, Phone: String, ClientUserId: String, DateOfBirth: String, Address: { Address1: String, Address2: String, City: String, State: String, ZipCode: String, Country: String } } }