> ## Documentation Index
> Fetch the complete documentation index at: https://developers.dwolla.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Transfer Lifecycle

> Learn about the complete lifecycle of a transfer in Dwolla and find out what webhooks you can expect to receive during each step.

export const TransferWorkflow = () => {
  const [activeStep, setActiveStep] = useState(0);
  const [selectedSender, setSelectedSender] = useState('');
  const [selectedSource, setSelectedSource] = useState('');
  const [selectedReceiver, setSelectedReceiver] = useState('');
  const [selectedDestination, setSelectedDestination] = useState('');
  const [currentWebhookData, setCurrentWebhookData] = useState(null);
  const [isUnsupported, setIsUnsupported] = useState(false);
  const [expandedWebhooks, setExpandedWebhooks] = useState(new Set());
  const toggleWebhook = webhookId => {
    const newExpanded = new Set(expandedWebhooks);
    if (newExpanded.has(webhookId)) {
      newExpanded.delete(webhookId);
    } else {
      newExpanded.add(webhookId);
    }
    setExpandedWebhooks(newExpanded);
  };
  const webhookData = {
    a1: {
      "name": "Master Account Bank to Master Account Balance",
      "transferId": "513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account Bank to Account Balance",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "d7b51f83-6d2c-42c8-816d-cab2b32ac2b3",
            "resourceId": "513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-28T20:27:29.060Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/d7b51f83-6d2c-42c8-816d-cab2b32ac2b3"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/513e7e8f-1c68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:27:29.060Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "101.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:27:32.647Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IMEJ2VM9"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Account Balance",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "b4348b45-2ffd-4343-9865-2f9fc6dea26b",
            "resourceId": "513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2021-12-28T20:29:21.051Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/b4348b45-2ffd-4343-9865-2f9fc6dea26b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/513e7e8f-1c68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:29:21.051Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "513e7e8f-1c68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "101.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:27:32.647Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IMEJ2VM9"
          }
        }]
      }]
    },
    a10: {
      "name": "Master Account balance to Verified Customer bank",
      "transferId": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account balance to Customer A Balance",
        "set": [{
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "c13b9877-362b-4864-95cb-144e99141c1a",
            "resourceId": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-30T21:40:30.293Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/c13b9877-362b-4864-95cb-144e99141c1a"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T21:40:30.293Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:36.837Z"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "c3de04f1-5307-4c3b-9206-32f55204f01c",
            "resourceId": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-30T21:40:30.293Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/c3de04f1-5307-4c3b-9206-32f55204f01c"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T21:40:30.293Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:36.837Z"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer balance",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "6369a877-abc1-4d37-bade-006098059bb6",
            "resourceId": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-30T21:40:30.293Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/6369a877-abc1-4d37-bade-006098059bb6"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T21:40:30.293Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:36.837Z"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "a5beebf8-5036-41ad-9ac4-dea266493bb3",
            "resourceId": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-30T21:40:30.293Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a5beebf8-5036-41ad-9ac4-dea266493bb3"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T21:40:30.293Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ee646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:36.837Z"
          }
        }, {
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "a27ddb58-1c01-4aaf-950f-4355669dc509",
            "resourceId": "ef646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2021-12-30T21:40:31.767Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a27ddb58-1c01-4aaf-950f-4355669dc509"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T21:40:31.767Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "ef646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:37.320Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IGR85VR2"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Completed to Verified Customer bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "2909424c-1e16-4258-a717-a7df7f514b3e",
            "resourceId": "ef646c1f-b969-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2021-12-30T21:47:04.188Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/2909424c-1e16-4258-a717-a7df7f514b3e"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T21:47:04.188Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/ee646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ef646c1f-b969-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "ef646c1f-b969-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "110.00",
              "currency": "USD"
            },
            "created": "2021-12-30T21:40:37.320Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IGR85VR2"
          }
        }]
      }]
    },
    a2: {
      "name": "Account bank to Receive Only User bank",
      "transferId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account bank to Account balance",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a94de3d2-6bd5-46e3-8596-940c5157499e",
            "resourceId": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-28T20:31:58.762Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a94de3d2-6bd5-46e3-8596-940c5157499e"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:31:58.762Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.950Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IJJPAW62"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "419d94f6-c8e4-4b58-9652-bc78843a888c",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-28T20:31:58.824Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/419d94f6-c8e4-4b58-9652-bc78843a888c"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:31:58.824Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "91cd3c7f-b4ea-4d43-95eb-6dfe234cc661",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-28T20:31:58.840Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/91cd3c7f-b4ea-4d43-95eb-6dfe234cc661"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-28T20:31:58.840Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Processed to Account Balance",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "be543436-e05d-4596-bd91-b87387d66ddd",
            "resourceId": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2021-12-28T20:41:25.277Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/be543436-e05d-4596-bd91-b87387d66ddd"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:41:25.277Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.950Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IJJPAW62"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Account balance to Receive Only User bank",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "f191d6dc-5396-4ff4-ae5c-0407990bb609",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-28T21:17:15.856Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/f191d6dc-5396-4ff4-ae5c-0407990bb609"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T21:17:15.856Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I2MN85ZB"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "304fe69a-8ae4-46bf-a00b-4ff15524f06b",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-28T21:17:16.092Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/304fe69a-8ae4-46bf-a00b-4ff15524f06b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-28T21:17:16.092Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I2MN85ZB"
          }
        }]
      }]
    },
    a3: {
      "name": "Account bank to Unverified Customer bank",
      "transferId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account bank to Account balance",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a94de3d2-6bd5-46e3-8596-940c5157499e",
            "resourceId": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-28T20:31:58.762Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a94de3d2-6bd5-46e3-8596-940c5157499e"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:31:58.762Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.950Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IJJPAW62"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "419d94f6-c8e4-4b58-9652-bc78843a888c",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-28T20:31:58.824Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/419d94f6-c8e4-4b58-9652-bc78843a888c"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:31:58.824Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "91cd3c7f-b4ea-4d43-95eb-6dfe234cc661",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-28T20:31:58.840Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/91cd3c7f-b4ea-4d43-95eb-6dfe234cc661"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-28T20:31:58.840Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Processed to Account Balance",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "be543436-e05d-4596-bd91-b87387d66ddd",
            "resourceId": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2021-12-28T20:41:25.277Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/be543436-e05d-4596-bd91-b87387d66ddd"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T20:41:25.277Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "29148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.950Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IJJPAW62"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Account balance to Unverified Customer bank",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "f191d6dc-5396-4ff4-ae5c-0407990bb609",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-28T21:17:15.856Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/f191d6dc-5396-4ff4-ae5c-0407990bb609"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T21:17:15.856Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I2MN85ZB"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "304fe69a-8ae4-46bf-a00b-4ff15524f06b",
            "resourceId": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-28T21:17:16.092Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/304fe69a-8ae4-46bf-a00b-4ff15524f06b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-28T21:17:16.092Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/29148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/2a148336-1d68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "2a148336-1d68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "102.00",
              "currency": "USD"
            },
            "created": "2021-12-28T20:32:02.927Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I2MN85ZB"
          }
        }]
      }]
    },
    a4: {
      "name": "Master Account bank to Verified Customer balance",
      "transferId": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account bank to Verified Customer balance",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a1048919-418d-4337-9a93-3b4c83bea118",
            "resourceId": "a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-28T22:05:05.156Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a1048919-418d-4337-9a93-3b4c83bea118"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T22:05:05.156Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "104.00",
              "currency": "USD"
            },
            "created": "2021-12-28T22:05:08.823Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IL927OZP"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "1c358daf-f6fc-4f9a-929f-6537853bea6d",
            "resourceId": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-28T22:05:05.235Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/1c358daf-f6fc-4f9a-929f-6537853bea6d"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T22:05:05.235Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "104.00",
              "currency": "USD"
            },
            "created": "2021-12-28T22:05:08.803Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "c3db5936-b96c-4bb8-9f35-8970bf2c2ea0",
            "resourceId": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-28T22:05:05.235Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/c3db5936-b96c-4bb8-9f35-8970bf2c2ea0"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-28T22:05:05.235Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "104.00",
              "currency": "USD"
            },
            "created": "2021-12-28T22:05:08.803Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer balance",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ff8b608f-053d-48eb-a16b-e3feac54b4fc",
            "resourceId": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-28T22:35:15.182Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ff8b608f-053d-48eb-a16b-e3feac54b4fc"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-28T22:35:15.182Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "104.00",
              "currency": "USD"
            },
            "created": "2021-12-28T22:05:08.803Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "resource-type": "account",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "resource-type": "customer",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/949df329-c23f-e911-8116-917813db6033",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/19670af8-67df-46cf-be46-9eb2f77a0c7a",
                "resource-type": "event",
                "type": "application/vnd.dwolla.v1.hal+json"
              }
            },
            "created": "2019-03-06T03:46:13.645Z",
            "id": "19670af8-67df-46cf-be46-9eb2f77a0c7a",
            "resourceId": "949df329-c23f-e911-8116-917813db6033",
            "topic": "customer_transfer_completed"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/a1b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a2b6f337-2a68-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "104.00",
              "currency": "USD"
            },
            "created": "2021-12-28T22:05:08.803Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }]
    },
    a5: {
      "name": "Master Account bank to Verified Customer bank",
      "transferId": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account Bank to Account balance",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "d04072f0-133b-4f22-a216-5635adae9621",
            "resourceId": "7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-30T16:29:25.266Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/d04072f0-133b-4f22-a216-5635adae9621"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:29:25.266Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.697Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IK7G585P"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "411e3487-a052-4991-be56-a26061a16d68",
            "resourceId": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-30T16:29:25.297Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/411e3487-a052-4991-be56-a26061a16d68"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:29:25.297Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.677Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "fd6fc2fe-37c0-441f-9a77-8f1875471e89",
            "resourceId": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-30T16:29:25.297Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/fd6fc2fe-37c0-441f-9a77-8f1875471e89"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:29:25.297Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.677Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Account balance to Verified Customer balance",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a8353378-d225-4263-b603-aa4ac3105bf6",
            "resourceId": "7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2021-12-30T16:33:59.126Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a8353378-d225-4263-b603-aa4ac3105bf6"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:33:59.126Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.697Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IK7G585P"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "447c7fc4-6b33-43fd-81f6-e16410731edf",
            "resourceId": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-30T16:33:59.940Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/447c7fc4-6b33-43fd-81f6-e16410731edf"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:33:59.940Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.677Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "8ad9a75c-6922-45ea-a8ab-ffadba5e19db",
            "resourceId": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-30T16:33:59.482Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/8ad9a75c-6922-45ea-a8ab-ffadba5e19db"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:33:59.482Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7cc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:29:30.677Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "1b29381c-8717-4809-8c47-32393c6a7c4c",
            "resourceId": "35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2021-12-30T16:34:00.136Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/1b29381c-8717-4809-8c47-32393c6a7c4c"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:34:00.136Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:34:05.570Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IWKOJ892"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Verified Customer Balance to Verified Customer Bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "5a1172d8-d082-4dd8-aa61-d452e2e0c48f",
            "resourceId": "35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2021-12-30T16:42:18.217Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/5a1172d8-d082-4dd8-aa61-d452e2e0c48f"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:42:18.217Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/7dc684a9-8d69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "35fcb74a-8e69-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "105.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:34:05.570Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IWKOJ892"
          }
        }]
      }]
    },
    a6: {
      "name": "Master Account balance to Master Account bank",
      "transferId": "3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account Balance to Account Bank",
        "set": [{
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "768f2c02-3e69-4692-bfb0-b73d02f6eab0",
            "resourceId": "3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2021-12-30T16:44:47.233Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/768f2c02-3e69-4692-bfb0-b73d02f6eab0"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/3ec80fcf-8f69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:44:47.233Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "106.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:44:52.673Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IEWMA2K5"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Account bank",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "795547ab-549b-4b25-a56a-01163dfaff23",
            "resourceId": "3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2021-12-30T16:45:50.943Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/795547ab-549b-4b25-a56a-01163dfaff23"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/3ec80fcf-8f69-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:45:50.943Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "3ec80fcf-8f69-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "106.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:44:52.673Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IEWMA2K5"
          }
        }]
      }]
    },
    a7: {
      "name": "Master Account balance to Receive Only User bank",
      "transferId": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Master Account balance to Receive Only bank",
        "set": [{
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ff38e1b3-1eba-4379-bba2-1d65c51dfa05",
            "resourceId": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-30T16:48:34.134Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ff38e1b3-1eba-4379-bba2-1d65c51dfa05"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:48:34.134Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "107.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:48:39.540Z",
            "individualAchId": "I96M8LJP"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "e9e4f8d1-e6a0-410e-bff0-f1b4368f1b57",
            "resourceId": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-30T16:48:34.134Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e9e4f8d1-e6a0-410e-bff0-f1b4368f1b57"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-30T16:48:34.134Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "107.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:48:39.540Z",
            "individualAchId": "I96M8LJP"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Receive Only User bank",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "e469596d-f14b-4d3c-a121-9eef9fe2aa65",
            "resourceId": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-30T16:51:39.952Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e469596d-f14b-4d3c-a121-9eef9fe2aa65"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:51:39.952Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "107.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:48:39.540Z",
            "individualAchId": "I96M8LJP"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "b086f69e-19a4-4ebd-8d74-f1b2d7813ace",
            "resourceId": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-30T16:51:40.125Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/b086f69e-19a4-4ebd-8d74-f1b2d7813ace"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2021-12-30T16:51:40.125Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/a6314d56-9069-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "a6314d56-9069-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "107.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:48:39.540Z",
            "individualAchId": "I96M8LJP"
          }
        }]
      }]
    },
    a8: {
      "name": "Master Account balance to Unverified Customer bank",
      "transferId": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account balance to Unverified Customer bank",
        "set": [{
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ed289b43-e78b-4c97-a5cb-a100f2e60baf",
            "resourceId": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-04T14:32:53.147Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ed289b43-e78b-4c97-a5cb-a100f2e60baf"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-04T14:32:53.147Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "108.00",
              "currency": "USD"
            },
            "created": "2022-01-04T14:32:57.137Z",
            "individualAchId": "I8KWYN22"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "ecb709a4-3dff-4e78-810a-a2a5c334f846",
            "resourceId": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-04T14:32:53.147Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ecb709a4-3dff-4e78-810a-a2a5c334f846"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-04T14:32:53.147Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "108.00",
              "currency": "USD"
            },
            "created": "2022-01-04T14:32:57.137Z",
            "individualAchId": "I8KWYN22"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Unverified Customer bank",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a0768712-62a6-4df6-96eb-d96b80a70b93",
            "resourceId": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-04T14:35:25.570Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a0768712-62a6-4df6-96eb-d96b80a70b93"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-04T14:35:25.570Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "108.00",
              "currency": "USD"
            },
            "created": "2022-01-04T14:32:57.137Z",
            "individualAchId": "I8KWYN22"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "6bd03360-7e2c-43e9-9542-042c6fedfba8",
            "resourceId": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-04T14:35:25.744Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/6bd03360-7e2c-43e9-9542-042c6fedfba8"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-04T14:35:25.744Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cf411c35-6b6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "108.00",
              "currency": "USD"
            },
            "created": "2022-01-04T14:32:57.137Z",
            "individualAchId": "I8KWYN22"
          }
        }]
      }]
    },
    a9: {
      "name": "Master Account balance to Verified Customer balance",
      "transferId": "c16bc157-9169-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Account balance to Verified Customer balance",
        "set": [{
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "e6371fa5-3c1c-4dc3-a02a-e2eaf9ac2c1f",
            "resourceId": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2021-12-30T16:57:09.478Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e6371fa5-3c1c-4dc3-a02a-e2eaf9ac2c1f"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:57:09.478Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "109.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:57:15.797Z"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "c5847623-cfa6-4933-b0a8-5298833aab08",
            "resourceId": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2021-12-30T16:57:09.478Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/c5847623-cfa6-4933-b0a8-5298833aab08"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:57:09.478Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "109.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:57:15.797Z"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verfied Customer balance",
        "set": [{
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "53f72ede-096f-4bc5-a759-4f7878afcdf7",
            "resourceId": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2021-12-30T16:57:09.478Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/53f72ede-096f-4bc5-a759-4f7878afcdf7"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2021-12-30T16:57:09.478Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "109.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:57:15.797Z"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "97d73d58-548b-4c05-9af0-a05a045df6ac",
            "resourceId": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2021-12-30T16:57:09.478Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/97d73d58-548b-4c05-9af0-a05a045df6ac"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2021-12-30T16:57:09.478Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/835e018a-9169-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "835e018a-9169-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "109.00",
              "currency": "USD"
            },
            "created": "2021-12-30T16:57:15.797Z"
          }
        }]
      }]
    },
    c1: {
      "name": "Unverified Customer Bank to Master Account Balanace",
      "transferId": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Unverified Customer Bank to Account Balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "291e342e-99fc-492d-89fd-0cb7e7d8c99b",
            "resourceId": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T01:40:35.790Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/291e342e-99fc-492d-89fd-0cb7e7d8c99b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T01:40:35.790Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "111.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:40:37.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJ9N"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "e1f11246-1dd8-4fa3-855a-5b4c87b4c852",
            "resourceId": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-03T01:40:35.790Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e1f11246-1dd8-4fa3-855a-5b4c87b4c852"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:40:35.790Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "111.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:40:37.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJ9N"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Account Balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "8546f4b3-78c2-42be-804d-e1b302b529f7",
            "resourceId": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T01:43:53.003Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/8546f4b3-78c2-42be-804d-e1b302b529f7"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T01:43:53.003Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "111.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:40:37.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJ9N"
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "17e5cce4-8232-4dce-89dc-3d01e6b5c392",
            "resourceId": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-03T01:43:53.239Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/17e5cce4-8232-4dce-89dc-3d01e6b5c392"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:43:53.239Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8dcc2826-366c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "8dcc2826-366c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "111.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:40:37.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJ9N"
          }
        }]
      }]
    },
    c2: {
      "name": "Unverified Customer Bank to Master Account Bank",
      "transferId": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Unverified Customer Bank to Account Balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "025eaf46-8af3-48e4-82bb-1520a5a20ee0",
            "resourceId": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T01:48:22.951Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/025eaf46-8af3-48e4-82bb-1520a5a20ee0"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T01:48:22.951Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:48:25.163Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I4EY99E5"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "04d5681f-a4db-4f9d-9ba0-5b78c21558e5",
            "resourceId": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-03T01:48:22.952Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/04d5681f-a4db-4f9d-9ba0-5b78c21558e5"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:48:22.952Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:48:25.163Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I4EY99E5"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Account balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "94513ede-07f7-4718-8e3b-c521d5b53421",
            "resourceId": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T01:52:27.808Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/94513ede-07f7-4718-8e3b-c521d5b53421"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T01:52:27.808Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:48:25.163Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I4EY99E5"
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "39442c90-3251-4c18-b5c8-f8f952f98673",
            "resourceId": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-03T01:52:28.088Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/39442c90-3251-4c18-b5c8-f8f952f98673"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:52:28.088Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "97f5de3c-376c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:48:25.163Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I4EY99E5"
          }
        }, {
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "07cea8fa-3a35-4c39-ba35-6ebb563136e2",
            "resourceId": "9092dece-376c-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2022-01-03T01:52:27.890Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/07cea8fa-3a35-4c39-ba35-6ebb563136e2"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:52:27.890Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "9092dece-376c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:52:30.130Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IAE4OOER"
          }
        }]
      }, {
        "stepTitle": "Third Leg",
        "stepDescription": "Completed to Account bank",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "dae3f761-1fd4-460b-801c-02d8b248ee77",
            "resourceId": "9092dece-376c-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2022-01-03T01:55:16.501Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/dae3f761-1fd4-460b-801c-02d8b248ee77"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T01:55:16.501Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/97f5de3c-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9092dece-376c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "9092dece-376c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "112.00",
              "currency": "USD"
            },
            "created": "2022-01-03T01:52:30.130Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IAE4OOER"
          }
        }]
      }]
    },
    c3: {
      "name": "Unverified Customer Bank to Verified Customer Balance",
      "transferId": "1c3becb4-396c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Unverified customer Bank to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "79feff37-771b-4015-ac01-65d6720bf95d",
            "resourceId": "1c3becb4-396c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:06:03.339Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/79feff37-771b-4015-ac01-65d6720bf95d"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T02:06:03.339Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "1c3becb4-396c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "113.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:06:05.567Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IVKRWWOG"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "ee285c13-c60d-4899-91c7-d9064e8093a1",
            "resourceId": "1c3becb4-396c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:06:03.339Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ee285c13-c60d-4899-91c7-d9064e8093a1"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:06:03.339Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/1c3becb4-396c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "1c3becb4-396c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "113.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:06:05.567Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IVKRWWOG"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "cb784118-52a5-401e-a207-57ddc208e9f6",
            "resourceId": "ac6437eb-386c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T02:09:06.399Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/cb784118-52a5-401e-a207-57ddc208e9f6"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ac6437eb-386c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T02:09:06.399Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ac6437eb-386c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ac6437eb-386c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "113.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:00:29.620Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I96MPP67"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "da33f06f-9269-455d-8a6a-af90a89b40fe",
            "resourceId": "ac6437eb-386c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T02:09:06.774Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/da33f06f-9269-455d-8a6a-af90a89b40fe"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/ac6437eb-386c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:09:06.774Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/5d27cf9b-1778-4746-aaa0-86409cee8435",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/ac6437eb-386c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "ac6437eb-386c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "113.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:00:29.620Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "I96MPP67"
          }
        }]
      }]
    },
    c4: {
      "name": "Unverified Customer Bank to Verified Customer Bank",
      "transferId": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Unverified Customer Bank to Verified Customer Banlance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "8b0e3861-15b0-432b-a381-aa3dd35580c4",
            "resourceId": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:13:09.886Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/8b0e3861-15b0-432b-a381-aa3dd35580c4"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T02:13:09.886Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:13:12.137Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "INZXBBO9"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "306d29a2-ffa9-4b15-96af-2b975353a301",
            "resourceId": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:13:09.886Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/306d29a2-ffa9-4b15-96af-2b975353a301"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:13:09.886Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:13:12.137Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "INZXBBO9"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "a97956e6-c73b-42b2-8ba3-62dd8089796a",
            "resourceId": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T02:16:07.987Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a97956e6-c73b-42b2-8ba3-62dd8089796a"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172"
              }
            },
            "created": "2022-01-03T02:16:07.987Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:13:12.137Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "INZXBBO9"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "e0097d66-33af-4eb3-b2e7-25866a4a33f9",
            "resourceId": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T02:16:08.252Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e0097d66-33af-4eb3-b2e7-25866a4a33f9"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:16:08.252Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/14b4e3cd-a846-451a-a1c2-3c6ba8d14172",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/00bc04b6-bdee-411c-bf3c-8a4c8b1f7cd5",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:13:12.137Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "INZXBBO9"
          }
        }, {
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "03bda0cd-1366-4729-9cca-55dff0b87674",
            "resourceId": "1352581d-3b6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T02:16:08.008Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/03bda0cd-1366-4729-9cca-55dff0b87674"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:16:08.008Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "1352581d-3b6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:16:10.280Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "I684ZZNY"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Verified Customer Balance to Verified Customer Bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "89a005bf-a495-4609-ab7a-f8f10b8a3a0d",
            "resourceId": "1352581d-3b6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T02:18:08.142Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/89a005bf-a495-4609-ab7a-f8f10b8a3a0d"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:18:08.142Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/cd4a2cb3-3a6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/1352581d-3b6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "1352581d-3b6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "114.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:16:10.280Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "I684ZZNY"
          }
        }]
      }]
    },
    v1: {
      "name": "Verified Customer Bank to Master Acccount Balance",
      "transferId": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer Bank to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "30541617-3213-4dd5-8ab5-2e743cf37297",
            "resourceId": "9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T02:26:04.574Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/30541617-3213-4dd5-8ab5-2e743cf37297"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:26:04.574Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:26:06.417Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJP8"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "5ece10d5-f162-4e64-8a6f-21ba1613530b",
            "resourceId": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:26:04.590Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/5ece10d5-f162-4e64-8a6f-21ba1613530b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:26:04.590Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:26:06.397Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "bf4d1a78-a30d-4b28-b930-bd6e91202c88",
            "resourceId": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-03T02:26:04.590Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/bf4d1a78-a30d-4b28-b930-bd6e91202c88"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T02:26:04.590Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:26:06.397Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Account Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "77b785c2-6bb1-4cca-8ab7-8c40d0ab5e13",
            "resourceId": "9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T02:30:44.824Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/77b785c2-6bb1-4cca-8ab7-8c40d0ab5e13"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:30:44.824Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:26:06.417Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JJP8"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "c1c1dcad-07f4-4949-8aa2-c7dbdb96c97e",
            "resourceId": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:30:45.192Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/c1c1dcad-07f4-4949-8aa2-c7dbdb96c97e"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:30:45.192Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:30:45.192ZZ",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "6a869bc8-b29a-4b5a-bf43-5876c11db035",
            "resourceId": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-03T02:30:45.192Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/6a869bc8-b29a-4b5a-bf43-5876c11db035"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T02:30:45.192Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/9d81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/b268f6b9-db3b-4ecc-83a2-8823a53ec8b7",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "9e81ab80-3c6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "115.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:26:06.397Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }]
    },
    v10: {
      "name": "Verified Customer Balance to Unverified Customer Bank",
      "transferId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer Balance to Unverified Customer Bank",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "50dde579-6138-4027-9eaf-733efcaa4279",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-05T22:12:08.521Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/50dde579-6138-4027-9eaf-733efcaa4279",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:12:08.521Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/751776f8-98b0-45c0-aecf-effa1dd23339",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T22:12:13.027Z",
            "individualAchId": "IJJPXV72"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "ad2b0819-302a-44bb-b64b-76b6709b5719",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-05T22:12:08.521Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ad2b0819-302a-44bb-b64b-76b6709b5719",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:12:08.521Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/751776f8-98b0-45c0-aecf-effa1dd23339",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T22:12:13.027Z",
            "individualAchId": "IJJPXV72"
          }
        }]
      }, {
        "stepTitle": "Second leg",
        "stepDescription": "Completed to Unverified Customer Bank",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ec8932de-3547-471f-b99c-838b5973214f",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-05T22:15:22.288Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ec8932de-3547-471f-b99c-838b5973214f",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:15:22.288Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "e31f7b06-ad4a-492d-95ab-2d5671470bb4",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-05T22:15:22.431Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e31f7b06-ad4a-492d-95ab-2d5671470bb4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:15:22.431Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }]
      }]
    },
    v11: {
      "name": "Verified Customer A balance to Verified Customer B balance",
      "transferId": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer A balance to Verified B Customer balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/f79ddfb4-8583-4fb2-9060-9fc0f4bd6076",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "f79ddfb4-8583-4fb2-9060-9fc0f4bd6076",
            "created": "2022-01-04T22:14:40.544Z",
            "topic": "customer_transfer_created",
            "resourceId": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/0f814bfb-d513-4137-a5c8-287a0b57bde1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "311.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:14:44.087Z"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/957e5ba7-a702-45c5-86a8-91d3e4e99c8e",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "957e5ba7-a702-45c5-86a8-91d3e4e99c8e",
            "created": "2022-01-04T22:14:40.544Z",
            "topic": "customer_transfer_created",
            "resourceId": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/0f814bfb-d513-4137-a5c8-287a0b57bde1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "311.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:14:44.087Z"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified B Customer balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/4f9e9f72-3769-44e6-a13d-40975c900b43",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "4f9e9f72-3769-44e6-a13d-40975c900b43",
            "created": "2022-01-04T22:14:40.544Z",
            "topic": "customer_transfer_completed",
            "resourceId": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/0f814bfb-d513-4137-a5c8-287a0b57bde1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "311.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:14:44.087Z"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/92aedea6-3d41-4de5-a3e9-a604b2684261",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "92aedea6-3d41-4de5-a3e9-a604b2684261",
            "created": "2022-01-04T22:14:40.544Z",
            "topic": "customer_transfer_completed",
            "resourceId": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/0f814bfb-d513-4137-a5c8-287a0b57bde1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9a81bfb7-ab6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "311.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:14:44.087Z"
          }
        }]
      }]
    },
    v12: {
      "name": "Verified Customer A balance to Verified Customer B bank",
      "transferId": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer A balance to Verified Customer B balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e4b08eed-75ae-4ba9-8ac5-852d7acdcf3a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e4b08eed-75ae-4ba9-8ac5-852d7acdcf3a",
            "created": "2022-01-04T22:35:13.722Z",
            "topic": "customer_transfer_created",
            "resourceId": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.103Z"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/9d5791cd-656e-4f0c-bfc6-e62eb249f05c",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "9d5791cd-656e-4f0c-bfc6-e62eb249f05c",
            "created": "2022-01-04T22:35:13.722Z",
            "topic": "customer_transfer_created",
            "resourceId": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.103Z"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer B balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/bdf6ed01-f0d4-40f5-9ad2-08242d71e7ea",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "bdf6ed01-f0d4-40f5-9ad2-08242d71e7ea",
            "created": "2022-01-04T22:35:13.722Z",
            "topic": "customer_transfer_completed",
            "resourceId": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.103Z"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/62663d98-34a7-46d9-b1a2-6cc0992b535e",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "62663d98-34a7-46d9-b1a2-6cc0992b535e",
            "created": "2022-01-04T22:35:13.722Z",
            "topic": "customer_transfer_completed",
            "resourceId": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cf3f1ad4-fc48-45d3-8aff-0ef5577b8a17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e0761446-8e1b-4f78-99de-b28f4954b3f1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.103Z"
          }
        }, {
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/d42c1af5-3743-495e-b4bd-8e81a4aa4089",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "d42c1af5-3743-495e-b4bd-8e81a4aa4089",
            "created": "2022-01-04T22:35:15.202Z",
            "topic": "customer_bank_transfer_created",
            "resourceId": "e8c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.780Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "I4EYA7X9"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Completed to Verified Customer B bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/7b128831-340a-436e-b154-e5e768e5f53b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/0ee84069-47c5-455c-b425-633523291dc3",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "7b128831-340a-436e-b154-e5e768e5f53b",
            "created": "2022-01-04T22:42:01.417Z",
            "topic": "customer_bank_transfer_completed",
            "resourceId": "e8c95196-ae6d-ec11-813c-f6ddd36b41b8"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/70088704-f2f1-443e-bd41-f20305d6c912",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e7c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/bdb4fc57-c844-41d5-9553-9e8bfb00498d",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "e8c95196-ae6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "312.00",
              "currency": "USD"
            },
            "created": "2022-01-04T22:35:18.780Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "I4EYA7X9"
          }
        }]
      }]
    },
    v2: {
      "name": "Verified Customer Bank to Master Account Bank",
      "transferId": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer Bank to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "408c7fef-8ba1-4b71-acfe-e9912f1e290d",
            "resourceId": "e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T02:57:28.161Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/408c7fef-8ba1-4b71-acfe-e9912f1e290d"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:57:28.161Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.467Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IWKOGG4A"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "20fe6dcd-7eaf-4aca-8e0e-0cc37d321672",
            "resourceId": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T02:57:28.177Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/20fe6dcd-7eaf-4aca-8e0e-0cc37d321672"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T02:57:28.177Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.450Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "f4df7b67-afc3-4c86-a140-9254aa26bc25",
            "resourceId": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-03T02:57:28.177Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/f4df7b67-afc3-4c86-a140-9254aa26bc25"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T02:57:28.177Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.450Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Verified Customer Balance to Account Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "91de382d-09d8-46d4-b61e-7bf2649884a8",
            "resourceId": "e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T03:12:36.324Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/91de382d-09d8-46d4-b61e-7bf2649884a8"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T03:12:36.324Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.467Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IWKOGG4A"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "1438a66e-1fbb-4223-b6b1-04af4d20bfab",
            "resourceId": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T03:12:36.539Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/1438a66e-1fbb-4223-b6b1-04af4d20bfab"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T03:12:36.539Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.450Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "360aa6f1-7a5d-4907-9ce7-0645bb1642fe",
            "resourceId": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-03T03:12:36.791Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/360aa6f1-7a5d-4907-9ce7-0645bb1642fe"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T03:12:36.791Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e8b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T02:57:30.450Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "2c125375-152a-4912-9a0b-16284a9a7cdd",
            "resourceId": "b7494a01-436c-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_created",
            "timestamp": "2022-01-03T03:12:36.876Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/2c125375-152a-4912-9a0b-16284a9a7cdd"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T03:12:36.876Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b7494a01-436c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T03:12:39.187Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IB5XOOOJ"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Account Balance to Account Bank",
        "set": [{
          "webhookTopic": "bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "06a84b6a-4fa3-4c85-ab47-e2dbf6f33ebf",
            "resourceId": "b7494a01-436c-ec11-813c-f6ddd36b41b8",
            "topic": "bank_transfer_completed",
            "timestamp": "2022-01-03T03:17:43.059Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/06a84b6a-4fa3-4c85-ab47-e2dbf6f33ebf"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8"
              }
            },
            "created": "2022-01-03T03:17:43.059Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/e9b3a6e3-406c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b7494a01-436c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b7494a01-436c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "116.00",
              "currency": "USD"
            },
            "created": "2022-01-03T03:12:39.187Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IB5XOOOJ"
          }
        }]
      }]
    },
    v3: {
      "name": "Verified Customer Bank to Receive Only User Bank",
      "transferId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer Bank to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "290df90e-2180-4326-a435-2221084e4759",
            "resourceId": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/290df90e-2180-4326-a435-2221084e4759"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.127Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IL92ZNJ6"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "dda54ac6-bb31-468e-ba10-0f3141e98b61",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/dda54ac6-bb31-468e-ba10-0f3141e98b61"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "a29d9c22-db08-4938-8ce0-3959fc5a2a92",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a29d9c22-db08-4938-8ce0-3959fc5a2a92"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Processed to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "1bc33643-8705-4531-b0ac-f08cef115784",
            "resourceId": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T17:27:29.093Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/1bc33643-8705-4531-b0ac-f08cef115784"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:27:29.093Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.127Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IL92ZNJ6"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Verified Customer balance to Receive Only User bank",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "03152fce-24f3-4287-9457-f4586e8aa668",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T17:32:07.729Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/03152fce-24f3-4287-9457-f4586e8aa668"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:32:07.729Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JOEN"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "60953c51-0de6-4648-9ee8-3a751e4ad264",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T17:32:07.902Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/60953c51-0de6-4648-9ee8-3a751e4ad264"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2022-01-03T17:32:07.902Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JOEN"
          }
        }]
      }]
    },
    v4: {
      "name": "Verified Customer Bank to Unverified Customer Bank",
      "transferId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer Bank to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "290df90e-2180-4326-a435-2221084e4759",
            "resourceId": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/290df90e-2180-4326-a435-2221084e4759"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.127Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IL92ZNJ6"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "dda54ac6-bb31-468e-ba10-0f3141e98b61",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/dda54ac6-bb31-468e-ba10-0f3141e98b61"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "a29d9c22-db08-4938-8ce0-3959fc5a2a92",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T17:24:48.141Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/a29d9c22-db08-4938-8ce0-3959fc5a2a92"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2022-01-03T17:24:48.141Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Processed to Verified Customer Balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "1bc33643-8705-4531-b0ac-f08cef115784",
            "resourceId": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T17:27:29.093Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/1bc33643-8705-4531-b0ac-f08cef115784"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:27:29.093Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.127Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IL92ZNJ6"
          }
        }]
      }, {
        "stepTitle": "Third leg",
        "stepDescription": "Verified Customer balance to Unverified Customer bank",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "03152fce-24f3-4287-9457-f4586e8aa668",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T17:32:07.729Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/03152fce-24f3-4287-9457-f4586e8aa668"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T17:32:07.729Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JOEN"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "60953c51-0de6-4648-9ee8-3a751e4ad264",
            "resourceId": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T17:32:07.902Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/60953c51-0de6-4648-9ee8-3a751e4ad264"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17"
              }
            },
            "created": "2022-01-03T17:32:07.902Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/701d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/643abc2f-4f2f-419e-a6a1-e6a62dbf3b29",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/4f4229eb-d0d8-4f69-9dfd-05b06db7dd17",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "711d4d0e-ba6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "117.00",
              "currency": "USD"
            },
            "created": "2022-01-03T17:24:51.080Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IO89JOEN"
          }
        }]
      }]
    },
    v5: {
      "name": "Verified Customer bank to Verified Customer balance",
      "transferId": "583e1927-cc6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer bank to Verified Customer balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "3550594b-b87e-426c-8fa4-c2516fc754dc",
            "resourceId": "583e1927-cc6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T19:34:20.584Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/3550594b-b87e-426c-8fa4-c2516fc754dc"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/583e1927-cc6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:34:20.584Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/583e1927-cc6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/583e1927-cc6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "583e1927-cc6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "119.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:34:23.667Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IWKOG2PA"
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Completed to Verified Customer balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "839c49c9-aefb-49bd-900c-20482c7acd76",
            "resourceId": "583e1927-cc6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T19:44:54.583Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/839c49c9-aefb-49bd-900c-20482c7acd76"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/583e1927-cc6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:44:54.583Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/583e1927-cc6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "583e1927-cc6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "119.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:34:23.667Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IWKOG2PA"
          }
        }]
      }]
    },
    v6: {
      "name": "Verified Customer A bank to Verified Customer B bank",
      "transferId": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer A bank to Verified Customer A balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "db2b460e-2699-4325-9878-17d5c750186a",
            "resourceId": "8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-03T19:47:38.017Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/db2b460e-2699-4325-9878-17d5c750186a"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:47:38.017Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IRZ48YBG"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "dcbd0e3c-580b-459a-9255-da0659cca927",
            "resourceId": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T19:47:38.033Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/dcbd0e3c-580b-459a-9255-da0659cca927"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:47:38.033Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.520Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "562ac510-90c3-475e-b0a7-06a2da0a7d25",
            "resourceId": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-03T19:47:38.033Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/562ac510-90c3-475e-b0a7-06a2da0a7d25"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T19:47:38.033Z"
          },
          "transferResponse": {
            "_links": {
              "cancel": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.520Z",
            "clearing": {
              "source": "standard"
            }
          }
        }]
      }, {
        "stepTitle": "Second Leg",
        "stepDescription": "Verified Customer A balance to Verified Customer B balance",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "dbc73226-9965-4a26-94b7-bf56fd494d2b",
            "resourceId": "8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T19:49:55.243Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/dbc73226-9965-4a26-94b7-bf56fd494d2b"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:49:55.243Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.550Z",
            "clearing": {
              "source": "standard"
            },
            "individualAchId": "IRZ48YBG"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "fcee83f2-eb13-4728-b313-10dc1ba795e3",
            "resourceId": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T19:49:55.513Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/fcee83f2-eb13-4728-b313-10dc1ba795e3"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae"
              }
            },
            "created": "2022-01-03T19:49:55.513Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.520Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "0e880839-8567-4401-b72f-ab8f74e8dd2d",
            "resourceId": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-03T19:49:55.797Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/0e880839-8567-4401-b72f-ab8f74e8dd2d"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T19:49:55.797Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/0bfc9a0b-e87e-426f-abc3-40714fcfa8ae",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8a4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "funded-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/ea551c31-04e4-4280-ae55-5de9e350f167",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:47:40.520Z",
            "clearing": {
              "source": "standard"
            }
          }
        }, {
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "183f076c-cb06-49a4-9e08-b24dc6019b26",
            "resourceId": "b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T19:50:12.026Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/183f076c-cb06-49a4-9e08-b24dc6019b26"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T19:50:12.026Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:49:59.143Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IB5XOJY9"
          }
        }]
      }, {
        "stepTitle": "Third Leg",
        "stepDescription": "Verified Customer B balance to Verified Customer B bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "183f076c-cb06-49a4-9e08-b24dc6019b26",
            "resourceId": "b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-03T19:52:12.026Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/183f076c-cb06-49a4-9e08-b24dc6019b26"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/ad5f2162-404a-4c4c-994e-6ab6c3a13254"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49"
              }
            },
            "created": "2022-01-03T19:52:12.026Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/1a640ca1-cdae-4f98-83a0-f6b89958ac49",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "funding-transfer": {
                "href": "https://api-sandbox.dwolla.com/transfers/8b4a1302-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/1ec13466-029b-456c-9f00-e9c687d95365",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b0feae54-ce6c-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "120.00",
              "currency": "USD"
            },
            "created": "2022-01-03T19:49:59.143Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IB5XOJY9"
          }
        }]
      }]
    },
    v7: {
      "name": "Verified Customer balance to Master Account balance",
      "transferId": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer balance to Master Account balance",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "81eef764-0594-4cbf-a676-64cade2afcdc",
            "resourceId": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-04T20:14:13.715Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/81eef764-0594-4cbf-a676-64cade2afcdc",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-04T20:14:13.715Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/7919af12-843d-4578-9d61-319f8c7d1c8b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "150.00",
              "currency": "USD"
            },
            "created": "2022-01-04T20:14:13.715Z"
          }
        }, {
          "webhookTopic": "transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "defb11d6-d3f3-4df0-b2b4-479a3d8912de",
            "resourceId": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_created",
            "timestamp": "2022-01-04T20:14:13.715Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/defb11d6-d3f3-4df0-b2b4-479a3d8912de",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "created": "2022-01-04T20:14:13.715Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/7919af12-843d-4578-9d61-319f8c7d1c8b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "150.00",
              "currency": "USD"
            },
            "created": "2022-01-04T20:14:17.837Z"
          }
        }]
      }, {
        "stepTitle": "Second leg",
        "stepDescription": "Completed to Master Account balance",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "81eef764-0594-4cbf-a676-64cade2afcdc",
            "resourceId": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-04T20:14:13.715Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/81eef764-0594-4cbf-a676-64cade2afcdc",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-04T20:14:13.715Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/7919af12-843d-4578-9d61-319f8c7d1c8b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "150.00",
              "currency": "USD"
            },
            "created": "2022-01-04T20:14:17.837Z"
          }
        }, {
          "webhookTopic": "transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "defb11d6-d3f3-4df0-b2b4-479a3d8912de",
            "resourceId": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "topic": "transfer_completed",
            "timestamp": "2022-01-04T20:14:17.837Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/defb11d6-d3f3-4df0-b2b4-479a3d8912de",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "created": "2022-01-04T20:14:17.837Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/7919af12-843d-4578-9d61-319f8c7d1c8b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              }
            },
            "id": "567aa7e4-9a6d-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "150.00",
              "currency": "USD"
            },
            "created": "2022-01-04T20:14:17.837Z"
          }
        }]
      }]
    },
    v8: {
      "name": "Verified Customer A balance to Verified Customer A bank",
      "transferId": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer balance to Verified Customer bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "8128ff8a-3b39-4286-aeb0-aacb9144650a",
            "resourceId": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_created",
            "timestamp": "2022-01-05T17:31:59.699Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/8128ff8a-3b39-4286-aeb0-aacb9144650a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T17:31:59.699Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }]
      }, {
        "stepTitle": "Second leg",
        "stepDescription": "Completed to Verified Customer bank",
        "set": [{
          "webhookTopic": "customer_bank_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ad37b2c4-7bfa-4c03-a3ba-72f098353a14",
            "resourceId": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_bank_transfer_completed",
            "timestamp": "2022-01-05T17:32:37.896Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ad37b2c4-7bfa-4c03-a3ba-72f098353a14",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T17:32:37.896Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }]
      }]
    },
    v9: {
      "name": "Verified Customer balance to Receive Only User bank",
      "transferId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
      "webhooksArray": [{
        "stepTitle": "First leg",
        "stepDescription": "Verified Customer balance to Recieve Only User bank",
        "set": [{
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "50dde579-6138-4027-9eaf-733efcaa4279",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-05T22:12:08.521Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/50dde579-6138-4027-9eaf-733efcaa4279",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:12:08.521Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/751776f8-98b0-45c0-aecf-effa1dd23339",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T22:12:13.027Z",
            "individualAchId": "IJJPXV72"
          }
        }, {
          "webhookTopic": "customer_transfer_created",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "ad2b0819-302a-44bb-b64b-76b6709b5719",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_created",
            "timestamp": "2022-01-05T22:12:08.521Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ad2b0819-302a-44bb-b64b-76b6709b5719",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:12:08.521Z"
          },
          "transferResponse": {
            "_links": {
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/751776f8-98b0-45c0-aecf-effa1dd23339",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/08688ccf-c92a-40e4-8dbe-4b744993706a",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "id": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "status": "pending",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T22:12:13.027Z",
            "individualAchId": "IJJPXV72"
          }
        }]
      }, {
        "stepTitle": "Second leg",
        "stepDescription": "Completed to Recieve Only User bank",
        "set": [{
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "SENDER",
          "webhookPayload": {
            "id": "ec8932de-3547-471f-b99c-838b5973214f",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-05T22:15:22.288Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/ec8932de-3547-471f-b99c-838b5973214f",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:15:22.288Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }, {
          "webhookTopic": "customer_transfer_completed",
          "senderOrReceiver": "RECEIVER",
          "webhookPayload": {
            "id": "e31f7b06-ad4a-492d-95ab-2d5671470bb4",
            "resourceId": "c0e01d88-746e-ec11-813c-f6ddd36b41b8",
            "topic": "customer_transfer_completed",
            "timestamp": "2022-01-05T22:15:22.431Z",
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/events/e31f7b06-ad4a-492d-95ab-2d5671470bb4",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "event"
              },
              "resource": {
                "href": "https://api-sandbox.dwolla.com/transfers/c0e01d88-746e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json"
              },
              "account": {
                "href": "https://api-sandbox.dwolla.com/accounts/2e21f010-3023-4891-aced-ed726d7cd5e1",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "account"
              },
              "customer": {
                "href": "https://api-sandbox.dwolla.com/customers/49be2f7b-9a59-45da-97ea-bb43f5e401cd",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              }
            },
            "created": "2022-01-05T22:15:22.431Z"
          },
          "transferResponse": {
            "_links": {
              "self": {
                "href": "https://api-sandbox.dwolla.com/transfers/b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "transfer"
              },
              "source": {
                "href": "https://api-sandbox.dwolla.com/customers/cb20de8e-e7e5-4108-8f1e-e76ef0950a21",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "customer"
              },
              "destination": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              },
              "destination-funding-source": {
                "href": "https://api-sandbox.dwolla.com/funding-sources/e6875935-e401-4ccd-a892-9769a9e8ac3b",
                "type": "application/vnd.dwolla.v1.hal+json",
                "resource-type": "funding-source"
              }
            },
            "id": "b01cf362-4d6e-ec11-813c-f6ddd36b41b8",
            "status": "processed",
            "amount": {
              "value": "200.00",
              "currency": "USD"
            },
            "created": "2022-01-05T17:32:04.030Z",
            "clearing": {
              "destination": "next-day"
            },
            "individualAchId": "IK7G45Z2"
          }
        }]
      }]
    }
  };
  const senderOptions = [{
    value: 'account',
    label: 'Account',
    hasSources: ['balance', 'bank'],
    canTransactWith: ['vcr', 'cr', 'ro']
  }, {
    value: 'vcr',
    label: 'Verified Customer',
    hasSources: ['balance', 'bank'],
    canTransactWith: ['account', 'vcr', 'cr', 'ro']
  }, {
    value: 'cr',
    label: 'Unverified Customer',
    hasSources: ['bank'],
    canTransactWith: ['account', 'vcr']
  }];
  const sourceOptions = [{
    value: 'balance',
    label: 'Balance'
  }, {
    value: 'bank',
    label: 'Bank'
  }];
  const receiverOptions = [{
    value: 'account',
    label: 'Account',
    hasDestinations: ['balance', 'bank']
  }, {
    value: 'vcr',
    label: 'Verified Customer',
    hasDestinations: ['balance', 'bank']
  }, {
    value: 'cr',
    label: 'Unverified Customer',
    hasDestinations: ['bank']
  }, {
    value: 'ro',
    label: 'Receive-Only User',
    hasDestinations: ['bank']
  }];
  const destinationOptions = [{
    value: 'balance',
    label: 'Balance'
  }, {
    value: 'bank',
    label: 'Bank'
  }];
  const fundsFlowCombinations = {
    account: {
      a1: ["account", "bank", "account", "balance"],
      a2: ["account", "bank", "ro", "bank"],
      a3: ["account", "bank", "cr", "bank"],
      a4: ["account", "bank", "vcr", "balance"],
      a5: ["account", "bank", "vcr", "bank"],
      a6: ["account", "balance", "account", "bank"],
      a7: ["account", "balance", "ro", "bank"],
      a8: ["account", "balance", "cr", "bank"],
      a9: ["account", "balance", "vcr", "balance"],
      a10: ["account", "balance", "vcr", "bank"]
    },
    cr: {
      c1: ["cr", "bank", "account", "balance"],
      c2: ["cr", "bank", "account", "bank"],
      c3: ["cr", "bank", "vcr", "balance"],
      c4: ["cr", "bank", "vcr", "bank"]
    },
    vcr: {
      v1: ["vcr", "bank", "account", "balance"],
      v2: ["vcr", "bank", "account", "bank"],
      v3: ["vcr", "bank", "ro", "bank"],
      v4: ["vcr", "bank", "cr", "bank"],
      v5: ["vcr", "bank", "vcr", "balance"],
      v6: ["vcr", "bank", "vcr", "bank"],
      v7: ["vcr", "balance", "account", "balance"],
      v8: ["vcr", "balance", "account", "bank"],
      v9: ["vcr", "balance", "ro", "bank"],
      v10: ["vcr", "balance", "cr", "bank"],
      v11: ["vcr", "balance", "vcr", "balance"],
      v12: ["vcr", "balance", "vcr", "bank"]
    }
  };
  const findWebhookData = (sender, source, receiver, destination) => {
    const flow = [sender, source, receiver, destination];
    const flowString = flow.toString();
    const senderFlows = fundsFlowCombinations[sender];
    if (!senderFlows) return null;
    for (const [key, combination] of Object.entries(senderFlows)) {
      if (combination.toString() === flowString) {
        return webhookData[key];
      }
    }
    return null;
  };
  const getAvailableSourceOptions = () => {
    if (!selectedSender) return [];
    const sender = senderOptions.find(s => s.value === selectedSender);
    return sourceOptions.filter(option => sender?.hasSources.includes(option.value));
  };
  const getAvailableReceiverOptions = () => {
    if (!selectedSender) return [];
    const sender = senderOptions.find(s => s.value === selectedSender);
    return receiverOptions.filter(option => sender?.canTransactWith.includes(option.value));
  };
  const getAvailableDestinationOptions = () => {
    if (!selectedReceiver) return [];
    const receiver = receiverOptions.find(r => r.value === selectedReceiver);
    return destinationOptions.filter(option => receiver?.hasDestinations.includes(option.value));
  };
  const handleSenderChange = value => {
    setSelectedSender(value);
    setSelectedSource('');
    setSelectedReceiver('');
    setSelectedDestination('');
    setCurrentWebhookData(null);
    setIsUnsupported(false);
  };
  const handleSourceChange = value => {
    setSelectedSource(value);
    setSelectedReceiver('');
    setSelectedDestination('');
    setCurrentWebhookData(null);
    setIsUnsupported(false);
  };
  const handleReceiverChange = value => {
    setSelectedReceiver(value);
    setSelectedDestination('');
    setCurrentWebhookData(null);
    setIsUnsupported(false);
  };
  const handleDestinationChange = value => {
    setSelectedDestination(value);
    setCurrentWebhookData(null);
    setIsUnsupported(false);
  };
  const handleStart = () => {
    const data = findWebhookData(selectedSender, selectedSource, selectedReceiver, selectedDestination);
    if (data) {
      setCurrentWebhookData(data);
      setActiveStep(1);
      setIsUnsupported(false);
      setExpandedWebhooks(new Set());
    } else {
      setIsUnsupported(true);
      setActiveStep(1);
      setExpandedWebhooks(new Set());
    }
  };
  const handleBack = () => {
    if (activeStep > 0) {
      if (activeStep === 1) {
        setActiveStep(0);
        setCurrentWebhookData(null);
        setIsUnsupported(false);
        setExpandedWebhooks(new Set());
      } else {
        setActiveStep(activeStep - 1);
      }
    }
  };
  const handleNext = () => {
    if (currentWebhookData && activeStep < currentWebhookData.webhooksArray.length) {
      setActiveStep(activeStep + 1);
    }
  };
  const ordinal = n => {
    const s = ["th", "st", "nd", "rd"];
    const v = n % 100;
    return n + (s[(v - 20) % 10] || s[v] || s[0]);
  };
  return <div className="max-w-4xl mx-auto rounded-lg border border-gray-300 dark:border-gray-600">
      {}
        <div className="min-h-20 bg-gray-50 dark:bg-gray-950 rounded-t-lg border-t-transparent border-b border-gray-300 dark:border-gray-600 flex items-center justify-center p-4 mb-6">
        {currentWebhookData && !isUnsupported ? <div className="flex justify-center items-center w-full max-w-4xl mx-auto px-4">
            <div className="flex items-center justify-between w-full relative">
              {["Create transfer", ...currentWebhookData.webhooksArray.map((_, index) => `${ordinal(index + 1)} leg`)].map((step, index) => <div key={index} className="flex flex-col items-center relative flex-1">
                  {}
                  {index < currentWebhookData.webhooksArray.length && <div className="absolute top-3 left-1/2 w-full h-0.5 bg-gray-300 dark:bg-gray-600 z-0" style={{
    transform: 'translateX(12px)'
  }}></div>}
                  
                  {}
                  <div className={`relative z-10 w-6 h-6 rounded-full border-2 flex items-center justify-center text-xs font-medium transition-all duration-200 ${index === 0 ? 'cursor-default' : 'cursor-pointer hover:scale-110'} ${activeStep === index || activeStep > index ? 'text-white' : 'bg-white dark:bg-gray-800 border-gray-300 dark:border-gray-600 text-gray-600 dark:text-gray-300'}`} style={{
    backgroundColor: activeStep === index || activeStep > index ? '#ca4c24' : undefined,
    borderColor: activeStep === index || activeStep > index ? '#ca4c24' : undefined
  }} onClick={() => {
    if (index > 0) {
      setActiveStep(index);
      setExpandedWebhooks(new Set());
    }
  }}>
                    {activeStep > index ? <svg className="w-3 h-3" fill="currentColor" viewBox="0 0 20 20">
                        <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" />
                      </svg> : index === 0 ? "●" : index}
                  </div>
                  
                  {}
                  <div className={`text-xs mt-2 text-center transition-colors ${activeStep === index ? 'font-medium' : 'text-gray-600 dark:text-gray-400'}`} style={{
    color: activeStep === index ? '#ca4c24' : undefined
  }}>
                    {step}
                  </div>
                </div>)}
            </div>
          </div> : <h2 className="font-medium text-xl mt-0 mb-0 text-gray-900 dark:text-white">Select a funds flow</h2>}
      </div>

      {}
      <div className="px-8 py-3">
        {activeStep === 0 ? <div className="max-w-sm mx-auto space-y-2">
            <h2 className="text-center text-gray-800 dark:text-gray-200 text-lg font-medium mt-0">Sender:</h2>
            
            <div>
                <label className="block text-xs text-gray-600 dark:text-gray-400 mb-1 uppercase tracking-wide">Sender Type</label>
                <select className="w-full p-3 border-b-2 border-gray-300 dark:border-gray-600 bg-transparent text-gray-900 dark:text-gray-100 focus:border-gray-500 dark:focus:border-gray-400 focus:outline-none" value={selectedSender} onChange={e => handleSenderChange(e.target.value)}>
                <option value="">Select Sender Type</option>
                {senderOptions.map(option => <option key={option.value} value={option.value}>{option.label}</option>)}
              </select>
            </div>

            <div>
              <label className="block text-xs text-gray-600 dark:text-gray-400 mb-1 uppercase tracking-wide">Sender Source</label>
              <select className="w-full p-3 border-b-2 border-gray-300 dark:border-gray-600 bg-transparent text-gray-900 dark:text-gray-100 focus:border-gray-500 dark:focus:border-gray-400 focus:outline-none disabled:opacity-50" value={selectedSource} onChange={e => handleSourceChange(e.target.value)} disabled={!selectedSender}>
                <option value="">Select Sender Source</option>
                {getAvailableSourceOptions().map(option => <option key={option.value} value={option.value}>{option.label}</option>)}
              </select>
            </div>

            <h2 className="text-center text-gray-800 dark:text-gray-200 text-lg font-medium pt-4">Receiver:</h2>

            <div>
                <label className="block text-xs text-gray-600 dark:text-gray-400 mb-1 uppercase tracking-wide">Receiver Type</label>
                <select className="w-full p-3 border-b-2 border-gray-300 dark:border-gray-600 bg-transparent text-gray-900 dark:text-gray-100 focus:border-gray-500 dark:focus:border-gray-400 focus:outline-none disabled:opacity-50" value={selectedReceiver} onChange={e => handleReceiverChange(e.target.value)} disabled={!selectedSender || !selectedSource}>
                <option value="">Select Receiver Type</option>
                {getAvailableReceiverOptions().map(option => <option key={option.value} value={option.value}>{option.label}</option>)}
              </select>
            </div>

            <div>
                <label className="block text-xs text-gray-600 dark:text-gray-400 mb-1 uppercase tracking-wide">Receiver Destination</label>
                <select className="w-full p-3 border-b-2 border-gray-300 dark:border-gray-600 bg-transparent text-gray-900 dark:text-gray-100 focus:border-gray-500 dark:focus:border-gray-400 focus:outline-none disabled:opacity-50" value={selectedDestination} onChange={e => handleDestinationChange(e.target.value)} disabled={!selectedReceiver}>
                <option value="">Select Receiver Destination</option>
                {getAvailableDestinationOptions().map(option => <option key={option.value} value={option.value}>{option.label}</option>)}
              </select>
            </div>
          </div> : isUnsupported ? <div className="text-center">
            <h2 className="text-xl font-medium text-gray-800 dark:text-gray-200 mb-2">Select a different funds flow.</h2>
            <p className="text-gray-600 dark:text-gray-400">
              {senderOptions.find(s => s.value === selectedSender)?.label} <strong>{sourceOptions.find(s => s.value === selectedSource)?.label}</strong> to{" "}
              {receiverOptions.find(r => r.value === selectedReceiver)?.label} <strong>{destinationOptions.find(d => d.value === selectedDestination)?.label}</strong> is not supported.
            </p>
          </div> : currentWebhookData && <div className="space-y-6">
            <div className="text-center">
              <h2 className="text-lg font-medium leading-none text-gray-800 dark:text-gray-200 mb-2 mt-0">
                {currentWebhookData.webhooksArray[activeStep - 1]?.stepTitle || 'Webhook Data'}
              </h2>
              <p className="text-gray-600 dark:text-gray-400 max-w-md mx-auto">
                {currentWebhookData.webhooksArray[activeStep - 1]?.stepDescription || 'Transfer step description'}
              </p>
            </div>
            
            {currentWebhookData.webhooksArray[activeStep - 1]?.set.map((webhook, index) => {
    const webhookId = `${activeStep}-${index}`;
    const isExpanded = expandedWebhooks.has(webhookId);
    return <div key={index} className={`bg-white dark:bg-gray-800 border border-gray-300 dark:border-gray-600 rounded-lg overflow-hidden transition-shadow duration-200 hover:shadow-lg hover:drop-shadow-md ${isExpanded ? 'shadow-lg drop-shadow-md' : 'shadow-sm'}`}>
                    <div className="flex items-center justify-between p-4 bg-gray-100 dark:bg-gray-700 border-b border-gray-300 dark:border-gray-600 cursor-pointer hover:bg-gray-200 dark:hover:bg-gray-600 transition-colors" onClick={() => toggleWebhook(webhookId)}>
                    <div className="flex items-center space-x-2">
                      <svg className={`w-4 h-4 text-orange-500 transition-transform duration-200 ${isExpanded ? 'rotate-90' : ''}`} fill="currentColor" viewBox="0 0 20 20">
                        <path fillRule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clipRule="evenodd" />
                      </svg>
                        <span className="text-sm font-medium text-gray-800 dark:text-gray-200">{webhook.webhookTopic}</span>
                      </div>
                      <span className="text-xs bg-white dark:bg-gray-800 px-2 py-1 rounded border border-gray-300 dark:border-gray-600 text-gray-600 dark:text-gray-400">{webhook.senderOrReceiver}</span>
                   </div>
                  {isExpanded && <div className="border-t border-gray-300 dark:border-gray-600 px-2">
                        <pre className="text-xs bg-gray-900 dark:bg-gray-900 text-green-400 p-4 overflow-x-auto">
{`${JSON.stringify(webhook.webhookPayload, null, 2)}`}
                      </pre>
                    </div>}
                </div>;
  })}
          </div>}
      </div>

      {}
      <div className="p-4 flex justify-end space-x-3 mt-6">
        {activeStep === 0 ? <button onClick={handleStart} disabled={!selectedSender || !selectedSource || !selectedReceiver || !selectedDestination} className="px-5 py-1 text-white rounded disabled:bg-gray-400 disabled:cursor-not-allowed transition-colors font-medium" style={{
    backgroundColor: !selectedSender || !selectedSource || !selectedReceiver || !selectedDestination ? undefined : '#ca4c24'
  }} onMouseEnter={e => !e.target.disabled && (e.target.style.backgroundColor = '#b43e1f')} onMouseLeave={e => !e.target.disabled && (e.target.style.backgroundColor = '#ca4c24')}>
            Start
          </button> : <>
            <button onClick={handleBack} className="px-5 py-1 border border-gray-300 dark:border-gray-600 text-gray-700 dark:text-gray-300 rounded hover:bg-gray-50 dark:hover:bg-gray-700 transition-colors font-medium">
              Back
            </button>
            {currentWebhookData && activeStep < currentWebhookData.webhooksArray.length && <button onClick={handleNext} className="px-5 py-1 text-white rounded transition-colors font-medium" style={{
    backgroundColor: '#ca4c24'
  }} onMouseEnter={e => e.target.style.backgroundColor = '#b43e1f'} onMouseLeave={e => e.target.style.backgroundColor = '#ca4c24'}>
                Next
              </button>}
          </>}
      </div>
    </div>;
};

## Overview

To initiate a transfer, you can either make an API request or use the Dwolla Dashboard. You will
need to specify the source and destination funding sources, which can be either a
[bank account](/docs/bank-funding-source) or a [Dwolla Wallet](/docs/balance-funding-source).

It's important to note that all account-to-account transfers are two-sided. When a transfer request
is received, it is broken down into "hops" or "legs," which describe each step of the process, such
as pulling funds into a Dwolla Wallet and pushing funds out of it.

## Transfer Statuses

As outlined in our [transfer resource](/docs/api-reference/transfers), transfers can have the
following statuses: `pending`, `processed`, `cancelled`, or `failed`.

* `pending` - A pending transfer hasn't been sent to the payment network or has been sent but not
  processed. This means that it may still be cancellable or may result in a transfer failure.
* `processed` - The meaning of a "processed" status varies based on the transfer destination. If
  it's going to a Dwolla Wallet, the funds have cleared successfully. If it's going to a linked bank
  account, enough time has passed for the funds to clear into that account.
* `cancelled` - A transfer can be cancelled in two ways: either Dwolla cancels it systematically, or
  your application sends an API request. If a funding source is removed during the transfer's
  journey to that bank account, Dwolla will cancel the transfer.
* `failed` - A failed status is associated with an ACH network return, meaning that Dwolla received
  an ACH return code from the RDFI (Receiving Depository Financial Institution). You can fetch the
  failure reason via an additional API request.
  [Learn more on transfer failures](/docs/transfer-failures).

## Flow of Funds

It's crucial to understand how funds flow into and out of the Dwolla Network because all transfers
require at least one user (either the sender or receiver) to hold a balance in a Dwolla Wallet. In
other words, **all transfers flow through a Dwolla Wallet, either explicitly or implicitly**.

* With an explicit flow of funds, the source of the transfer is a bank account (funding source) and
  the destination is a Dwolla Wallet, or vice versa. In this scenario, the funds are explicitly
  pushed into or pulled out of a Dwolla Wallet when the transfer is initiated.
* With an implicit flow of funds, the source and destination of the transfer are both bank accounts
  (funding sources). In this scenario, the funds first enter the Dwolla Network by flowing through a
  Dwolla Wallet of either the sender or receiver (or both, depending on the customer type), before
  ultimately exiting to the destination bank account.

## Tracking Transfers

As mentioned previously, all account-to-account payments are two-sided. This can make it difficult
to track the status of a transfer at any given time. To address this, Dwolla supports two ways to
track transfers throughout their lifecycle:

* **Correlation ID**: This value is supplied by your application when the transfer is created, and
  you can use it to track the transfer through the Dwolla API.
* **Response JSON `_links` property**: This property is automatically populated by Dwolla in the
  response JSON for a transfer. It contains links to other resources that you can use to track the
  transfer, such as the transfer's status and the transfer's history.

### Correlation ID

Many Dwolla resources allow a correlation ID—[Customers](/docs/api-reference/customers),
[Mass Payments](/docs/api-reference/mass-payments), and [Transfers](/docs/api-reference/transfers).
Through correlation IDs your application can send an ID of your choosing (generally a pseudo-random
alphanumeric string) that is attached to the resource once it’s created in the Dwolla system. In
particular, transfers are easily traceable in our API, as our transfers endpoint allows listing and
searching based on a `correlationId` value.

#### Create Transfer with Correlation ID

<CodeGroup>
  ```javascript createTransfer.js theme={"dark"}
  // Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
  const requestBody = {
    _links: {
      source: {
        href: "https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4",
      },
      destination: {
        href: "https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c",
      },
    },
    amount: {
      currency: "USD",
      value: "10.00",
    },
    correlationId: "8a2cdc8d-629d-4a24-98ac-40b735229fe2",
  };

  dwolla .post("transfers", requestBody) .then((res) => res.headers.get("Location")); // =>
  'https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388'

  ```

  ```php create_transfer.php theme={"dark"}
  <?php
  // Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
  $transfersApi = new DwollaSwagger\TransfersApi($apiClient);

  $transfer = $transfersApi->create([
    '_links' => [
      'source' => [
        'href' => 'https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4',
      ],
      'destination' => [
        'href' => 'https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c'
      ]
    ],
    'amount' => [
      'currency' => 'USD',
      'value' => '10.00'
    ],
    'correlationId' => '8a2cdc8d-629d-4a24-98ac-40b735229fe2'
  ]);

  $transfer; # => "https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388"
  ```

  ```ruby create_transfer.rb theme={"dark"}
  # Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby
  request_body = {
    :_links => {
      :source => {
        :href => "https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4"
      },
      :destination => {
        :href => "https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c"
      }
    },
    :amount => {
      :currency => "USD",
      :value => "10.00"
    },
    :correlationId => "8a2cdc8d-629d-4a24-98ac-40b735229fe2"
  }

  transfer = app_token.post "transfers", request_body
  transfer.response_headers[:location] # => "https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388"
  ```

  ```python create_transfer.py theme={"dark"}
  # Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python
  request_body = {
    '_links': {
      'source': {
        'href': 'https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4'
      },
      'destination': {
        'href': 'https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c'
      }
    },
    'amount': {
      'currency': 'USD',
      'value': '10.00'
    },
    'correlationId': '8a2cdc8d-629d-4a24-98ac-40b735229fe2'
  }

  transfer = app_token.post('transfers', request_body)
  transfer.headers['location'] # => 'https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388'
  ```

  ```bash HTTP theme={"dark"}
  POST https://api.dwolla.com/transfers
  Accept: application/vnd.dwolla.v1.hal+json
  Content-Type: application/vnd.dwolla.v1.hal+json
  Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY
  Idempotency-Key: 19051a62-3403-11e6-ac61-9e71128cae77

  {
      "_links": {
          "source": {
              "href": "https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4"
          },
          "destination": {
              "href": "https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c"
          }
      },
      "amount": {
          "currency": "USD",
          "value": "10.00"
      },
      "correlationId": "8a2cdc8d-629d-4a24-98ac-40b735229fe2"
  }

  ...

  HTTP/1.1 201 Created
  Location: https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388
  ```
</CodeGroup>

#### List (Search) Customer Transfers via Correlation ID

<CodeGroup>
  ```javascript searchTransfer.js theme={"dark"}
  // Using dwolla-v2 - https://github.com/Dwolla/dwolla-v2-node
  const customerUrl =
    "https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295";

  dwolla .get( `${customerUrl}/transfers?correlationId=8a2cdc8d-629d-4a24-98ac-40b735229fe2` )
  .then((res) => res.body.\_embedded["transfers"][0].status); // => "pending"

  ```

  ```php search_transfer.php theme={"dark"}
  <?php
  // Using dwollaswagger - https://github.com/Dwolla/dwolla-swagger-php
  $customerUrl = 'https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295';

  $TransfersApi = new DwollaSwagger\TransfersApi($apiClient);

  $transfers = $TransfersApi->getCustomerTransfers($customerUrl);
  $transfers->_embedded->{'transfers'}[0]->status; # => "pending"
  ```

  ```ruby search_transfer.rb theme={"dark"}
  # Using dwolla_v2 - https://github.com/Dwolla/dwolla-v2-ruby
  customer_url = 'https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295'

  transfers = app_token.get "#{customer_url}/transfers?correlationId=8a2cdc8d-629d-4a24-98ac-40b735229fe2"
  transfers._embedded['transfers'][0].status # => "pending"
  ```

  ```python search_transfer.py theme={"dark"}
  # Using dwollav2 - https://github.com/Dwolla/dwolla-v2-python
  customer_url = 'https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295'

  transfers = app_token.get('%s/transfers?correlationId=%s' % customer_url % '8a2cdc8d-629d-4a24-98ac-40b735229fe2')
  transfers.body['_embedded']['transfers'][0]['status'] # => 'pending'
  ```

  ```bash HTTP theme={"dark"}
  GET https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295/transfers?correlationId=8a2cdc8d-629d-4a24-98ac-40b735229fe2
  Accept: application/vnd.dwolla.v1.hal+json
  Authorization: Bearer pBA9fVDBEyYZCEsLf/wKehyh1RTpzjUj5KzIRfDi0wKTii7DqY

  ...

  {
      "_links": {
          "self": {
              "href": "https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295/transfers"
          },
          "first": {
              "href": "https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295/transfers?&limit=25&offset=0"
          },
          "last": {
              "href": "https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295/transfers?&limit=25&offset=0"
          }
      },
      "_embedded": {
          "transfers": [
              {
                  "_links": {
                      "self": {
                          "href": "https://api.dwolla.com/transfers/74c9129b-d14a-e511-80da-0aa34a9b2388"
                      },
                      "source": {
                          "href": "https://api.dwolla.com/customers/39e21228-5958-4c4f-96fe-48a4bf11332d"
                      },
                      "source-funding-source": {
                          "href": "https://api.dwolla.com/funding-sources/707177c3-bf15-4e7e-b37c-55c3898d9bf4"
                      },
                      "destination": {
                          "href": "https://api.dwolla.com/customers/33e56307-6754-41cb-81e2-23a7f1072295"
                      },
                      "destination-funding-source": {
                          "href": "https://api.dwolla.com/funding-sources/ab443d36-3757-44c1-a1b4-29727fb3111c"
                      }
                  },
                  "id": "74c9129b-d14a-e511-80da-0aa34a9b2388",
                  "status": "pending",
                  "amount": {
                      "value": "10.00",
                      "currency": "USD"
                  },
                  "created": "2018-11-29 21:00:59 UTC",
                  "correlationId": "8a2cdc8d-629d-4a24-98ac-40b735229fe2"
              }
          ]
      },
      "total": 1
  }
  ```
</CodeGroup>

### Response JSON Links

In addition to using a correlation ID, Dwolla automatically appends two resource `_links` properties
in all transfers: funding-transfer and funded-transfer, both of which can be used to traverse
programmatically a single transfer chain.

* `funding-transfer`: A resource link that points to the previous transfer in the overall chain (if
  applicable). It identifies the previous transfer that, once processed, funded the current
  transfer.
* `funded-transfer`: A resource link that points to the next transfer in the overall chain (if
  applicable). It identifies the next transfer that the current transfer will fund, once processed.

**Example**

Consider a successful account-to-account transfer where a Verified Customer (VCR-1) sends money from
their bank account to the bank account of another Verified Customer (VCR-2). The “legs” of the
overall transfer lifecycle would look like this: Verified Customer (VCR-1) Bank to Verified Customer
(VCR-2) Bank

| Name                          | Transfer ID                          | Resource Links                                                                                                                |
| ----------------------------- | ------------------------------------ | ----------------------------------------------------------------------------------------------------------------------------- |
| VCR-1 Bank → VCR-1 Balance    | a379c863-77f2-4248-8b37-486bc10b3817 | `funding-transfer`: N/A <br /><br /> `funded-transfer`: 5dc959dd-29ec-436f-8cdc-dd7269fd4e7c                                  |
| VCR-1 Balance → VCR-2 Balance | 5dc959dd-29ec-436f-8cdc-dd7269fd4e7c | `funding-transfer`: a379c863-77f2-4248-8b37-486bc10b3817 <br /><br /> `funded-transfer`: a91f21c1-d9bb-41a6-8aab-981e763bd325 |
| VCR-2 Balance → VCR-2 Bank    | a91f21c1-d9bb-41a6-8aab-981e763bd325 | `funding-transfer`: 5dc959dd-29ec-436f-8cdc-dd7269fd4e7c <br /><br /> `funded-transfer`: N/A                                  |

* The `funding-transfer` link for the first transfer is N/A because there is no previous transfer in
  the chain.
* The `funded-transfer` link for the first transfer points to the second transfer, since the funds
  from the first transfer funded the second transfer.
* The `funding-transfer` link for the second transfer points to the first transfer, which is the
  transfer that funded it.
* The `funded-transfer` link for the third transfer is N/A because there are no further transfers in
  the chain.

## Interactive Transfer Lifecycle

<TransferWorkflow />
