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

NameDescriptionTypeAdditional information
payoutProfileID

integer

Required

Body Parameters

SetBankVerificationViewModel
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'FormUrlEncodedFormatter' to write type 'SetBankVerificationViewModel'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/xml, text/xml, application/json, text/json

Sample:

Sample not available.