POST https://{hostname}.hydrolix.live/config/v1/orgs/{org_id}/projects/{project_id}/functions/bulk_function/Authorization:Bearer {{access_token}}Content-Type:application/json[{"name":"sample_function1","description":"samplefunction1","sql":"SELECT*FROMsample_project.sample_table_1FORMATJSON"},{"name":"sample_function2","description":"samplefunction2","sql":"SELECT*FROMsample_project.sample_table_2FORMATJSON"}]
The SQL is just the function definition
The sql section of the function config corresponds to the expression which immediately follows:CREATE FUNCTION <function name> AS ...