top of page

200: OK

REQUIRED

Response

API key for a particular Organization

string

X-API-KEY

Commitments
Get Commitments
GET

Request

Headers

This endpoint allows you to get information about all Commitments in the Organization.

Commitments data successfully retrieved.

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "investorId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "investorName": "ABC Co",
    "commitmentData": {
        "totalCommitment": 1000000,
        "totalDrawdowns": 500000,
        "totalDistributions": 42342
    },
    "commitmentRecords": [
        {
            "id": 5997e091-45fd-4166-8f4e-65b221afcc8a,
            "dateFrom": 2019-09-30,
            "amount": 10000000,
            "status": "New"
        }
    ]
}

https://api.theairr.com/commitment/:commitmentId

Get Commitment
GET

This endpoint allows you to get information about a particular Commitment

Request

REQUIRED

API key for a particular Organization

string

X-API-KEY

Headers

Response

200: OK

Commitment data successfully retrieved

Query Parameters

REQUIRED

commitmentId

string

ID of the Commitment

404: Not Found

Commitment not found

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "investorId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "investorName": "ABC Co",
    "commitmentData": {
        "totalCommitment": 1000000,
        "totalDrawdowns": 500000,
        "totalDistributions": 42342
    },
    "commitmentRecords": [
        {
            "id": 5997e091-45fd-4166-8f4e-65b221afcc8a,
            "dateFrom": 2019-09-30,
            "amount": 10000000,
            "status": "New"
        }
    ]
}

{
    "timestamp":"2019-12-02T11:20:17.201+0000",
    "status":404,
    "error":"Not Found",
    "message":"Commitment not found",
    "path":"/commitment/564745a1-4964-420b-8c32-617737169050"
}

bottom of page