Mircate
  1. Wallet
Mircate
  • Introduction
  • Authentication
  • Errors
  • Change Logs
  • PIM
    • Get Products
      POST
    • Get Product Settings
      GET
    • Get Catalog Settings
      GET
    • Upsert Product
      POST
    • Upsert Category
      POST
    • Bulk Product Upsert
      POST
    • Check Batch Status
      POST
    • Delete Product
      POST
    • Attach Product Attribute Image
      POST
    • Attach Category Image
      POST
    • Get Image
      GET
    • Upsert Attributes
      POST
    • Delete Attribute
      POST
    • Upsert Attribute Options
      POST
    • Upsert Attribute Option
      POST
    • Delete Attribute Option
      POST
  • Promotion
    • Calculate
    • Start Transaction
    • Commit Transaction
    • Revert Transaction
    • Cancel Transaction
    • Get Active Promotions
  • Loyalty
    • Receive Event
    • Cancel Event
    • Get Entity Events
    • Upsert Segment
    • Add User To Segment
  • Wallet
    • Get Wallet
      GET
    • Create Wallet
      POST
    • Create Account
      POST
    • Get Account
      POST
    • Get Accounts
      POST
    • List Accounts
      POST
    • List Transactions
      POST
    • Add Account
      POST
    • Remove Account
      POST
    • Fix
      POST
    • Load
      POST
    • Spend
      POST
    • Refund
      POST
    • Cancel
      POST
    • Bulk Load
      POST
  • Merchant
    • Sales Channel
      • Reserve Stock
      • Cancel Stock
      • Commit Stock
      • Refund Stock
      • Get Current Stock
    • Product Supplier
      • Receive Stock
      • Receive Price
      • Get Stock/Price History
      • Check Batch Status
      • Remove My Products
      • Clean My Products
      • Export Stock/Price
      • List Exports
      • Get Exported Files
    • Global Products
      • Receive Products
      • Get Global Products
      • Remove Global Products
  • Common
    • Dataset
      • Create
      • Update
      • Delete
      • Value Upsert
      • Value Delete
      • List Sources
      • List Values
  • How to
    • Creating a Promotion Template
    • Promotion Transaction Flow
    • Understanding PIM Product Statuses
  1. Wallet

Bulk Load

Production
https://api.mircate.com/5p1hp1d2t
Production
https://api.mircate.com/5p1hp1d2t
POST
https://api.mircate.com/5p1hp1d2t
/CALL/WalletAPI/bulkLoad/{MIRCATE_PROJECT_ID}
Last modified:2025-10-09 14:52:09
The bulkLoad method is used to import historical or existing transaction data into the system in bulk. It enables seamless integration of large datasets, ensuring that all past and current wallet transactions are accurately reflected within the platform.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params

Body Params application/json

Example
"userId": "User-1",
"title": "Test Title",
"webhook": true,
"loads": [
    {
        "amount": 1000,
        "description": "description",
        "expiresAt": "2025-10-08T13:36:39.764Z",
        "referenceId": "Test-2",
        "storeId": "Store-1",
        "storeName": "Store-1",
        "additionalData": {}
    }
],
"accountNumber": "12345678",
"walletId": "Wallet-1",
"currency": "EURO"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.mircate.com/5p1hp1d2t/CALL/WalletAPI/bulkLoad/' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '"userId": "User-1",
"title": "Test Title",
"webhook": true,
"loads": [
    {
        "amount": 1000,
        "description": "description",
        "expiresAt": "2025-10-08T13:36:39.764Z",
        "referenceId": "Test-2",
        "storeId": "Store-1",
        "storeName": "Store-1",
        "additionalData": {}
    }
],
"accountNumber": "12345678",
"walletId": "Wallet-1",
"currency": "EURO"
}'

Responses

🟢200OK
application/json
OK
Body

Example
{
  "balance": 28000,
  "results": [
    {
      "status": "failed",
      "error": "Expire date cannot be a past date."
    }
  ]
}
🟠400Bad Request
🟠403Forbidden
🟠404Record Not Found
Modified at 2025-10-09 14:52:09
Previous
Cancel
Next
Reserve Stock
Built with