Snowflake · Example Payload

Snowflake Listfunctions Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Listfunctions 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": "listFunctions",
  "method": "GET",
  "path": "/api/v2/databases/{database}/schemas/{schema}/functions",
  "summary": "List Functions",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Listfunctions200Example",
      "example": [
        {
          "function_type": "example_value",
          "name": "Example Title",
          "arguments": [
            {}
          ],
          "returns": "FIXED",
          "max_batch_rows": 10,
          "created_on": "2026-01-15T10:30:00Z",
          "signature": "example_value",
          "language": "example_value",
          "body": "example_value"
        }
      ]
    }
  ]
}