Back

Boxon package helper
Description
Plugin for giving the visitor a complete list of products to package its goods
Details
https://boxon.com/.well-known/ai-plugin.json
{
"schema_version": "v1",
"name_for_human": "Boxon package helper",
"name_for_model": "BoxonPackageHelper",
"description_for_human": "Plugin for giving the visitor a complete list of products to package its goods",
"description_for_model": "Plugin for giving the visitor a complete list of products to package its goods",
"auth": {
"type": "none"
},
"api": {
"type": "openapi",
"url": "https://integration.boxon.se/openai.yaml",
"is_user_authenticated": false
},
"logo_url": "https://integration.boxon.se/contentassets/b87e009f9dbf4f82a38ee8150be8e724/logo-boxon1932-black.png",
"contact_email": "marcus.gustafsson@boxon.se",
"legal_info_url": "https://integration.boxon.se/om-oss/om-boxon/"
}
https://integration.boxon.se/openai.yaml
openapi: 3.0.1
info:
title: Boxon-package-helper
description: A plugin that should give the visitor a complete list to package their goods.
version: "v1"
servers:
- url: https://integration.boxon.se/
paths:
/openai/GetPackagingArticles:
get:
operationId: getPackagingArticles
summary: Get packaging articles
parameters:
- in: query
name: height
schema:
type: integer
required: true
description: The height of the article
- in: query
name: width
schema:
type: integer
required: true
description: The width of the article
- in: query
name: length
schema:
type: integer
required: true
description: The length of the article
description: Returns all articles that can be used in packaging.
responses:
"200":
description: A JSON array of articles
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Article"
/openai/GetProductProtection:
get:
operationId: getProductProtection
summary: Get Product Protection
description: Returns all articles that can be used to protect your goods.
responses:
"200":
description: A JSON array of articles
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Article"
/openai/GetProductSealing:
get:
operationId: getProductSealing
summary: Get Product Sealing
description: Returns all articles that can be used as sealing.
responses:
"200":
description: A JSON array of articles
content:
application/json:
schema:
type: array
items:
$ref: "#/components/schemas/Article"
components:
schemas:
Article:
type: object
properties:
name:
type: string
example: E-handelslåda 145x100x59mm
code:
type: string
example: 1850
description:
type: string
example: Låda tillverkad av återvinningsbar wellpapp. Wellpapp är extremt stark i förhållande till sin vikt. Den har hög staplingsstyrka och miljöanpassad.
height:
type: integer
example: 100
width:
type: integer
example: 100
length:
type: integer
example: 100