POST api/CorporateAccount/CheckCorporateAccountPassword
Request Information
URI Parameters
None.
Body Parameters
CheckCorporateAccountPasswordRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CustomerId | globally unique identifier |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"CustomerId": "66aab93c-d629-4ae6-9f25-9c636f1e3ba6",
"Password": "sample string 2"
}
application/xml, text/xml
Sample:
<CheckCorporateAccountPasswordRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <CustomerId>66aab93c-d629-4ae6-9f25-9c636f1e3ba6</CustomerId> <Password>sample string 2</Password> </CheckCorporateAccountPasswordRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckCorporateAccountPasswordResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true
}
application/xml, text/xml
Sample:
<CheckCorporateAccountPasswordResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response"> <Success>true</Success> </CheckCorporateAccountPasswordResponse>