I am trying to call the CREATE BP method against the API (version 21) wiht PostMan. To date I have the Login, Company GET, User GET, USER CREATE, Get BP List, and BP GET working just fine. The BP CREATE however is not seeming to function properly. I have tried everything in the documentation to no avail. I have also had another developer look over my attempts and we both cannot get this working. Support has not been much assistance as well. The issue boils down the this:
The documentation states.
"If "record_no" is not provided then auto-generated record_no will be assigned to record, If unique "record_no" is provided then record will be created be given record_no.
Despite this, when I omit the record_no, I am given this response:
{
"data": [],
"message": [
"record_no not present in request input"
],
"status": 3004
}
If I include the record no, the POST just behaves like a GET. Any ideas are appreciated.