Add transactions
Add a list of transactions to a company’s cap table. Supports sales, conversions, and exercises of securities.
Permissions:
- User must be authenticated via OAuth.
- User must have access to the company.
- User must have permission to add data to the portco.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
Response
Created
The ID of the transaction.
"a2Ne"
The ID of the company related to the transaction.
"pvYe"
The name of the company related to the record.
"Acme Corp"
The ID for the security that was being transacted.
"pvYe"
The ID for the security that was created as a result of the transaction.
"pvYe"
The date of the transaction.
"2030-01-01"
The type of transaction that occurred.
exercise, conversion, sale "Sale"
The number of shares that were transferred or sold as a result of the transaction.
"1000000"
The amount of money that was invested in the transaction.
{ "currency": "USD", "value": "1000000" }The amount of money that was received from the transaction.
{ "currency": "USD", "value": "1000000" }