Skip to main content
POST
/
v1
/
company
Create a new company
curl --request POST \
  --url https://openapi.genesy.ai/v1/company \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "domain": "<string>",
  "website": "<string>",
  "companyLinkedInUrl": "<string>",
  "listId": 123,
  "mergeWithExisting": true
}
'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "id": 123,
    "name": "<string>",
    "domain": "<string>",
    "companyLinkedInUrl": "<string>",
    "createdAt": "2023-12-25",
    "updatedAt": "2023-12-25"
  }
}

Authorizations

x-api-key
string
header
required

Body

application/json
name
string

Company name

domain
string

Company website domain

website
string<uri>

Company website URL

companyLinkedInUrl
string<uri>

Company LinkedIn URL

listId
integer

ID of the list to add the company to

mergeWithExisting
boolean
default:true

Whether to merge with existing company if found. Defaults to true.

Response

Company created successfully

status
enum<string>
required
Available options:
success
message
string
required
data
object
required