Read and write data to multiple CRM platforms using a single API
connection_token
Setup your API Key in your code:
import { PanoraSDK } from '@panora/sdk-typescript'; const sdk = new PanoraSDK({ accessToken: "MY_API_KEY" });
Add a contact in your CRM:
curl --request POST \ --url https://api.panora.dev/crm/contacts \ --header 'Authorization: Bearer dfsdf' \ --header 'Content-Type: application/json' \ --header 'x-connection-token: <connection_token>' \ --data '{ "first_name": "Mark", "last_name": "Zuckerbeg", "email_addresses": [ { "email_address": "mark@zuckerberg.com", "email_address_type": "personal", "owner_type": "contact" } ], "phone_numbers": [ { "phone_number": "+33694837462", "phone_type": "personal", "owner_type": "contact" } ], "field_mappings": {} }'