Skip to main content
POST
/
notes
/
contacts
/
{email}
Create Note
curl --request POST \
  --url https://connect.pingback.com/v2/notes/contacts/{email} \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "title": "Note title",
  "content": "Note Content"
}
'
{
"message": "Note created",
"data": {
"id": "6795d530-07c4-43b6-8b85-dfc2cfceceb5",
"email": "example@email.com"
}
}

Authorizations

x-api-key
string
header
required

Headers

x-developer-mode
boolean
x-api-key
string
required

Path Parameters

email
string<email>
required

Body

application/json
title
string
required
content
string

Response

Note created

message
string
data
object