POST API/CustomerAccount/CreateCustomerAccount
Request Information
URI Parameters
None.
Body Parameters
CreateCustomerAccountRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| PIN | string |
None. |
|
| ValidationMessage | string |
None. |
|
| ErrorCode | ErrorCodes |
None. |
Request Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"PIN": "sample string 2",
"ValidationMessage": "sample string 3",
"ErrorCode": 101
}
application/xml, text/xml
Sample:
<CreateCustomerAccountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Budget_WebAPI.Models"> <Email>sample string 1</Email> <PIN>sample string 2</PIN> </CreateCustomerAccountRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorCode | ErrorCodes |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorCode": 101,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<BaseResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Budget_WebAPI.Models"> <ErrorCode>InvalidToken</ErrorCode> <Message>sample string 2</Message> <Success>true</Success> </BaseResponse>