Submit Transactions

Submit transactions data for credit scoring

Submit Transactions

POST {{BASE_URL}}/api/v1/transactions/upload

This endpoint allows you to submit transaction data for credit scoring.

Headers

Name
Type
Description

Authentication

String

Authentication token to track down who is emptying our stocks.

Request Body

Name
Type
Description

transactions

String

A list of transaction objects

{
  "transactions": [
     { 
       "merchant_id": "P-CUST-2023-00083",
       "transaction_id": "P-SINV-2023-192927",
       "face_amount": 1943,
       "transaction_time": "2023-10-14 00:00:00",
       "other_details": {}
     },
     {
       "merchant_id": "P-CUST-2023-00084",
       "transaction_id": "P-SINV-2023-227940",
       "face_amount": 47504,
       "transaction_time": "2023-11-06 00:00:00",
       "other_details": {}
     },
     {...}
  ]
}

Last updated

Was this helpful?