API to update collection

Hi @RayInBC,

Here is the thing: this “…n5f/1” in the API request is an internal id of the record in the collection, which should be updated (of course the record, not the collection :slight_smile: ).

You need to know this ID somehow. The problem is, that there is no way to get the internal ID of the record from inside of the Adalo app. You can try to use some ways to guess it, but they can’t be 100% reliable.

So before updating, you need to run a “GET ALL” on the collection, filter the output, get the desired record ID, and only after that you can run PUT with data update. This is how it works as for now, according to my knowledge.

You can read the related discussion here: How to Access Record ID information

Hopefully this will improve one day :slight_smile:

Best regards, Victor.

1 Like