curl --request PUT \
--url http://localhost:4000/v1/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": 123,
"syncedDeal": 123,
"name": "<string>",
"email": "jsmith@example.com",
"phoneNumber": "<string>",
"description": "<string>",
"value": 123,
"currency": "<string>",
"source": "<string>",
"updatedBy": "<string>"
}
'