Hi everyone,
We are developing the use of API calls, which will be run manually for the time being.
The data resulting from the calls is going to be stored in a database.
We would like to establish how to assign unique IDs (primary key values) that will make each record uniquely identifiable.
Let's say that we run an API call and it returns 100 records. We assign the unique IDs 1 to 100 to the records, and then output these records to our database to be stored.
Let's then say that we come back one week later, and we run the same API call. This returns, say, another 150 records. How can we enable the assigning of the unique IDs to continue from the previous last ID number (that is, ID 101 will be the next value to be assigned)?
Many thanks for your support!
Alex