What I’m trying to do: I am trying to use Skedda for my booking solution. I want to transfer Skedda data over to DynamoDB table (because Skedda doesn’t support its own API).
The result I expect to see after the Zap is done:
A nice json stored like this:
{
"ReservationId": "62193449",
“Space Names”: “Room 2”,
“Start”: “2023-10-08T14:30:00-04:00”,
“End”: “2023-10-08T15:30:00-04:00”
}
The problem:
When I do the thing below, I end up with
{
"ReservationId": "62193449",
}
only instead of the whole data. Please help