curl --request POST \
--url https://zip.platform.arb.inc/archives/create \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"files": [
{
"gsURL": "gs://my-bucket/invoices/jan.csv",
"name": "january.csv",
"path": "data/invoices/"
},
{
"gsURL": "gs://my-bucket/invoices/feb.csv",
"name": "february.csv",
"path": "data/invoices/"
}
]
}
'