Skip to content

Affinity

Affinity is a customer relationship management (CRM) platform that leverages relationship intelligence to help businesses strengthen connections and drive engagement with client and prospects.

Categories: crm

Type: affinity/v1


Connections

Version: 1

Bearer Token

Properties

NameLabelTypeControl TypeDescriptionRequired
tokenTokenSTRINGTEXTtrue

Actions

Create Opportunity

Name: createOpportunity

Creates a new opportunity.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemOpportunityOBJECT
Properties {STRING(name)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {STRING(id), STRING(name)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Opportunity",
"name" : "createOpportunity",
"parameters" : {
"__item" : {
"name" : ""
}
},
"type" : "affinity/v1/createOpportunity"
}

Create Organization

Name: createOrganization

Creates a new organization.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemOrganizationOBJECT
Properties {STRING(name), STRING(domain)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {STRING(id), STRING(name), STRING(domain)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Organization",
"name" : "createOrganization",
"parameters" : {
"__item" : {
"name" : "",
"domain" : ""
}
},
"type" : "affinity/v1/createOrganization"
}

Create Person

Name: createPerson

Creates a new person.

Properties

NameLabelTypeControl TypeDescriptionRequired
__itemPersonOBJECT
Properties {STRING(first_name), STRING(last_name), [STRING](emails)}
OBJECT_BUILDERnull

Output

Type: OBJECT

Properties

NameTypeControl Type
bodyOBJECT
Properties {STRING(id), STRING(first_name), STRING(last_name), [STRING](emails)}
OBJECT_BUILDER

JSON Example

{
"label" : "Create Person",
"name" : "createPerson",
"parameters" : {
"__item" : {
"first_name" : "",
"last_name" : "",
"emails" : [ "" ]
}
},
"type" : "affinity/v1/createPerson"
}