IT and Development
Adalo
12min
the adalo modules allow you to monitor, create, update, send, retrieve, list, and delete the records in your adalo account get started with adalo prerequisites an adalo account in order to use adalo with make, it is necessary to have an adalo account if you do not have one, you can create an adalo account at app adalo com/signup connect adalo to make to connect your adalo account to make you need to obtain the api key, app id, and database collection id from your adalo account and insert it in the create a connection dialog in the make module log in to your adalo account from the left menu, click settings ()> app access > generate key copy the api key to your clipboard go to make and open the adalo module's create a connection dialog in the api key field, enter the api key details copied in step 3 in the app id field, enter your adalo account's app id for example, if your adalo account's url address is https //api adalo com/v0/apps/{appid}/ then your app id is {appid} in the databases collection id field, enter the collection id details you can find it at database > users > api documentation the endpoint will be in the https //api adalo com/v0/apps/{appid}/collections/ { collectionid } format record watch records triggers when a record is created or updated field description connection establish a connection to your adalo account watch records select or map the option by which you want to watch the records by created time by updated time limit set the maximum number of records make should return during one execution cycle list records retrieves a list of records field description connection establish a connection to your adalo account limit set the maximum number of records make should return during one execution cycle get a record gets a specified record field description connection establish a connection to your adalo account record id select or map the record id whose detail you want to retrieve add a record adds a new record field description connection establish a connection to your adalo account email enter (map) the user's email address password enter (map) the user's password username enter (map) the user's username as it appears in the record full name enter (map) the user's full name profile picture enter (map) the url address to the user's profile image update a record updates an existing record field description connection establish a connection to your adalo account record id select or map the record id whose details you want to update email enter (map) the user's email address password enter (map) the user's password username enter (map) the user's username as it appears in the record full name enter (map) the user's full name profile picture enter (map) the url address to the user's profile image delete a record deletes a record field description connection establish a connection to your adalo account record id select or map the record id you want to delete other make an api call performs an arbitrary authorized api call field description connection establish a connection to your adalo account url enter a path relative to https //api adalo com/v0/apps/{appid}/collections/{collectionid}/ for example /{record id} method select the http method you want to use get to retrieve information for an entry post to create a new entry put to update/replace an existing entry patch to make a partial entry update delete to delete an entry headers enter the desired request headers you don't have to add authorization headers; we already did that for you query string enter the request query string body enter the body content for your api call example of use get all collection records the following api call returns all the records from your adalo account method get matches of the search can be found in the module's output under bundle > body > records in our example, 9 records were returned for the list of available endpoints, refer to the adalo api documentation