In our organization, we create Note item for a Customer item or a Project Item. I'd like to know if I can create Note item via Rest API.
Below is a json message that I've tried to PUT to the Rest API at "https://api2.clarizen.com/v1.0/services/data/objects/note" but it does not seem to create the note... Does the Rest API support Note creation?
{
"PlainText": "A new note for customer via Rest API",
"AttachedTo": "/Customer/c78f2f04-ce88-4f59-ab26-cbbc68fd79b7",
"CreatedOn": "2014-09-15T17:05:41.6003660",
"CreatedBy":"/User/fb37be39-f634-4b20-b28d-0a3d3b825c5b"
}
Both customer and user id do exist on Clarizen. What have I done wrong? Please help. Thanks.