Skip to content

Apollo

Apollo.io is a sales intelligence and engagement platform that provides tools for prospecting, lead generation, and sales automation to help businesses improve their sales processes and outreach efforts.

Categories: crm

Type: apollo/v1


Connections

Version: 1

API Key

Properties

NameLabelTypeControl TypeDescriptionRequired
keyKeySTRINGTEXTtrue
valueValueSTRINGTEXTtrue

OAuth2 Authorization Code

Properties

NameLabelTypeControl TypeDescriptionRequired
clientIdClient IdSTRINGTEXTtrue
clientSecretClient SecretSTRINGTEXTtrue

Actions

Update Deal

Name: updateDeal

Updates the details of existing deals within your team’s Apollo account.

Properties

NameLabelTypeControl TypeDescriptionRequired
opportunity_idOpportunity IdSTRINGSELECTThe ID for the deal you want to update.true
owner_idOwner IDSTRINGSELECTThe ID for the deal owner within your team’s Apollo account.false
nameNameSTRINGTEXTNew name for the deal.false
closed_dateClose DateDATEDATEUpdated estimated close date for the deal. This can be a future or past date.false
account_idAccount IDSTRINGSELECTThe ID for the account within your Apollo instance. This is the company that you are targeting as part of the deal being created.false

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(id), STRING(team_id), STRING(owner_id), NUMBER(amount), DATE(closed_date), STRING(account_id), STRING(description), STRING(name), {STRING(name), STRING(iso_code), STRING(symbol)}(currency)}(opportunity)}
OBJECT_BUILDER

JSON Example

{
"label" : "Update Deal",
"name" : "updateDeal",
"parameters" : {
"opportunity_id" : "",
"owner_id" : "",
"name" : "",
"closed_date" : "2021-01-01",
"account_id" : ""
},
"type" : "apollo/v1/updateDeal"
}

Create Deal

Name: createDeal

Creates new deal for an Apollo account.

Properties

NameLabelTypeControl TypeDescriptionRequired
nameNameSTRINGTEXTName the deal you are creating.true
owner_idOwner IDSTRINGSELECTThe ID for the deal owner within your team’s Apollo account.false
account_idAccount IDSTRINGSELECTThe ID for the account within your Apollo instance. This is the company that you are targeting as part of the deal being created.false
amountAmountSTRINGTEXTThe monetary value of the deal being created. Do not enter commas or currency symbols for the value.false
closed_dateClose DateDATEDATEThe estimated close date for the deal. This can be a future or past date.false

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(id), STRING(team_id), STRING(owner_id), NUMBER(amount), DATE(closed_date), STRING(account_id), STRING(description), STRING(name), {STRING(name), STRING(iso_code), STRING(symbol)}(currency)}(opportunity)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Deal",
"name" : "createDeal",
"parameters" : {
"name" : "",
"owner_id" : "",
"account_id" : "",
"amount" : "",
"closed_date" : "2021-01-01"
},
"type" : "apollo/v1/createDeal"
}

Enrich Person

Name: enrichPerson

Enriches data for a person.

Properties

NameLabelTypeControl TypeDescriptionRequired
first_nameFirst NameSTRINGTEXTThe first name of the person.false
last_nameLast NameSTRINGTEXTThe lst name of the person.false
nameNameSTRINGTEXTThe full name of the person.false
emailEmailSTRINGTEXTThe email address of the person.false
organization_nameOrganization NameSTRINGTEXTThe name of the person’s employer.false
domainDomainSTRINGTEXTThe domain name for the person’s employer. This can be the current employer or a previous employer. Do not include www., the @ symbol, or similar.false
linkedin_urlLinkedIn URLSTRINGTEXTThe URL for the person’s LinkedIn profile.false

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(id), STRING(first_name), STRING(last_name), STRING(name), STRING(linkedin_url), STRING(title), STRING(email_status), STRING(photo_url), STRING(twitter_url), STRING(github_url), STRING(facebook_url), STRING(headline), STRING(email), STRING(organization_id)}(person)}
OBJECT_BUILDER

JSON Example

{
"label" : "Enrich Person",
"name" : "enrichPerson",
"parameters" : {
"first_name" : "",
"last_name" : "",
"name" : "",
"email" : "",
"organization_name" : "",
"domain" : "",
"linkedin_url" : ""
},
"type" : "apollo/v1/enrichPerson"
}

Enrich Company

Name: enrichCompany

Enriches data for company.

Properties

NameLabelTypeControl TypeDescriptionRequired
domainDomainSTRINGTEXTThe domain of the company that you want to enrich. Do not include www., the @ symbol, or similar.true

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {{STRING(id), STRING(name), STRING(website_url), STRING(blog_url), STRING(linkedin_url), STRING(twitter_url), STRING(facebook_url), STRING(phone), STRING(logo_url), STRING(primary_domain), STRING(industry), [STRING](keywords)}(organization)}
OBJECT_BUILDER

JSON Example

{
"label" : "Enrich Company",
"name" : "enrichCompany",
"parameters" : {
"domain" : ""
},
"type" : "apollo/v1/enrichCompany"
}