Seeking help on a simple API build

I’m a first timer and trying having a hard time finding the proper logic.

looking to import a list of emails into a table.

Create an API that validates if the email is there and if it is it sends back a valid response and also adds an integer to be associated with that email.

Example, is xw@cn.com a valid member, if yes then in the table for xw it will show 1, if they do it again it will be 2, so on and so on. This is to see how many times they have tried to validate that email. And the api will respond with “valid”

if the email is not in the table it will return “not-valid”

Hi Peter,

Let’s start with importing data into the table. Data can be imported from a CSV file. Will you be able to prepare the CSV? I mean is the data somewhere now where you can turn it into a CSV?

Regards,
Mark

https://www.dropbox.com/s/o1qf2hyy6iwxwsp/Users_test.csv?dl=0

Hi Peter,

I formatted the header row so that Backendless recognizes the data types, constraints, etc. The file is attached below:
Users_test.csv (3.9 KB)
To import the data into Backendless:

  1. Open your app in Backendless Console
  2. Navigate to Manage > Import
  3. Use this Browse button to select your file:
  4. Click IMPORT
  5. On the screen that shows up next click FINALIZE IMPORT
  6. Backendless will take a second to process the data, which you will be able to see on the Data screen:

Hope this helps.

Mark