Create Note

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 Authorization 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\""
}

Last updated