top of page

200: OK

REQUIRED

Response

API key for a particular Organization

string

X-API-KEY

Opportunities
Get Opportunities
GET

Request

Headers

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

Opportunities data successfully retrieved.

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "name": "Some NewCo",
    "stageId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "stageName": "Term Sheet",
    "stageType": "In Progress",
    "responsible": "Ivan Ivanov",
    "amount": 2000000,
    "nextStep": "Sign the docs",
    "source": "Salesforce",
    "industryNames": [
        "AI", "BigData", "CyberSecurity"
    ]
}

Get Opportunity
GET

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

Request

REQUIRED

API key for a particular Organization

string

X-API-KEY

Headers

Response

200: OK

Opportunity data successfully retrieved

Query Parameters

REQUIRED

oppId

string

ID of the Opportunity

404: Not Found

Opportunity not found

{
    "id": b8229d06-008d-4881-8732-0dd72901c34e,
    "fundId": 56eb0247-c3c6-473b-b0b4-eb15ae2665c0,
    "fundName": "Kamchatka Fund I",
    "name": "Some NewCo",
    "stageId": c193ce9d-6623-4c1e-a50d-85c8e056a206,
    "stageName": "Term Sheet",
    "stageType": "In Progress",
    "responsible": "Ivan Ivanov",
    "amount": 2000000,
    "nextStep": "Sign the docs",
    "source": "Salesforce",
    "industryNames": [
        "AI", "BigData", "CyberSecurity"
    ]
}

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

bottom of page