Integrate with Nutshell
Create a new contact in Nutshell CRM.
Create a new contact
- In Next Matter select the workflow that should integrate with Nutshell and add a new integration step.
- Click Settings and enter the following details:
- Method: POST
- URL:
https://app.nutshell.com/api/v1/json
- Headers: Content-Type: application/json
- Headers: Authorization: Base64-encoded
username:Nutshell_API_KEY
. It might look like the following: [email protected]:bhu123b12y312312njh123
For details on how to generate a Nutshell API key, see Nutshell documentation. - Body might look like the following:
{ { "method": "newContact", "params": { "contact": { "name": { "givenName": "FIRST_NAME", //Enter first name "familyName": "LAST_NAME" //Entr last name }, "email": { "email": "EMAIL_ADDRESS" //Enter email address }, "phone": { "number": "PHONE NUMBER" //Enter phone number }, "tags": ["TAG_1", "TAG_2"] //Enter tags for this contact } }, "id": "1" } }
- If you want to use this contact's data further in the process, create a variable for the contact_id with the value of:
$.result.id
. - Save your changes.
Create a new account
- In Next Matter select the workflow that should integrate with Nutshell and add a new integration step.
- Click Settings and enter the following details:
- Method: POST
- URL:
https://app.nutshell.com/api/v1/json
- Headers: Content-Type: application/json
- Headers: Authorization: Base64-encoded
username:Nutshell_API_KEY
. It might look like the following: [email protected]:bhu123b12y312312njh123
For details on how to generate a Nutshell API key, see Nutshell documentation. - Body might look like the following:
{ "method": "newAccount", "params": { "account": { "name": "COMPANY_NAME", //Replace with company name "owner": { "entityType": "Users", "id": OWNER_ID //Replace with the Owner User ID in your Nutshell }, "industryId": "INDUSTRY_ID", //Replace with industry ID "accountTypeId": "1", "url": ["COMPANY_WEBSITE"], //Replace with company website URL "phone": ["COMPANY_PHONE"], //Replace with company phone number "address": [ { "address_1": "ADDRESS", "city": "CityName", "state": "StateName", "postalCode": "12345", "country": "US" } ] } }, "id": "10" }
- If you want to use this account's data further in the process, create a variable for the account_id with the value of:
$.result.id
. - Save your changes.
Create a new lead
- In Next Matter select the workflow that should integrate with Nutshell and add a new integration step.
- Click Settings and enter the following details:
-
Method: POST
-
URL:
https://app.nutshell.com/api/v1/json
-
Headers: Content-Type: application/json
-
Headers: Authorization: Base64-encoded
username:Nutshell_API_KEY
. It might look like the following: [email protected]:bhu123b12y312312njh123
For details on how to generate a Nutshell API key, see Nutshell documentation. -
Body might look like the following:
{ "method": "newLead", "params": { "lead": { "description": "LEAD_DESCRIPTION", //Please replace with Lead description "contacts": [ { "entityType": "Contacts", "id": "CONTACT_ID" //Please replace with contact ID } ], "accounts": [ { "entityType": "Accounts", "id": "ACCOUNT_ID" //Please replace with Account ID } ], "note": "Note about the lead" } }, "id": "20" }
- If you want to use this account's data further in the process, create a variable for the contact_id with the value of:
$.result.id
. - Save your changes.
Updated 29 days ago