Separates a person's full name into first and last name components.
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:split:name@1",
}],
input: []
})
});