Question 1 : What are REST APIs?
Answer: REST stands for Representational state transfer. It is a protocol for data transfer using HTTP methods.Usually REST API uses JSON format to communicate as it is simpler and lightweight than XML.
ToChar(Today(),’YYYY’) + ToChar(Today(),’MM’) + ToChar(Today(), ‘DD’)
ToChar([Date Of Birth], ‘YYYY’) + ToChar([Date Of Birth], ‘MM’) + ToChar([Date Of Birth], ‘DD’)
The Under Age flag : IIf(([Step1] – [Step2]) < “180000”, “Y”, “N”)
IF( NOT( ISBLANK( Birthdate ) ) ,
IF( DATE( 2000 , MONTH( Birthdate ) , DAY( Birthdate ) ) <= DATE( 2000 , MONTH( TODAY() ) , DAY( TODAY() ) ),
YEAR (Today()) - YEAR ( Birthdate ),
YEAR (Today()) - YEAR ( Birthdate ) -1 ),
null)