One of the new features added to PowerBuilder 2017 R2 is support for REST web services. This feature isn't 100% complete, as additional REST functionality is planned for 2017 R3. There's still a lot in the R2 release to look at though.
To make things simple for the demo, we're going to use a online REST web service called JSONPlaceHolder.. The service doesn't require creating an account or user authentication. While the GET (retrieve) methods are fully functional the POST ( insert ), PUT/PATCH ( update ) and DELETE (delete) methods are placeholders. They return result codes or in the case of POST the id value of the inserted row, but they don't actually modify the data.
Note that while REST web services can return data in any internet mime encodable format, the vast majority of them use JSON and JSON is the only data format supported by the REST client object in PowerBuilder 2017.