Update a Distribution

Request:

mutation {
  updateDistributionById (
    input: {
      id: "8f444de2-bfd9-4ca5-b6f4-74c4e511cebc"
      distributionPatch: {status: "closed"}
    }
  ) {
    distribution {
      id
      status
    }
  }
}
Response:

{
  "data": {
    "updateDistributionById": {
      "distribution": {
        "id": "8f444de2-bfd9-4ca5-b6f4-74c4e511cebc",
        "status": "closed"
      }
    }
  }
}

When a distribution is initially created for an investor the status of the distribution is set to “drafted”, indicating that this is a pro forma distribution that the issuer will approve in order to allow the investor to proceed through the investment process. This will typically involve the investor completing qualification requirements (KYC/AML, for instance), signing documents, and providing payment. While in a drafted state, the distribution will not appear in the investor’s portfolio view within the Vertalo portal (though it could appear in your custom investor UI if you choose). When appropriate, you may update the status of the distribution to “open” (investor qualifications met, waiting for funding) or “closed” (funding has been received, available for issuance), either of which will make the distribution visible to the investor in the Vertalo portal.

In this example, the distribution has been updated (“patched”) to update the status from “drafted” to “closed”.

What's on this Page