cURL
curl --request POST \ --url https://api.example.com/target-companies \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: multipart/form-data' \ --form 'name=Acme Corp' \ --form website=https://acme.com \ --form pitchDeck='@example-file'
{ "message": "<string>", "data": { "id": "<string>", "isPortfolio": true, "isTarget": true, "createdAt": "<string>", "updatedAt": "<string>", "investorId": "<string>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Company name
"Acme Corp"
Company website
"https://acme.com"
Show child attributes