POST api/CorporateAccount/CheckCorporateAccountPassword
Request Information
URI Parameters
None.
Body Parameters
CheckCorporateAccountPasswordRequestName | Description | Type | Additional information |
---|---|---|---|
CustomerId | globally unique identifier |
None. |
|
Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CustomerId": "105de5cd-b45e-4282-bc3f-b966e9cc9604", "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>105de5cd-b45e-4282-bc3f-b966e9cc9604</CustomerId> <Password>sample string 2</Password> </CheckCorporateAccountPasswordRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckCorporateAccountPasswordResponseName | 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>