OpenapiCaptable
Create convertibles
Records a convertible note.
POST /v1/captable/convertibles
| Address | https://api.hanzo.ai/v1/captable/convertibles |
| Method | POST |
| Operation | post_captable_convertibles |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Records a convertible note.
Request
11 fields, body application/json (required).
| Field | In | Type | Required | Description |
|---|---|---|---|---|
additionalTerms | body | any | — | AdditionalTerms is free text for anything the fields above do not carry. |
boardApprovalDate | body | any | — | BoardApprovalDate is when the board approved it, YYYY-MM-DD. |
capital | body | any | — | Capital is the principal lent, in the company's currency. |
conversionCap | body | any | — | ConversionCap is the valuation the note converts at, at most. |
discountRate | body | any | — | DiscountRate is the discount to the next round's price, as a percentage. |
interestRate | body | any | — | InterestRate is the annual interest the principal accrues, as a percentage. |
issueDate | body | any | — | IssueDate is when the note was issued, YYYY-MM-DD. |
publicId | body | any | — | PublicID is the note's identifier. |
stakeholderId | body | any | — | StakeholderID is the lender. |
status | body | any | — | Status is DRAFT, ACTIVE, PENDING, EXPIRED or CANCELLED. |
type | body | any | — | Type is CCD, OCD or NOTE. |
Response
| Status | Body | Meaning |
|---|---|---|
201 | captableCreated | created |
201 body — 3 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
id | body | string | — | ID is the created row's id. |
message | body | string | — | Message is the human sentence the cap table wrote, e.g. |
success | body | boolean | — | Success is true when the row was written. |
Failure carries the platform error shape — see Errors.
Examples
hanzo captable convertibles createimport { Configuration, CaptableApi } from 'hanzoai';
const api = new CaptableApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.postCaptableConvertibles({ additionalTerms: "<additionalTerms>", boardApprovalDate: "<boardApprovalDate>" });from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import CaptableApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = CaptableApi(client).post_captable_convertibles(additional_terms="<additionalTerms>", board_approval_date="<boardApprovalDate>")cfg := cloud.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := cloud.NewAPIClient(cfg)
resp, _, err := client.CaptableAPI.PostCaptableConvertibles(context.Background()).Execute()
if err != nil {
return err
}use hanzo_cloud::apis::{configuration::Configuration, captable_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = captable_api::post_captable_convertibles(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.CaptableApi;
ApiClient client = new ApiClient();
client.setRequestInterceptor(b -> b.header("Authorization", "Bearer " + System.getenv("HANZO_API_KEY")));
var result = new CaptableApi(client).postCaptableConvertibles();curl -X POST https://api.hanzo.ai/v1/captable/convertibles \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"additionalTerms": "<additionalTerms>",
"boardApprovalDate": "<boardApprovalDate>"
}'MCP reaches captable through the captable tool, which names its 31 operations with its own verbs — this one among them, under a name only MCP declares. describe explains any of them:
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "describe",
"arguments": {
"op": "list_captable_classes"
}
}
}'How is this guide?