Transactions

Get Transactions

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

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

Query Parameters

NameTypeDescription

transactionType

string

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

Headers

NameTypeDescription

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

NameTypeDescription

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

NameTypeDescription

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"
}

Last updated