Skip to Content

Join Name

Combines first and last name components into a complete full name.

ProviderBilling Mode
Docs
CredentialsCost per record
Docs
P
pipe0
n/a
Managed

0 credits

Input Fields

Field group

All Required
first_name
string
last_name
string

Output Fields

name
string

const result = await fetch("https://api.pipe0.com/v1/run/sync", {
  method: "POST",
  headers: {
    "Authorization": `Bearer ${API_KEY}`,
  },
  body: JSON.stringify({
    pipes: [{ 
      pipe_id: "people:join:name@1", 
    }],
    input: []
  })
});