GET https://{host}/seed/api/?table={entity name}&limit={number of records to be returned}GET https://{host}/seed/api/?table={entity name}&id={value of PK to be selected}table = entity name. To return all tables use * id = the value of the PK to be returnedwhereAttr = where clause attributewhereValue = where clause valuewhereClause = where clause: default is EQUAL, but it can be LIKElimit = the number of records to be returned (no default)scope = scope: select (default), create (returns CREATE TABLE statement)POST https://{host}/seed/api/?table={entity name}table = entity name (MANDATORY)body = JSON with the structure returned by GET methodDELETE https://{host}/seed/api/?table={entity name}&id={value of PK to be selected}table = Entity name. To return all tables use *id = The value of the PK to be returned