Snowflake · Example Payload

Snowflake Listuserdefinedfunctions Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Listuserdefinedfunctions Example is an example object payload from Snowflake, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "listUserDefinedFunctions",
  "method": "GET",
  "path": "/api/v2/databases/{database}/schemas/{schema}/user-defined-functions",
  "summary": "List Udfs",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listuserdefinedfunctions200Example",
      "example": [
        {
          "name": "Example Title",
          "is_temporary": true,
          "is_aggregate": true,
          "is_memoizable": true,
          "is_table_function": true,
          "valid_for_clustering": true,
          "is_secure": true,
          "arguments": [
            {}
          ],
          "return_type": {
            "type": "example_value"
          },
          "language_config": {
            "language": "example_value",
            "called_on_null_input": true,
            "is_volatile": true
          },
          "comment": "example_value",
          "body": "example_value",
          "created_on": "2026-01-15T10:30:00Z",
          "schema_name": "example_value",
          "database_name": "example_value",
          "min_num_arguments": 10,
          "max_num_arguments": 10,
          "owner": "example_value",
          "owner_role_type": "example_value",
          "is_builtin": true
        }
      ]
    }
  ]
}