BASE64 Image From WebHook

Using an endpoint URL for a Webhook post out of the forms provider, I've mapped the relevant fields and receive a 200 for incoming JSON blobs.

The base64 image is not inserting an image into the table and I'm not sure what direction to go next.  The resulting webhook post leaves the image field empty.

I've tried variations of the input: json dot notation - 
image: base64Upload = input: json request.data.base64Upload.url.data
                                                             request.data.base64Upload.url
                                                             request.data.base64Upload

The entire submission can be seen here -  https://webhook.site/#!/332f1647-583c-4b13-9a9b-cf4b2fd5d9cd/af44cfcb-fdf3-4dc2-8450-7d992b64daf3/1

Here is a snippet: 
{
'request': {
'data': {
'employerName': 'Widgetizer Widgeteers',
'employerAddress01': '3434 Jungle Dr',
'employerAddress02': 'Suite Tree',
'employerCity': 'BanannaVille',
.
.
'trusteeLastName': 'Diligence',
'base64Upload': [
{
'storage': 'base64',
'name': 'clark-kent-drivers-license-645563ec-5bcd-4306-b624-31c3250c1d30.jpeg',
'url': 'data:image/jpeg;base64,/9j/4AAQ....1Kn/9k=',
'size': 101801,
'type': 'image/jpeg',
'originalName': 'clark-kent-drivers-license.jpeg'
}
],
'controlGroup': 'true',
'entityType': 'S-Corp'
},
Other
8 replies