Get Sub-Account Transactions

post

Get transactions history for a specific sub account

Authorizations
Body
clientIdstringOptional

Client ID

userIdstringOptional

User ID

accountIdstringOptional

Account ID

startDatestring ยท dateOptional

Start date from. expected date format: YYYY-MM-DD

endDatestring ยท dateOptional

End date to. expected date format: YYYY-MM-DD

consentbooleanOptional

By using this API, you acknowledge that you have read, understood, and agree to be bound by these Terms of Service. If you have any questions or concerns, please contact us

Responses
200Success
application/json
post
POST /insyts/getsubaccounttransactions HTTP/1.1
Host: api.akibaone.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 117

{
  "clientId": "text",
  "userId": "text",
  "accountId": "text",
  "startDate": "2025-06-27",
  "endDate": "2025-06-27",
  "consent": true
}
200Success
{
  "transaction": [
    {
      "CONTAINER": "text",
      "id": 1,
      "amount": {
        "amount": 1,
        "currency": "text"
      },
      "baseType": "text",
      "categoryType": "text",
      "categoryId": 1,
      "category": "text",
      "categorySource": "text",
      "highLevelCategoryId": 1,
      "createdDate": "2025-06-27T09:40:08.300Z",
      "lastUpdated": "2025-06-27T09:40:08.300Z",
      "description": {
        "original": "text",
        "simple": "text"
      },
      "isManual": true,
      "sourceType": "text",
      "date": "text",
      "postDate": "text",
      "status": "text",
      "accountId": 1,
      "runningBalance": {
        "amount": 1,
        "currency": "text"
      },
      "merchant": {
        "id": "text",
        "name": "text",
        "source": "text"
      }
    }
  ]
}