As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
apparently this is only when using the API Console, which is (or I guess was) my main way of testing the various endpoints
M
Morgan
said
over 9 years ago
Yes there are some known issues with the API Console as it relates to empty arrays and null data. Those issues have been reported and will be addressed in the near future. There is a bigger issue that we are planning to address which is better utilities for testing.
In the meantime, I suggest using a Postman chrome extension or one of the many commandline REST clients like curl to test your endpoints.
Michael LeBarron
if I send
{
"records": []
}
to a custom endpoint
I would expect to find that request.body.records.length == 0
however, records doesn't even exist anymore, the body is just {}
why? Did I miss something somewhere?