Skip to main content
POST
/
target-companies
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>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

multipart/form-data
name
string
required

Company name

Example:

"Acme Corp"

website
string
required

Company website

Example:

"https://acme.com"

pitchDeck
file
required

Response

201 - application/json
message
string
required
data
object
required