UrlFetchApp.fetch does not have a body property, instead I needed to use payload
UrlFetchApp.fetch
body
payload
body: JSON.stringify(data)
modified to
payload: JSON.stringify(data)
resolved the issue.