--- sidebar_position: 2 description: Check BLOB and other functions to work with Ollama in the Open Integration Package, a free open-source integration library for 1C:Enterprise 8, OneScript and CLI keywords: [1C, 1С, 1С:Enterprise, 1С:Enterprise 8.3, API, Integration, Services, Exchange, OneScript, CLI, Ollama] --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; # Check BLOB Checks the existence of a BLOB by its SHA256 digest `Function CheckBlob(Val URL, Val SHA256, Val AdditionalHeaders = "") Export` | Parameter | CLI option | Type | Required | Description | |-|-|-|-|-| | URL | --url | String | ✔ | Ollama server URL | | SHA256 | --digest | String | ✔ | SHA256 BLOB digest | | AdditionalHeaders | --headers | Map Of KeyAndValue | ✖ | Additional request headers, if necessary | Returns: Map Of KeyAndValue - Processing result
:::tip Method at API documentation: [Check if a Blob Exists](https://github.com/ollama/ollama/blob/main/docs/api.md#check-if-a-blob-exists) :::
```bsl title="1C:Enterprise/OneScript code example" URL = "https://hut.openintegrations.dev/ollama"; Token = "12We34..."; // Authorization - not part API Ollama SHA256 = "08bed66c9b1f3d0c9839abd543e96343dababbab2040e9dbcf6c32a0fc55f94c"; AdditionalHeaders = New Map; AdditionalHeaders.Insert("Authorization", StrTemplate("Bearer %1", Token)); Result = OPI_Ollama.CheckBlob(URL, SHA256, AdditionalHeaders); ``` ```bash # JSON data can also be passed as a path to a .json file oint ollama CheckBlob \ --url "https://hut.openintegrations.dev/ollama" \ --digest "yoyoyo" \ --headers "{'Authorization':'***'}" ``` ```batch :: JSON data can also be passed as a path to a .json file oint ollama CheckBlob ^ --url "https://hut.openintegrations.dev/ollama" ^ --digest "yoyoyo" ^ --headers "{'Authorization':'***'}" ``` ```json title="Result" { "status_code": 200 } ```