LogoLogo
  • API Reference Documentation
  • Export API endpoints
  • Investment Vehicles
  • Portfolio Companies
  • Investors
  • Commitments
  • Investments
  • Opportunities
  • Leads
  • Transactions
  • Companies Data Import
    • Company Financials
  • LEAD GENERATION
    • Web To Lead
Powered by GitBook
On this page
  • Get Transactions
  • Get Transaction

Was this helpful?

Transactions

Get Transactions

GET https://api.theairr.com/transaction/:transactionType

This endpoint allows you to get all the Transactions in the Organization.

Query Parameters

Name
Type
Description

transactionType

string

Type of the Transaction. Possible values: drawdown, distribution, dividend, investment_transaction, expense, management_fee, loan_received

Headers

Name
Type
Description

X-API-KEY

string

API key for a particular Organization

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "transactionType": "DRAWDOWN",
    "fundId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "fundName": "Kamchatka Fund I",
    "investorId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "investorName": "ABC Co",   
    "investmentId": null,
    "investmentName": null,
    "roundId": null,
    "roundName": null,
    "serviceProviderId": null,
    "serviceProviderName": null,        
    "name": "Drawdown 1",
    "description": "First drawdown",
    "type": null,
    "amount": 10000000,
    "amountConverted": 10434000,
    "date": 2019-09-30,
    "source": "Xero",
    "currencyCode": "EUR",
    "currencyRate": 1.0434,
    "reference": "First drawdown reference"
},
{
...
}

Get Transaction

GET https://api.theairr.com/transaction/:transactionType/:transactionId

This endpoint allows you to get information about a particular Transaction.

Query Parameters

Name
Type
Description

transactionId

string

ID of the Transaction

transactionType

string

Type of the Transaction. Possible values: drawdown, distribution, dividend, investment_transaction, expense, management_fee, loan_received

Headers

Name
Type
Description

X-API-KEY

string

API key for a particular Organization

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "transactionType": "DRAWDOWN",
    "fundId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "fundName": "Kamchatka Fund I",
    "investorId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "investorName": "ABC Co",   
    "investmentId": null,
    "investmentName": null,
    "roundId": null,
    "roundName": null,
    "serviceProviderId": null,
    "serviceProviderName": null,        
    "name": "Drawdown 1",
    "description": "First drawdown",
    "type": null,
    "amount": 10000000,
    "amountConverted": 10434000,
    "date": 2019-09-30,
    "source": "Xero",
    "currencyCode": "EUR",
    "currencyRate": 1.0434,
    "reference": "First drawdown reference"
}
{
    "timestamp":"2019-12-02T11:20:17.201+0000",
    "status":404,
    "error":"Not Found",
    "message":"Transaction not found",
    "path":"/transaction/564745a1-4964-420b-8c32-617737169050"
}

PreviousLeadsNextCompany Financials

Last updated 4 years ago

Was this helpful?