I have to send email addresses as input from Appian to external system and the external system validates those email address and send back the ids of those email address. How i can implement the design ,what all are needed ,can someone help?
Discussion posts and replies are publicly visible
Is there any particular reason why that can't be a table instead?
All those emailadresses will be pasted from excel to interface (paragraph field)
Is the API able to respond with the a list of the emails and corresponding ids?
API work is still in progress by third party
I would request that they send you a response that includes the email + id. You can then just store that in a table on your side after your receive the response and still capture the initial emails in a paragraph.
{ { email: "test2@test.com", id: 1 }, { email: "tes2@test.com", id: 2 } }
Basically i wilI be creating a request on site by adding emailaddresses and upon click of submit it should be sending the emails addresses (line delimited) to the email validation API, and if all emails are valid then it store the EmployeeIds in the db . Mathieu Drouin :Not able understand your point .can you please elaborate
Unsure what your requirement is but having a table with two text fields with comma delimited values is not a recommended design.
You can capture the emails and them in a comma delmited format to the API but I would request to the 3rd party that they send you the response in the format outlined above so that you know which ID is associated to which email.