Skip to Content

Person identity

Find information on a person based on their email

Billable OperationProviderBilling Mode
Docs
Connection
Docs
Cost per operation
Docs
amplemarket-people-identity
P
Amplemarket
n/a
Managed, User

n/a

Input Fields

string
email

Output Fields

json
amplemarket_person_match

const options = {
  method: 'POST',
  headers: {'content-type': 'application/json', authorization: 'Bearer <TOKEN>'},
  body: JSON.stringify({
    pipes: [
      {
        pipe_id: 'people:identity:amplemarket@1',
        connector: {
          strategy: 'first',
          connections: [{type: 'vault', connection: 'amplemarket_123'}]
        }
      }
    ],
    input: [{id: '1', email: 'hallp@pipe0.com'}]
  })
};

fetch('https://api.pipe0.com/v1/pipes/run', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));