Snowflake · Example Payload

Snowflake Fetchfunction Example

Data LakesData SharingData WarehousingDatabaseSQL

Snowflake Fetchfunction 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": "fetchFunction",
  "method": "GET",
  "path": "/api/v2/databases/{database}/schemas/{schema}/functions/{nameWithArgs}",
  "summary": "Fetch a Function.",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "name": "Fetchfunction200Example",
      "example": {
        "function_type": "example_value",
        "name": "Example Title",
        "arguments": [
          {
            "name": "Example Title",
            "datatype": "FIXED",
            "value": "example_value"
          }
        ],
        "returns": "FIXED",
        "max_batch_rows": 10,
        "created_on": "2026-01-15T10:30:00Z",
        "signature": "example_value",
        "language": "example_value",
        "body": "example_value"
      }
    }
  ]
}