For the complete documentation index, see llms.txt. This page is also available as Markdown.

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": {}
     },
     {...}
  ]
}
{
    "status": 202,
    "message": "Transactions submitted successfully",
    "data": {
        "ref_id": "9e360d21-7601-4366-80a6-d8d4afffadc2"
    }
}

Last updated