### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/websites-create-new-website Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Get All Formats (Shell) Source: https://docs.pieces.app/api-reference/apireference/formats-snapshot Fetches all formats associated with a user using the Pieces API via a cURL command. This example demonstrates how to make a GET request to the /formats endpoint. ```Shell curl -X GET "http://localhost:100/formats" -H "accept: application/json" ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/backup-restore-specific-backup-streamed Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Workstream Summary Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/workstream_summaries-specific-workstream_summary-snapshot Fetches a snapshot of a single workstream summary, optionally including transferable data. This Node.js example demonstrates how to make a GET request to the API. ```Node.js const fetch = require('node-fetch'); const url = 'http://localhost:100/workstream_summary/workstream_summary'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/os-browser-url-open Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Anchor Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/anchor-specific-anchor-snapshot Retrieves a snapshot of a single anchor, optionally including transferable data. This Node.js example demonstrates how to make the GET request using the 'node-fetch' library. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/anchor/anchor'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### OS Settings Management Source: https://docs.pieces.app/api-reference/apireference/onboarded Endpoints for accessing, streaming, and updating OS settings. ```HTTP GET /os/settings WS /os/settings/stream POST /os/settings/update ``` -------------------------------- ### Get Range Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/ranges-specific-range-snapshot Fetches a snapshot of a single range using its identifier. This Node.js example demonstrates how to make a GET request to the /range/{range} endpoint and handle the JSON response. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/range/range'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Get Specific Format by ID (Shell) Source: https://docs.pieces.app/api-reference/apireference/formats-snapshot Fetches a specific format by its ID using the Pieces API via a cURL command. This example demonstrates a GET request to the /formats/{format} endpoint. ```Shell curl -X GET "http://localhost:100/formats/your_format_id" -H "accept: application/json" ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_snapshot Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_focused Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Get Share Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/share-snapshot Fetches a snapshot of a specific share using the Pieces API. This Node.js example demonstrates how to make a GET request to the /share/{share} endpoint, handling the response and potential errors. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/share/share'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/backup-restore-specific-backup-streamed-websocket Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Specific Format by ID (Node.js) Source: https://docs.pieces.app/api-reference/apireference/formats-snapshot Fetches a specific format by its ID using the Pieces API. This Node.js example sends a GET request to the /formats/{format} endpoint, replacing {format} with the actual format ID. ```Node const fetch = require('node-fetch'); const formatId = 'your_format_id'; // Replace with the actual format ID const url = `http://localhost:100/formats/${formatId}`; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage QGPT Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-path-verify Endpoints for QGPT (Question Generation and Prompting) functionalities, including hints, related persons, questions, relevance, reprompting, and streaming. ```HTTP POST /qgpt/hints ``` ```HTTP POST /qgpt/persons/related ``` ```HTTP POST /qgpt/question ``` ```HTTP POST /qgpt/relevance ``` ```HTTP POST /qgpt/reprompt ``` ```HTTP GET /qgpt/stream ``` -------------------------------- ### Get Format Analysis (Node.js) Source: https://docs.pieces.app/api-reference/apireference/format-analysis Retrieves an analysis for a specific format using its ID. This endpoint requires the format ID as a path parameter. The example demonstrates making a GET request using Node.js and the 'node-fetch' library. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/format/102ff265-fdfb-4142-8d94-4932d400199c/analysis'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibration_capture Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Get All Shares (Node.js) Source: https://docs.pieces.app/api-reference/apireference/shares-snapshot Retrieves all shares associated with the user. A Share represents an asset shared via a link. This example uses Node.js with the 'node-fetch' library to make a GET request to the /shares endpoint. It includes error handling for the request. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/shares'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Fetch Format Analysis (Ruby) Source: https://docs.pieces.app/api-reference/apireference/format-snapshot Retrieves analysis data for a specific format from the Pieces API using Ruby. This example utilizes the 'net/http' library for the GET request. ```Ruby require 'net/http' require 'uri' uri = URI.parse('http://localhost:100/format/102ff265-fdfb-4142-8d94-4932d400199c/analysis') request = Net::HTTP::Get.new(uri) request['accept'] = 'application/json' response = Net::HTTP.start(uri.hostname, uri.port) do |http| http.request(request) end puts response.body ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/metrics-formats-ordered Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Fetch Distribution Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/distributions-specific-distribution-snapshot Retrieves a specific snapshot of a distribution using its UUID. This Node.js example uses the 'node-fetch' library to make a GET request to the API. ```javascript const fetch = require('node-fetch'); const url = 'http://localhost:100/distribution/distribution'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_status Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Connect to Asset Stream (Node.js) Source: https://docs.pieces.app/api-reference/apireference/get-assets-stream-transferables Establishes a WebSocket connection to receive real-time updates on asset changes. This example uses Node.js and the 'node-fetch' library to make the GET request. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/assets/stream/transferables'; const options = {method: 'GET', headers: {accept: 'application/json'}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/onboarded Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_activate Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Fetch Format Analysis (Python) Source: https://docs.pieces.app/api-reference/apireference/format-snapshot Fetches analysis data for a specific format using the Pieces API. This Python example uses the 'requests' library to make a GET request. ```Python import requests url = "http://localhost:100/format/102ff265-fdfb-4142-8d94-4932d400199c/analysis" headers = { "accept": "application/json" } response = requests.get(url, headers=headers) print(response.json()) ``` -------------------------------- ### Get All Messages (Node.js) Source: https://docs.pieces.app/api-reference/apireference/messages-snapshot Retrieves all messages from the API. It supports an optional boolean parameter to control the inclusion of transferable data for performance optimization. This example uses Node.js with the 'node-fetch' library. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/messages'; const options = {method: 'GET', headers: {accept: 'application/json'}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/clear-PKCE Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_events_search Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Fetch Format Analysis (PHP) Source: https://docs.pieces.app/api-reference/apireference/format-snapshot Fetches analysis data for a specific format via the Pieces API using PHP. This example demonstrates using cURL to perform the GET request. ```PHP ``` -------------------------------- ### Create Website Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-file-open Creates a new website entry. This endpoint is used to add new websites to the system. ```HTTP POST /websites/create ``` -------------------------------- ### Connect to Asset Identifiers Stream (Node.js) Source: https://docs.pieces.app/api-reference/apireference/assets-stream-identifiers Establishes a WebSocket connection to receive updates on asset identifiers (UUIDs). This example uses Node.js with the 'node-fetch' library to make the GET request. ```javascript const fetch = require('node-fetch'); const url = 'http://localhost:100/assets/stream/identifiers'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Retrieve Asset Formats (Node.js) Source: https://docs.pieces.app/api-reference/apireference/asset-formats Fetches the available formats for a specified asset using the Pieces API. This Node.js example demonstrates how to make a GET request and process the JSON response. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/asset/2254f2c8-5797-40e8-ac56-41166dc0e159/formats'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/image-analyses-snapshot Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Persons Snapshot (Node.js) Source: https://docs.pieces.app/api-reference/apireference/persons-snapshot Retrieves a snapshot of all people from the API. Includes an option to specify whether to return transferable data for performance enhancement. This example uses Node.js with the 'node-fetch' library. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/persons'; const options = {method: 'GET', headers: {accept: 'application/json'}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage QGPT Interactions Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-pick-files Endpoints for querying and interacting with the QGPT system, including hints, related persons, questions, relevance, reprompting, and streaming responses. Supports POST and WS requests. ```HTTP POST /qgpt/hints ``` ```HTTP POST /qgpt/persons/related ``` ```HTTP POST /qgpt/question ``` ```HTTP POST /qgpt/relevance ``` ```HTTP POST /qgpt/reprompt ``` ```HTTP WS /qgpt/stream ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/distributions-create-new-distribution Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Export Asset (Node.js) Source: https://docs.pieces.app/api-reference/apireference/asset-specific-asset-export Retrieves an export version of a specified asset using a GET request. Requires the asset ID and export type. This example demonstrates fetching the export in JSON format. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/asset/2254f2c8-5797-40e8-ac56-41166dc0e159/export?export_type=HTML'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-pick-folders Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Fetch Format Analysis (Shell) Source: https://docs.pieces.app/api-reference/apireference/format-snapshot Retrieves analysis data for a specific format via the Pieces API using a GET request. Requires a format ID. This example demonstrates a basic curl command. ```Shell curl -X GET "http://localhost:100/format/102ff265-fdfb-4142-8d94-4932d400199c/analysis" -H "accept: application/json" ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/code-analyses-snapshot Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Fetch Annotation Data with Node.js Source: https://docs.pieces.app/api-reference/apireference/annotation-specific-annotation-snapshot Retrieves a snapshot of a specific annotation from the Pieces API using a GET request. This example demonstrates how to construct the request, handle the response, and log the data or any errors encountered. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/annotation/annotation'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Connect to User Data Stream (Node.js) Source: https://docs.pieces.app/api-reference/apireference/stream-user Establishes a WebSocket connection to stream user data. This endpoint requires a GET request and provides real-time updates. The example uses the 'node-fetch' library to handle the request. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/user/stream'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-associate-person Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### GET Workstream Calibrations Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_snapshot Retrieves a snapshot of all captured copilot window dimensions. This endpoint may return many captures and can be filtered by calibration type in the future. Dependencies include a running local server and the 'node-fetch' library for Node.js examples. ```Node const fetch = require('node-fetch'); const url = 'http://localhost:100/workstream_pattern_engine/processors/vision/calibrations'; const options = {method: 'GET', headers: {accept: 'application/json'}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/conversation-associate-grounding-temporal_range-workstream Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Backup Restoration Status (Node.js) Source: https://docs.pieces.app/api-reference/apireference/backup-specific-restoration-status Retrieves the restoration status of a specific backup. Requires the backup identifier as a path parameter. The endpoint returns a 200 status on success, 404 if the backup is not found, and 500 for server errors. This example uses Node.js with the 'node-fetch' library. ```Node.js const fetch = require('node-fetch'); const url = 'http://localhost:100/backup/backup/restoration/status'; const options = {method: 'GET', headers: {accept: 'application/json'}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data); } catch (error) { console.error(error); } ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-pick-folders Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_data_clear Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Get Sensitives Source: https://docs.pieces.app/api-reference/apireference/sensitive-scores-increment Retrieves a list of sensitive items. This endpoint uses the GET method and is part of the Pieces API. ```Node GET /sensitives ``` ```Shell GET /sensitives ``` ```Python GET /sensitives ``` ```Ruby GET /sensitives ``` ```PHP GET /sensitives ``` -------------------------------- ### Manage QGPT Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-pick-folders Endpoints for QGPT (Question Generation and Prompting) functionalities, including hints, related persons, questions, relevance, reprompting, and streaming. ```HTTP POST /qgpt/hints ``` ```HTTP POST /qgpt/persons/related ``` ```HTTP POST /qgpt/question ``` ```HTTP POST /qgpt/relevance ``` ```HTTP POST /qgpt/reprompt ``` ```HTTP GET /qgpt/stream ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/index Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage QGPT Source: https://docs.pieces.app/api-reference/apireference/sign-out-of-OS Endpoints for QGPT (Question Generation and Prompting) functionalities, including hints, related persons, questions, relevance, reprompting, and streaming. ```HTTP POST /qgpt/hints ``` ```HTTP POST /qgpt/persons/related ``` ```HTTP POST /qgpt/question ``` ```HTTP POST /qgpt/relevance ``` ```HTTP POST /qgpt/reprompt ``` ```HTTP GET /qgpt/stream ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-disassociate-range Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-disassociate-person Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Applets Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-pick-folders Endpoints for launching, restarting, and terminating OS applets. ```HTTP POST /os/applet/launch ``` ```HTTP POST /os/applet/restart ``` ```HTTP POST /os/applet/terminate ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/hints-create-new-hint Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-disassociate-conversation Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-disassociate-asset Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_events_specific_snapshot Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_focused Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-associate-conversation Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/websites-create-new-website Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-associate-workstream_event Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-associate-person Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/os-device-information Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_summary-associate-workstream_event Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summaries-specific-workstream_summary-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-path-verify Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_summaries-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/assets-pseudo-snapshot Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/workstream_events-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_snapshot Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/website-associate-workstream_summary Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/website-associate-person Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/website-associate-workstream_summary Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/website-associate-message Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Applets Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_focused Endpoints for launching, restarting, and terminating OS applets. ```HTTP POST /os/applet/launch ``` ```HTTP POST /os/applet/restart ``` ```HTTP POST /os/applet/terminate ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/website-associate-asset Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_activate Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/update-user Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/respond-with-code Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/users-specific-user-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_events_snapshot Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/discovery-discover-assets-html Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/user-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/os_update_check_stream Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/unload-models Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tags-specific-tag-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/distributions-create-new-distribution Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tags-exists Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/range-associate-workstream_summary Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage OS Applets Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibrations_snapshot Endpoints for launching, restarting, and terminating OS applets. ```HTTP POST /os/applet/launch ``` ```HTTP POST /os/applet/restart ``` ```HTTP POST /os/applet/terminate ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tags-create-new-tag Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/backups-create-new-backup-streamed Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tag-scores-increment Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tag-disassociate-person Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/database-import Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tag-based-search Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/workstream_events-snapshot Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_calibration_capture Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/tag-disassociate-asset Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/os-applet-launch Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/stream-assets Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Get Shares Source: https://docs.pieces.app/api-reference/apireference/share-scores-increment Retrieves a list of shares. This is a GET request. ```Shell curl -X GET http://localhost:100/shares ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/workstream_suggestions_stream Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/asset-associate-hint Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/share-scores-increment Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/sign-out-of-OS Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/neural-code-search Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/sensitives-create-new-sensitive Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Sign In/Out Source: https://docs.pieces.app/api-reference/apireference/workstream_pattern_engine_processors_vision_activate Endpoints for signing into and out of the OS. ```HTTP POST /os/sign_in ``` ```HTTP POST /os/sign_out ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/share-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage Websites - Create Website Source: https://docs.pieces.app/api-reference/apireference/hints-delete-specific-hint Creates a new website entry in the system. This is the initial step to add a new website for management. ```HTTP POST /websites/create ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/sensitive-snapshot Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### OS Settings Management Source: https://docs.pieces.app/api-reference/apireference/backups-create-new-backup-streamed-websocket Endpoints for accessing, streaming, and updating OS settings. ```HTTP GET /os/settings WS /os/settings/stream POST /os/settings/update ``` -------------------------------- ### Manage OS Settings Source: https://docs.pieces.app/api-reference/apireference/sign-into-OS Endpoints for retrieving, streaming, and updating OS settings. ```HTTP GET /os/settings ``` ```HTTP GET /os/settings/stream ``` ```HTTP POST /os/settings/update ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/search-assets Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` -------------------------------- ### Manage OS Applets Source: https://docs.pieces.app/api-reference/apireference/os-filesystem-path-verify Endpoints for launching, restarting, and terminating OS applets. ```HTTP POST /os/applet/launch ``` ```HTTP POST /os/applet/restart ``` ```HTTP POST /os/applet/terminate ``` -------------------------------- ### Retrieve Analyses Source: https://docs.pieces.app/api-reference/apireference/range-scores-increment Your GET endpoint for analyses. This is a GET request. ```HTTP GET /analyses [GET] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.