POST
/
transactions
/
bulk
curl --request POST \
  --url https://base_url/api/v1/transactions/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "corporation_id": "<string>"
}'
{
  "data": {
    "upload_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "file_name": "example.csv",
    "transaction_count": 100,
    "size": 1024,
    "corporation_id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "created_at": 1727284490
  },
  "message": "Successfully uploaded transactions."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
file
file

The CSV file to upload.

corporation_id
string

The unique identifier for a corporation associated with this file.

Response

200
application/json
Transaction creation response
data
object
message
string
Example:

"Successfully uploaded transactions."