Internal Server error - Adding row data via REST API

I am receiving response code 500 when adding a new row to a table.

Can you show what your REST request looks like?

POST
“application-id: C2970915-3DC2-22B4-FF97-7A4E5CD2E000”
“secret-key: xxxx-xxxx”
“user-token: AE…”
“Content-Type: application/json”
“application-type: REST”;

Req Body = {“S1” : “SSSSSSSSSS”}

I discovered this by investigating Column request size limits. The details are in:

http://support.backendless.com/t/request-limit-size

What’s in the URL?

The problem is on my side. The new code I was putting together swapped incorrectly the userToken and userObjectID values. So the HTTP Header user-token had an invalid value in it and this caused the server to return an error code of 500.

The problem is now fixed on my side but should the server return some other error ? (unable to add due to permissions error, or no permissions allowed to add row…) I have denied all permissions for nonAuthenticated users.