EntityPayment Method

Verify micro deposits

PUT
Complete micro deposit verification

Path parameters

entityIdstringRequired
paymentMethodIdstringRequired

Request

This endpoint expects an object.
amounts
list of integersRequired
The amounts of the micro deposits in cents

Response

This endpoint returns a union
Bank Account
OR
Card
OR
Check
OR
Custom
OR
Off Platform
PUT
1curl -X PUT https://api.mercoa.com/entity/ent_8545a84e-a45f-41bf-bdf1-33b42a55812c/paymentMethod/pm_4794d597-70dc-4fec-b6ec-c5988e759769/micro-deposits \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "amounts": [
6 40,
7 2
8 ]
9}'
200
Updated
1{
2 "type": "bankAccount",
3 "accountName": "My Checking Account",
4 "accountNumber": "99988767623",
5 "accountType": "CHECKING",
6 "bankName": "Chase",
7 "createdAt": "2021-01-01T00:00:00Z",
8 "id": "pm_4794d597-70dc-4fec-b6ec-c5988e759769",
9 "isDefaultDestination": true,
10 "isDefaultSource": true,
11 "routingNumber": "12345678",
12 "status": "VERIFIED",
13 "supportedCurrencies": [
14 "USD"
15 ],
16 "updatedAt": "2021-01-01T00:00:00Z"
17}