All my API calls work except when trying to create a gift note, I receive a 403 forbidden error message from both my code and the API docs example.
This is the endpoint Im calling
The request schema looks like this:
{
"gift_id": 356,
"date": {
"d": 15,
"m": 12,
"y": 2018
},
"summary": "Registration fees",
"text": "The registration fees were paid by Mrs. Hernandez.",
"note_type_id": 1122,
"author": "Supervisor"
}
It's a valid request as far as I can see and other API calls work during the same request to the server (create gift, create constituent etc) but the create gift note fails for some reason. It does say it's still in preview mode so perhaps there is a bug with this API endpoint?