Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Share contact cards from structured data, users, or vCards.
const contact = await space.contact(); if (contact) { console.log(contact.fullName, contact.phones, contact.emails); }
import { wa } from "skyline-ts"; await space.send( wa.contacts([ { name: { formatted_name: "Alex Chen", first_name: "Alex" }, phones: [{ phone: "+15551234567", type: "CELL" }], }, ]) );