Hanzo AI
OpenapiCaptable

Create transfer

Moves shares from one stakeholder to another. Omit `quantity` to transfer the whole certificate, which REASSIGNS it and mints no new share.

POST /v1/captable/shares/transfer

Addresshttps://api.hanzo.ai/v1/captable/shares/transfer
MethodPOST
Operationpost_captable_shares_transfer
AuthAuthorization: Bearer $HANZO_API_KEY

Moves shares from one stakeholder to another.

Omit quantity to transfer the whole certificate, which REASSIGNS it and mints no new share. Send a quantity below the amount held to SPLIT it — the source certificate keeps the remainder, and a split additionally requires certificateId for the new certificate, which must be unique in the company. A quantity outside 1..held is refused, so a transfer can never over-issue.

Both outcomes answer 200: a transfer records a movement between holders and mints no security of its own, which is why this is not a 201 the way an investment is.

Request

4 fields, body application/json (required).

FieldInTypeRequiredDescription
certificateIdbodyanyCertificateID names the NEW certificate a partial transfer issues, and is required for one — a partial transfer without it is refused 400.
quantitybodyanyQuantity is how many shares to move. OPTIONAL, and its absence is not zero: omitted or null transfers the WHOLE certificate.
shareIdbodyanyShareID is the certificate being transferred.
toStakeholderIdbodyanyToStakeholderID is who receives them. Required, and it must reference a stakeholder of the SAME company; one that does not is refused 400 rather than creating…

Response

StatusBodyMeaning
200captableTransferredok

200 body — 4 fields.

FieldInTypeAlwaysDescription
messagebodystringMessage is the human sentence the cap table wrote, e.g.
newShareIdbodystringNewShareID names the certificate a PARTIAL transfer created.
successbodybooleanSuccess is true when the transfer was applied.
transferredbodyintegerTransferred is how many shares moved.

Failure carries the platform error shape — see Errors.

Examples

hanzo captable shares transfer

Captable API · All Hanzo APIs · Interactive reference

How is this guide?

On this page