curl --request POST \
--url https://app.masivo.ai/api/storefront/v1/customers/migrate/transactions \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"customers": [
{
"id": "<string>",
"transactions": [
{
"brand_id": "<string>",
"reward_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"details": "<string>",
"type": "ACCUMULATION",
"issued_at": "2023-11-07T05:31:56Z",
"resolved_at": "2023-11-07T05:31:56Z",
"amount": 123,
"cost": 123,
"store_id": "<string>",
"channel_id": "<string>",
"event": {
"type": "PURCHASE"
},
"funded_by": "<string>"
}
]
}
]
}
'