Skip to main content
GET
/
tpa
/
transaction
/
list
List TPA Transactions
curl --request GET \
  --url https://api.stax.ai/tpa/transaction/list \
  --cookie authToken=
{
  "success": true,
  "transactions": [
    {
      "_id": "<string>",
      "team": "<string>",
      "plan": "<string>",
      "account": "<string>",
      "planId": "<string>",
      "accountNumber": "<string>",
      "statement": "<string>",
      "row": "<string>",
      "creator": "<string>",
      "planYear": 123,
      "page": 123,
      "date": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "amount": 123,
      "txType": "<string>",
      "txSubType": "<string>",
      "confidence": 123,
      "history": [
        {
          "user": "<string>",
          "timestamp": "2023-11-07T05:31:56Z",
          "changes": [
            {
              "field": "<string>",
              "from": "<string>",
              "to": "<string>"
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

authToken
string
cookie
required

Cookie-based authentication using userId and authToken cookies

Query Parameters

statementId
string
required

MongoDB ObjectId

Response

200 - application/json

List of transactions

success
boolean
transactions
object[]