I’m Trying to create a note through API but I keep geting the folowing error:
{
"type": "error.list",
"request_id": "00004sf7lmss99tebltg",
"errors": o
{
"code": "parameter_invalid",
"message": "Body can't be nil"
}
]
}
I also noticed that the documentation URL is wrong, ‘note’ should be “notes”
API Call:
$ curl https://api.intercom.io/contacts/id/note
-X POST
-H 'Authorization:Bearer ’
-H ‘Accept:application/json’ -d
{
“body”: “Shiny”,
“admin_id”: “12345”
}