POST api/Rep/PayoutProfile/{payoutProfileID}/bankverification
Allows ShapeTech (or any caller) to set BankVerified and BankVerifiedMessage directly on a payout profile — used during enrollment flows.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| payoutProfileID | integer |
Required |
Body Parameters
SetBankVerificationViewModel| Name | Description | Type | Additional information |
|---|---|---|---|
| BankVerified | boolean |
None. |
|
| BankVerifiedMessage | string |
None. |
Request Formats
application/xml, text/xml
Sample:
<SetBankVerificationViewModel> <BankVerified>True</BankVerified> <BankVerifiedMessage>sample string 2</BankVerifiedMessage> </SetBankVerificationViewModel>
application/json, text/json
Sample:
{
"BankVerified": true,
"BankVerifiedMessage": "sample string 2"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/xml, text/xml, application/json, text/json
Sample:
Sample not available.