Webhook Events

A list of all the webhook events and examples supported by the api

PreIPOCompanySPV

Throughout the lifecycle of a PreIPOCompanySPV this webhook event is published at every stage change. See the SPV State Transitions for a list of all the SPV stage changes.

{
  "eventType": "PreIPOCompanySPV",
	"data" : {
    "id": "50135e1a-d36e-46d0-a134-4480bfa1a722",
    "name": "SpaceX LLC",
    "monarkStage": "PRIMARY_FUNDRAISE",
    "preIPOCompanyId": "b2ace6bd-9ee4-4386-a557-c67f92e1bae7"
  }
}

InvestorSubscription

When an Investor's Subscription changes status this webhook event is published. See the Subscription State Transitions for a list of all the Subscription stage changes.

{
  "eventType": "SubscriptionStatus",
	"data" : {
    "subscriptionId": "11be86e2-0d1c-47c2-8591-e8a34b805e87",
    "spvId": "50135e1a-d36e-46d0-a134-4480bfa1a722",
    "investorId": "3f095838-e9e1-419c-adda-eabba652afb6",
    "amountOfShares": 3400,
    "amountOfDollars": 642600,
    "status": "COMPLETE",
    "orderReferenceId" : "OrderRef123"
  }
}