Peach Developer API Docs
  • Iframe Integration
  • Payment Webhook
  • Stripe integration
  • API Reference
    • Authentication
    • Campaigns
      • Get Campiagn
      • Get Campaign stats
    • Payments
      • Create Payment
      • Update Payment
    • Transactions
      • Get Transactions
    • Contacts
      • Create Contact
      • Get Contact
      • Delete Contact
      • Update Contact
    • Interactions
      • Create Note
    • Interactions
    • Marketing Campaigns
    • Users
    • Imports
Powered by GitBook
On this page
  1. API Reference
  2. Interactions

Create Note

PreviousInteractionsNextInteractions

Last updated 1 year ago

To create a note, make a POST request to the following endpoint:

https://api.peach-in.com/v4/notes

Request

Include your API key in the Authorization header of the request, as described in the section.

Response

A successful response to the create notes endpoint will return the note object in the JSON format.

POST https://api.peach-in.com/v4/notes

Request Body

Name
Type
Description

noteTitle

String

contactId*

String

Contact ID as it is saved in PEACH

noteBody*

String

{
    "noteBody": {
        "category": "note",
        "contactId": "021c7480-a78d-11ed-b81e-25a6589f69b1",
        "noteTitle": "new title",
        "noteBody": "What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry.",
        "source": "CLIENT_API"
    },
    "interactionResponse": "\"021c7480-a78d-11ed-b81e-25a6589f69b1_f2557640-3117-11ee-bc76-2969ccb62a55\""
}
Authorization