Skip to content

Instantly share code, notes, and snippets.

@bacarini
Created February 11, 2025 12:17
Show Gist options
  • Save bacarini/ae83182d9491fe398c818451e6464fe2 to your computer and use it in GitHub Desktop.
Save bacarini/ae83182d9491fe398c818451e6464fe2 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
{
"info": {
"_postman_id": "c922075b-1573-4bf3-8108-3d758e2c3d3b",
"name": "WIB API for lockers",
"description": "API available for WIB Machinery\n\nContact Support:\n Email: [email protected]",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
"_exporter_id": "95335",
"_collection_link": "https://bounce-lockers.postman.co/workspace/Bounce-Lockers~3c37237d-589d-44bd-89d7-da4e6ece9e97/collection/95335-c922075b-1573-4bf3-8108-3d758e2c3d3b?action=share&source=collection_link&creator=95335"
},
"item": [
{
"name": "agent",
"item": [
{
"name": "{agent_id}",
"item": [
{
"name": "agent read",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"agent_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"badge_id\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"language\": \"<string>\",\n \"reclaim_only\": \"<boolean>\",\n \"pin_id\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
},
{
"name": "agent update",
"request": {
"method": "PUT",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"agent_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"badge_id\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"language\": \"<string>\",\n \"reclaim_only\": \"<boolean>\",\n \"pin_id\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
},
{
"name": "agent delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"agent_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"badge_id\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"language\": \"<string>\",\n \"reclaim_only\": \"<boolean>\",\n \"pin_id\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent/:agent_id",
"host": [
"{{baseUrl}}"
],
"path": [
"agent",
":agent_id"
],
"variable": [
{
"key": "agent_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "agent list",
"protocolProfileBehavior": {
"disabledSystemHeaders": {}
},
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/agent",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent?order_by=agent_id&filter_field=&filter_value=&page=1&page_size=10",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
],
"query": [
{
"key": "order_by",
"value": "agent_id",
"description": "Field for sorting the results (example agent_id, in revers order -agent_id)"
},
{
"key": "filter_field",
"value": "",
"description": "Field for filtering result (example agent_id)"
},
{
"key": "filter_value",
"value": "",
"description": "Field for filtering result (example 1)"
},
{
"key": "page",
"value": "1",
"description": "Page number"
},
{
"key": "page_size",
"value": "10",
"description": "Element per page"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"agent_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"badge_id\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"language\": \"<string>\",\n \"reclaim_only\": \"<boolean>\",\n \"pin_id\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent?order_by=agent_id&filter_field=&filter_value=&page=1&page_size=10",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
],
"query": [
{
"key": "order_by",
"value": "agent_id",
"description": "Field for sorting the results (example agent_id, in revers order -agent_id)"
},
{
"key": "filter_field",
"value": "",
"description": "Field for filtering result (example agent_id)"
},
{
"key": "filter_value",
"value": "",
"description": "Field for filtering result (example 1)"
},
{
"key": "page",
"value": "1",
"description": "Page number"
},
{
"key": "page_size",
"value": "10",
"description": "Element per page"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/agent?order_by=agent_id&filter_field=&filter_value=&page=1&page_size=10",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
],
"query": [
{
"key": "order_by",
"value": "agent_id",
"description": "Field for sorting the results (example agent_id, in revers order -agent_id)"
},
{
"key": "filter_field",
"value": "",
"description": "Field for filtering result (example agent_id)"
},
{
"key": "filter_value",
"value": "",
"description": "Field for filtering result (example 1)"
},
{
"key": "page",
"value": "1",
"description": "Page number"
},
{
"key": "page_size",
"value": "10",
"description": "Element per page"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
},
{
"name": "agent create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
]
},
"description": " Create a new Agent unique validation for email, badge_id, pin_id "
},
"response": [
{
"name": "Untitled Response",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"password\": \"agent_password\",\n \"badge_id\": \"<string>\",\n \"language\": \"en-EN\",\n \"reclaim_only\": false\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/agent",
"host": [
"{{baseUrl}}"
],
"path": [
"agent"
]
}
},
"status": "Created",
"code": 201,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"password\": \"agent_password\",\n \"language\": \"en-EN\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\",\n \"badge_id\": \"<string>\",\n \"reclaim_only\": false\n}"
}
]
}
]
},
{
"name": "auth",
"item": [
{
"name": "token",
"item": [
{
"name": "Get JWT token",
"request": {
"auth": {
"type": "noauth"
},
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"{{basicAuthUsername}}\",\n \"password\": \"{{basicAuthPassword}}\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/auth/token",
"host": [
"{{baseUrl}}"
],
"path": [
"auth",
"token"
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"<string>\",\n \"password\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/auth/token",
"host": [
"{{baseUrl}}"
],
"path": [
"auth",
"token"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"expires_in\": \"<integer>\",\n \"expiry_timestamp\": \"<integer>\",\n \"token\": \"<string>\",\n \"token_type\": \"Bearer\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"<string>\",\n \"password\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/auth/token",
"host": [
"{{baseUrl}}"
],
"path": [
"auth",
"token"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\"\n}"
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"username\": \"<string>\",\n \"password\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/auth/token",
"host": [
"{{baseUrl}}"
],
"path": [
"auth",
"token"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\"\n}"
}
]
}
]
}
]
},
{
"name": "business_rules",
"item": [
{
"name": "create",
"item": [
{
"name": "business rules create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {\n \"Fri\": \"<boolean>\",\n \"Mon\": \"<boolean>\",\n \"Sat\": \"<boolean>\",\n \"Sun\": \"<boolean>\",\n \"Thu\": \"<boolean>\",\n \"Tue\": \"<boolean>\",\n \"Wed\": \"<boolean>\"\n },\n \"share\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/create",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {\n \"Fri\": \"<boolean>\",\n \"Mon\": \"<boolean>\",\n \"Sat\": \"<boolean>\",\n \"Sun\": \"<boolean>\",\n \"Thu\": \"<boolean>\",\n \"Tue\": \"<boolean>\",\n \"Wed\": \"<boolean>\"\n },\n \"share\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/create",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {\n \"Fri\": \"<boolean>\",\n \"Mon\": \"<boolean>\",\n \"Sat\": \"<boolean>\",\n \"Sun\": \"<boolean>\",\n \"Thu\": \"<boolean>\",\n \"Tue\": \"<boolean>\",\n \"Wed\": \"<boolean>\"\n },\n \"share\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/create",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {\n \"Fri\": \"<boolean>\",\n \"Mon\": \"<boolean>\",\n \"Sat\": \"<boolean>\",\n \"Sun\": \"<boolean>\",\n \"Thu\": \"<boolean>\",\n \"Tue\": \"<boolean>\",\n \"Wed\": \"<boolean>\"\n },\n \"share\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/create",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "business rules delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "business rules details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "business rules list list",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/list",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/list",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n },\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/list",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/business_rules/list",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "business rules update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<string>\",\n \"grace_period\": \"<string>\",\n \"week_days\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<string>\",\n \"grace_period\": \"<string>\",\n \"week_days\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<integer>\",\n \"grace_period\": \"<integer>\",\n \"week_days\": {},\n \"share\": \"<boolean>\",\n \"created_at\": \"<dateTime>\",\n \"updated_at\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<string>\",\n \"grace_period\": \"<string>\",\n \"week_days\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"start_time\": \"<string>\",\n \"end_time\": \"<string>\",\n \"time_use\": \"<string>\",\n \"grace_period\": \"<string>\",\n \"week_days\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/business_rules/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"business_rules",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "customer",
"item": [
{
"name": "create",
"item": [
{
"name": "Create a new customer",
"request": {
"method": "POST",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"address\": \"<string>\",\n \"impressum_data\": \"<string>\",\n \"company_name\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"status\": \"ENABLED\",\n \"address_latitude\": \"<number>\",\n \"address_longitude\": \"<number>\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"logo_name\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"create"
]
},
"description": "Required fields\ncompany_name -> the name of the company\naddress -> the location where is the comnpany"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"address\": \"<string>\",\n \"impressum_data\": \"<string>\",\n \"company_name\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"status\": \"ENABLED\",\n \"address_latitude\": \"<number>\",\n \"address_longitude\": \"<number>\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"logo_name\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"customer_id\": \"<integer>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"address\": \"<string>\",\n \"impressum_data\": \"<string>\",\n \"company_name\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"status\": \"ENABLED\",\n \"address_latitude\": \"<number>\",\n \"address_longitude\": \"<number>\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"logo_name\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"address\": \"<string>\",\n \"impressum_data\": \"<string>\",\n \"company_name\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"status\": \"ENABLED\",\n \"address_latitude\": \"<number>\",\n \"address_longitude\": \"<number>\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"logo_name\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{customer_id}",
"item": [
{
"name": "Update a company values",
"request": {
"method": "PUT",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/update/:customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"update",
":customer_id"
],
"variable": [
{
"key": "customer_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Not Required fields"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/update/:customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"update",
":customer_id"
],
"variable": [
{
"key": "customer_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"customer_id\": \"<integer>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/update/:customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"update",
":customer_id"
],
"variable": [
{
"key": "customer_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"DISABLED\",\n \"logo_base64\": \"<string>\",\n \"logo_content\": \"<string>\",\n \"company_name\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"vat_number\": \"<string>\",\n \"fiscal_code\": \"<string>\",\n \"logo_name\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/customer/update/:customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"customer",
"update",
":customer_id"
],
"variable": [
{
"key": "customer_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
}
]
}
]
},
{
"name": "endCustomers",
"item": [
{
"name": "create",
"item": [
{
"name": "End customer create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"language\": \"<string>\",\n \"address\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/create",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"language\": \"<string>\",\n \"address\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/create",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"language\": \"<string>\",\n \"address\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/create",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"email\": \"<string>\",\n \"language\": \"<string>\",\n \"address\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/create",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{end_customer_id}",
"item": [
{
"name": "End customer delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/delete/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"delete",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Soft delete of end customer\n\nRequired parameter\nend_customer_id -> the identifier of end customer to delete\n\nset the is_deleted flag, register whu and when deleted the end customer"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/delete/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"delete",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/delete/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"delete",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/delete/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"delete",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{end_customer_id}",
"item": [
{
"name": "end Customers details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/details/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"details",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/details/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"details",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/details/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"details",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/details/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"details",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "end Customers list list",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/list",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/list",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n },\n {\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/list",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/endCustomers/list",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{end_customer_id}",
"item": [
{
"name": "End customer update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"language\": \"<string>\",\n \"pin_id\": \"8524312465831802789688763529576591719924654841206698524863768581095642850920822919704409600060018172\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/update/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"update",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update an end customer\n\nRequired parameter\nend_customer_id -> identifier of end customer tu update"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"language\": \"<string>\",\n \"pin_id\": \"8524312465831802789688763529576591719924654841206698524863768581095642850920822919704409600060018172\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/update/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"update",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"end_customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"pobox\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"otp\": \"<boolean>\",\n \"otp_code\": \"<string>\",\n \"is_expired\": \"<boolean>\",\n \"otp_expire\": \"<dateTime>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"pin_id\": \"<integer>\",\n \"language\": \"<string>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"language\": \"<string>\",\n \"pin_id\": \"8524312465831802789688763529576591719924654841206698524863768581095642850920822919704409600060018172\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/update/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"update",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"password\": \"<string>\",\n \"username\": \"<string>\",\n \"company_name\": \"<string>\",\n \"is_enabled\": true,\n \"otp\": false,\n \"is_expired\": false,\n \"expiration_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"meta_data\": {},\n \"badge_id\": \"<string>\",\n \"language\": \"<string>\",\n \"pin_id\": \"8524312465831802789688763529576591719924654841206698524863768581095642850920822919704409600060018172\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/endCustomers/update/:end_customer_id",
"host": [
"{{baseUrl}}"
],
"path": [
"endCustomers",
"update",
":end_customer_id"
],
"variable": [
{
"key": "end_customer_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "items_issue",
"item": [
{
"name": "create",
"item": [
{
"name": "{language}",
"item": [
{
"name": "items issue create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/create/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"create",
":language"
],
"variable": [
{
"key": "language",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/create/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"create",
":language"
],
"variable": [
{
"key": "language"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/create/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"create",
":language"
],
"variable": [
{
"key": "language"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/create/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"create",
":language"
],
"variable": [
{
"key": "language"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{code}",
"item": [
{
"name": "{language}",
"item": [
{
"name": "items issue delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
}
],
"url": {
"raw": "{{baseUrl}}/items_issue/delete/:code/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"delete",
":code",
":language"
],
"variable": [
{
"key": "code",
"value": "<string>",
"description": "(Required) "
},
{
"key": "language",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/items_issue/delete/:code/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"delete",
":code",
":language"
],
"variable": [
{
"key": "code"
},
{
"key": "language"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/items_issue/delete/:code/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"delete",
":code",
":language"
],
"variable": [
{
"key": "code"
},
{
"key": "language"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/items_issue/delete/:code/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"delete",
":code",
":language"
],
"variable": [
{
"key": "code"
},
{
"key": "language"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "{language}",
"item": [
{
"name": "items issue update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/update/:id/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"update",
":id",
":language"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "language",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/update/:id/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"update",
":id",
":language"
],
"variable": [
{
"key": "id"
},
{
"key": "language"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/update/:id/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"update",
":id",
":language"
],
"variable": [
{
"key": "id"
},
{
"key": "language"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/items_issue/update/:id/:language",
"host": [
"{{baseUrl}}"
],
"path": [
"items_issue",
"update",
":id",
":language"
],
"variable": [
{
"key": "id"
},
{
"key": "language"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
},
{
"name": "location",
"item": [
{
"name": "create",
"item": [
{
"name": "Location create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/location/create",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"create"
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/location/create",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/location/create",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"customer_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/location/create",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{location_id}",
"item": [
{
"name": "Location delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/location/delete/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"delete",
":location_id"
],
"variable": [
{
"key": "location_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Soft delete a location\n\nRequired parameter\nlocation_id -> the identifier of the location to delete\ndelete set is_deleted to true and set destroyer_id to identifier whu\nand deletion_date for when is deleted"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/delete/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"delete",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": false\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/delete/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"delete",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/delete/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"delete",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{location_id}",
"item": [
{
"name": "Location details",
"request": {
"method": "GET",
"header": [
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/location/details/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"details",
":location_id"
],
"variable": [
{
"key": "location_id",
"value": "20",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/details/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"details",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"customer_id\": \"<integer>\",\n \"location_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"is_deleted\": \"<boolean>\"\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/details/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"details",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/details/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"details",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "List locations",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant",
"type": "text"
}
],
"url": {
"raw": "{{baseUrl}}/location/list",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/list",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"customer\": \"<integer>\",\n \"location_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"address\": \"<string>\",\n \"address_latitude\": \"<string>\",\n \"address_longitude\": \"<string>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"customer_of\": \"<integer>\",\n \"creator\": \"<integer>\",\n \"destroyer\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/list",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/location/list",
"host": [
"{{baseUrl}}"
],
"path": [
"location",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "machine",
"item": [
{
"name": "list",
"item": [
{
"name": "List machines",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Customer",
"value": "{{customer}}",
"type": "text"
}
],
"url": {
"raw": "{{baseUrl}}/machine/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"machine_id\": \"<integer>\",\n \"serial_number\": \"<string>\",\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"iot_project_id\": \"<string>\",\n \"meta_data\": {},\n \"iot_device_id\": \"<string>\",\n \"iot_region_id\": \"<string>\",\n \"is_online\": \"<boolean>\",\n \"offline_alerts\": \"<boolean>\",\n \"last_online\": \"<dateTime>\",\n \"cluster_id\": \"<integer>\",\n \"customer_of\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"configured\": \"<boolean>\",\n \"serial_number_used\": \"<boolean>\",\n \"hw_type\": \"Kerong\",\n \"owner\": \"<integer>\",\n \"creator\": \"<integer>\",\n \"destroyer\": \"<integer>\"\n },\n {\n \"machine_id\": \"<integer>\",\n \"serial_number\": \"<string>\",\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\",\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"iot_project_id\": \"<string>\",\n \"meta_data\": {},\n \"iot_device_id\": \"<string>\",\n \"iot_region_id\": \"<string>\",\n \"is_online\": \"<boolean>\",\n \"offline_alerts\": \"<boolean>\",\n \"last_online\": \"<dateTime>\",\n \"cluster_id\": \"<integer>\",\n \"customer_of\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"configured\": \"<boolean>\",\n \"serial_number_used\": \"<boolean>\",\n \"hw_type\": \"Kerong\",\n \"owner\": \"<integer>\",\n \"creator\": \"<integer>\",\n \"destroyer\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "{machine_id}",
"item": [
{
"name": "lockerModule",
"item": [
{
"name": "list",
"item": [
{
"name": "machine locker Module list list",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var template = `",
"<style type=\"text/css\">",
" .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}",
" .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}",
" .tftable tr {background-color:#ffffff;}",
" .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}",
" .tftable tr:hover {background-color:#e0ffff;}",
"</style>",
"",
"<table class=\"tftable\" border=\"1\">",
" <tr>",
" <th>UID</th>",
" <th>Type</th>",
" <th>Number Column</th>",
" <th>Number Row</th>",
" <th>Creation Date</th>",
" <th>Is Sent</th>",
" <th>Machine Locker Module ID</th>",
" <th>Machine ID</th>",
" <th>Start Cell</th>",
" <th>End Cell</th>",
" <th>IP Address</th>",
" <th>MAC Address</th>",
" <th>Is Enabled</th>",
" <th>Creator ID</th>",
" <th>Is Deleted</th>",
" <th>Deletion Date</th>",
" <th>Destroyer ID</th>",
" <th>Sent Date</th>",
" <th>Machine Locker Module ID Server</th>",
" <th>Light State</th>",
" </tr>",
" ",
" {{#each response}}",
" <tr>",
" <td>{{uid}}</td>",
" <td>{{type}}</td>",
" <td>{{number_column}}</td>",
" <td>{{number_row}}</td>",
" <td>{{creation_date}}</td>",
" <td>{{is_sent}}</td>",
" <td>{{machine_locker_module_id}}</td>",
" <td>{{machine_id}}</td>",
" <td>{{start_cell}}</td>",
" <td>{{end_cell}}</td>",
" <td>{{ip_address}}</td>",
" <td>{{mac_address}}</td>",
" <td>{{is_enabled}}</td>",
" <td>{{creator_id}}</td>",
" <td>{{is_deleted}}</td>",
" <td>{{deletion_date}}</td>",
" <td>{{destroyer_id}}</td>",
" <td>{{sent_date}}</td>",
" <td>{{machine_locker_module_id_server}}</td>",
" <td>{{light_state}}</td>",
" </tr>",
" {{/each}}",
"</table>",
"`;",
"",
"function constructVisualizerPayload() {",
" return {response: pm.response.json()}",
"}",
"",
"pm.visualizer.set(template, constructVisualizerPayload());"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "187"
}
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n },\n {\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n }\n]"
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "{machine_locker_module_id}",
"item": [
{
"name": "lockerBox",
"item": [
{
"name": "details",
"item": [
{
"name": "{machine_locker_box_id}",
"item": [
{
"name": "machine locker Module locker Box details read",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/details/:machine_locker_box_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"details",
":machine_locker_box_id"
],
"variable": [
{
"key": "machine_id",
"value": "171",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "4",
"description": "(Required) "
},
{
"key": "machine_locker_box_id",
"value": "38",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/details/:machine_locker_box_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"details",
":machine_locker_box_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
},
{
"key": "machine_locker_box_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"FREE\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/details/:machine_locker_box_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"details",
":machine_locker_box_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
},
{
"key": "machine_locker_box_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/details/:machine_locker_box_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"details",
":machine_locker_box_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
},
{
"key": "machine_locker_box_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "machine locker Module locker Box list list",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var template = `",
"<style type=\"text/css\">",
" .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}",
" .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}",
" .tftable tr {background-color:#ffffff;}",
" .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}",
" .tftable tr:hover {background-color:#e0ffff;}",
"</style>",
"",
"<table class=\"tftable\" border=\"1\">",
" <tr>",
" <th>ID</th>",
" <th>Label</th>",
" <th>UID</th>",
" <th>Type</th>",
" <th>Width</th>",
" <th>Height</th>",
" <th>Depth</th>",
" <th>Size</th>",
" <th>Status</th>",
" <th>Has Alarm</th>",
" <th>Is Enabled</th>",
" <th>Is Opened</th>",
" <th>Is Empty</th>",
" <th>Is Display</th>",
" <th>Layout Column</th>",
" <th>Layout Row</th>",
" <th>Is Reservable</th>",
" <th>Is Dedicated Disabled People</th>",
" <th>Heavy</th>",
" <th>Is Charging</th>",
" <th>Is Sent</th>",
" <th>Sent Date</th>",
" <th>ID Server</th>",
" <th>Type Item</th>",
" <th>Is Sensor Active</th>",
" <th>Machine Locker Module</th>",
" <th>Business Rules</th>",
" </tr>",
" ",
" {{#each response}}",
" <tr id=row_{{@key}}>",
" <td>{{machine_locker_box_id}}</td>",
" <td>{{label}}</td>",
" <td>{{uid}}</td>",
" <td>{{type}}</td>",
" <td>{{width}}</td>",
" <td>{{height}}</td>",
" <td>{{depth}}</td>",
" <td>{{size}}</td>",
" <td>{{status}}</td>",
" <td>{{has_alarm}}</td>",
" <td>{{is_enabled}}</td>",
" <td>{{is_opened}}</td>",
" <td>{{is_empty}}</td>",
" <td>{{is_display}}</td>",
" <td>{{layout_column}}</td>",
" <td>{{layout_row}}</td>",
" <td>{{is_reservable}}</td>",
" <td>{{is_dedicated_disabled_people}}</td>",
" <td>{{heavy}}</td>",
" <td>{{is_charging}}</td>",
" <td>{{is_sent}}</td>",
" <td>{{sent_date}}</td>",
" <td>{{machine_locker_box_id_server}}</td>",
" <td>{{type_item}}</td>",
" <td>{{is_sensor_active}}</td>",
" <td>{{machine_locker_module}}</td>",
" <td>{{businessrules}}</td>",
" </tr>",
" {{/each}}",
"</table>",
"`;",
"",
"function constructVisualizerPayload() {",
" return {response: pm.response.json()}",
"}",
"",
"pm.visualizer.set(template, constructVisualizerPayload());"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "5",
"description": "(Required) "
}
]
},
"description": ":param request:\n:param machine_id: the machine id if exist\n:param machine_locker_module_id: if this is = 0 all box off the machine, else if > 0 all the box of the module if exist\n:param format: none\n:return: list of box"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"list"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"RESERVED\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n },\n {\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"FREE\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"list"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"list"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "create",
"item": [
{
"name": "Box create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Create a box in a module of the machine\n\nRequired parameter\nmachine_id -> to select the machine to which the box belongs\nmachine_locker_module_id -> to select the module to which the box\n belongs\nlabel -> the label applied outside the box for identify\ntype -> the type of the box (normal or fridge)\nwidth -> the dimension width\nheight -> the dimension height\ndepth -> the dimension depth\nsize -> the size of the box one off this type ('S', 'M', 'L', 'XL',\n 'XXL')\nstatus -> the status off the box one of this ('HOLD', 'FREE',\n 'RESERVED')\nis_enabled -> is available for use or not\nis_opened -> is open the dor or not\nis_empty -> is empty the box or not\nis_display -> is a display not a box\nlayout_column -> the number of column in the module\nlayout_row -> the number of row in a module"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"create"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"<string>\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"create"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"create"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "Box Delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"idBoxesDelete\": [\n 0,\n 0\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/delete",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"delete"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Hard delete of the box\n\nRequired parameter\nmachine_id -> to select the machine to which the box belongs\nmachine_locker_module_id -> to select the module to which the box\n belongs\nidBoxesDelete -> the box to delete"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"idBoxesDelete\": [\n 0,\n 0\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/delete",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"delete"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"<string>\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"idBoxesDelete\": [\n 0,\n 0\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/delete",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"delete"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"idBoxesDelete\": [\n 0,\n 0\n ]\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/delete",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"delete"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "Box update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/update",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"update"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update a box parameter\n\nRequired parameter\nmachine_id -> to select the machine to which the box belongs\nmachine_locker_module_id -> to select the module to which the box\n belongs"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/update",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"update"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"label\": \"<string>\",\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"width\": \"<string>\",\n \"height\": \"<string>\",\n \"depth\": \"<string>\",\n \"size\": \"<string>\",\n \"status\": \"<string>\",\n \"has_alarm\": \"<boolean>\",\n \"is_enabled\": \"<boolean>\",\n \"is_opened\": \"<boolean>\",\n \"is_empty\": \"<boolean>\",\n \"is_display\": \"<boolean>\",\n \"layout_column\": \"<integer>\",\n \"layout_row\": \"<integer>\",\n \"is_reservable\": \"<boolean>\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_box_id_server\": \"<integer>\",\n \"type_item\": \"<string>\",\n \"is_sensor_active\": \"<boolean>\",\n \"machine_locker_module\": \"<integer>\",\n \"businessrules\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/update",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"update"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"label\": \"<string>\",\n \"type\": \"NORMAL\",\n \"width\": 0,\n \"height\": 0,\n \"depth\": 0,\n \"size\": \"S\",\n \"status\": \"FREE\",\n \"is_display\": false,\n \"layout_column\": 2,\n \"layout_row\": 12,\n \"is_dedicated_disabled_people\": false,\n \"heavy\": false,\n \"is_chiarging\": false,\n \"type_item\": \"MOUSE\",\n \"is_sensor_active\": true\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/:machine_locker_module_id/lockerBox/update",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
":machine_locker_module_id",
"lockerBox",
"update"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "create",
"item": [
{
"name": "Locher module create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"light_state\": 3\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Create a locker module\n\nRequired parameter\nmachine_id -> indicates which machine the module belongs to\ntype -> the type of module ('NORMAL', 'FRIDGE')\nnumber_column -> the number of column of the module\nnumber_row -> the number of row have the module\nis_enabled* -> il the module is active or not"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"light_state\": 3\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"light_state\": 3\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"light_state\": 3\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{machine_locker_module_id}",
"item": [
{
"name": "Locker module delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/delete/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"delete",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Soft delete of the module, it set is_deleted to true and register whu\ndestroyer_id and when deletion_date\n\nRequired parameter\nmachine_id -> the machine of the module\nmachine_locker_module_id -> the module in the machine to delete"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/delete/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"delete",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/delete/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"delete",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/delete/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"delete",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n}"
}
]
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{machine_locker_module_id}",
"item": [
{
"name": "Locker module update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/update/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"update",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_locker_module_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update the data of the module\n\nRequired parameter\nmachine_id -> indicate at which machine belong the module\nmachine_locker_module_id -> the module identity"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/update/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"update",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"uid\": \"<integer>\",\n \"type\": \"<string>\",\n \"number_column\": \"<integer>\",\n \"number_row\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"machine_locker_module_id\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"start_cell\": \"<string>\",\n \"end_cell\": \"<string>\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\",\n \"is_enabled\": \"<boolean>\",\n \"creator_id\": \"<integer>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"destroyer_id\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"machine_locker_module_id_server\": \"<integer>\",\n \"light_state\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/update/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"update",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"type\": \"NORMAL\",\n \"ip_address\": \"<string>\",\n \"mac_address\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/lockerModule/update/:machine_locker_module_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"lockerModule",
"update",
":machine_locker_module_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "machine_locker_module_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "reservation",
"item": [
{
"name": "create",
"item": [
{
"name": "Create reservation",
"request": {
"method": "POST",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"scope\": \"DELIVERY\",\n \"size\": [\n \"XM\"\n ],\n \"heavy\": false,\n \"is_charging\": false,\n \"is_dedicated_disabled_people\": false,\n \"reservation_date\": \"2025-01-25 11:02:37\",\n \"expiration_date\": \"2025-01-27 11:07:37\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
}
]
},
"description": "Create a reservation\n\nRequired parameter\nmachine_id -> identifier of the machine\nsize -> list of cell size to reserve (S, M, L, XM, XL, XXl)\nis_dedicated_disabled_people -> if dedicated disable\nheavy -> is heavy item\nis_charging -> is item need charging\nend_customer -> the identifier of the end customer reservation\nstatus -> the state of the reserved cell ('RESERVED','DEPOSITED',\n'CANCELLED','EXPIRED','COMPLETED','PENDING')\nnotes -> notes for reservation\nreservation_date -> utc date time of the reservation mast be in the\nfuture not in the past\nexpiration_date -> mast be in the future an more then reservation_date\ndeposit_code -> the deposit code, if not present assign\npick_code -> to retrive from the locker if not present assign\n\nyou can also specify the meta_data field with the following structure:\n\"meta_data\": {\n \"recipient\": {\n \"name\": \"John\",\n \"surname\": \"Doe\",\n \"address\": \"Via Roma 12\",\n \"email\": \"[email protected]\"\n }\n }"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"scope\": \"DELIVERY\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"size\": [\n \"S\",\n \"XXL\"\n ],\n \"is_charging\": \"<boolean>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"meta_data\": {\n \"recipient\": {\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\"\n }\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"scope\": \"DELIVERY\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"size\": [\n \"S\",\n \"XXL\"\n ],\n \"is_charging\": \"<boolean>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"meta_data\": {\n \"recipient\": {\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\"\n }\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"scope\": \"DELIVERY\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"size\": [\n \"S\",\n \"XXL\"\n ],\n \"is_charging\": \"<boolean>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"meta_data\": {\n \"recipient\": {\n \"name\": \"<string>\",\n \"surname\": \"<string>\",\n \"address\": \"<string>\",\n \"email\": \"<string>\"\n }\n }\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "Get reservation",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "75",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "List reservations",
"event": [
{
"listen": "test",
"script": {
"exec": [
"var template = `",
"<style type=\"text/css\">",
" .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}",
" .tftable th {font-size:18px;background-color:#87ceeb;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}",
" .tftable tr {background-color:#ffffff;}",
" .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}",
" .tftable tr:hover {background-color:#e0ffff;}",
"</style>",
"",
"<table class=\"tftable\" border=\"1\">",
" <tr>",
" <th>Reservation ID</th>",
" <th>Operator ID</th>",
" <th>Deposit Code</th>",
" <th>Pick Code</th>",
" <th>Status</th>",
" <th>Creation Date</th>",
" <th>Reservation Date</th>",
" <th>Expiration Date</th>",
" <th>Deposit Date</th>",
" <th>Pick Date</th>",
" <th>Is Sent</th>",
" <th>Sent Date</th>",
" <th>Reservation ID Server</th>",
" <th>Reservation ID Client</th>",
" <th>Meta Data</th>",
" <th>Scope</th>",
" <th>End Customer</th>",
" <th>Boxes</th>",
" </tr>",
" ",
" {{#each response.data}}",
" <tr id=row_{{@key}}>",
" <td>{{reservation_id}}</td>",
" <td>{{operator_id}}</td>",
" <td>{{deposit_code}}</td>",
" <td>{{pick_code}}</td>",
" <td>{{status}}</td>",
" <td>{{creation_date}}</td>",
" <td>{{reservation_date}}</td>",
" <td>{{expiration_date}}</td>",
" <td>{{deposit_date}}</td>",
" <td>{{pick_date}}</td>",
" <td>{{is_sent}}</td>",
" <td>{{sent_date}}</td>",
" <td>{{reservation_id_server}}</td>",
" <td>{{reservation_id_client}}</td>",
" <td>{{JSON.stringify(meta_data)}}</td>",
" <td>{{scope}}</td>",
" <td>{{end_customer}}</td>",
" <td>",
" <table border=\"1\">",
" <tr>",
" <th>Machine Locker Box ID</th>",
" <th>Label</th>",
" <th>UID</th>",
" <th>Heavy</th>",
" <th>Is Dedicated Disabled People</th>",
" </tr>",
" {{#each boxes}}",
" <tr>",
" <td>{{machine_locker_box_id}}</td>",
" <td>{{label}}</td>",
" <td>{{uid}}</td>",
" <td>{{heavy}}</td>",
" <td>{{is_dedicated_disabled_people}}</td>",
" </tr>",
" {{/each}}",
" </table>",
" </td>",
" </tr>",
" {{/each}}",
"</table>",
"`;",
"",
"function constructVisualizerPayload() {",
" return {response: pm.response.json()}",
"}",
"",
"pm.visualizer.set(template, constructVisualizerPayload());"
],
"type": "text/javascript",
"packages": {}
}
}
],
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "187"
}
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"reservation_id\": \"<integer>\",\n \"boxes\": [\n {\n \"machine_locker_box_id\": \"<integer>\"\n },\n {\n \"machine_locker_box_id\": \"<integer>\"\n }\n ],\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"WORKING\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"PICKUP\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n },\n {\n \"reservation_id\": \"<integer>\",\n \"boxes\": [\n {\n \"machine_locker_box_id\": \"<integer>\"\n },\n {\n \"machine_locker_box_id\": \"<integer>\"\n }\n ],\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"DEPOSITED\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"RETURNED\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n }\n]"
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "Reservation update",
"request": {
"method": "PUT",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"CANCELLED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "60",
"description": "(Required) "
}
]
},
"description": "Update a reservation\n\nRequired parameter\nmachine_id -> the machine identifier\nreservation_id -> the reservation identifier"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"size\": \"XL\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"scope\": \"DELIVERY\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"size\": \"XL\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"scope\": \"DELIVERY\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"size\": \"XL\",\n \"is_dedicated_disabled_people\": \"<boolean>\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"notes\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"scope\": \"DELIVERY\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
},
{
"name": "create",
"item": [
{
"name": "{location_id}",
"item": [
{
"name": "Device create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"SAMBA\",\n \"name\": \"<string>\",\n \"sw_type\": \"DA\",\n \"hw_type\": \"Zhilai\",\n \"fleet_id\": \"<integer>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/create/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"create",
":location_id"
],
"variable": [
{
"key": "location_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Create a machine\n\nRequired parameter\nserial_number -> the serial number off the machine\ntype -> the type off machine selected between permitted type\nname -> the name off the machine"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"SAMBA\",\n \"name\": \"<string>\",\n \"sw_type\": \"DA\",\n \"hw_type\": \"Zhilai\",\n \"fleet_id\": \"<integer>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/create/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"create",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"location_id\": \"<integer>\",\n \"serial_number\": \"<string>\",\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"router_type\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"iot_project_id\": \"<string>\",\n \"meta_data\": {},\n \"iot_device_id\": \"<string>\",\n \"iot_region_id\": \"<string>\",\n \"sw_type\": \"<string>\",\n \"machine_id\": \"<integer>\",\n \"owner_id\": \"<integer>\",\n \"fleet_id\": \"<integer>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"is_under_maintenance\": true,\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": false,\n \"is_sent\": 0,\n \"sent_date\": \"<dateTime>\",\n \"customer_id\": \"<integer>\",\n \"is_online\": \"<boolean>\",\n \"customer_of\": 0\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"SAMBA\",\n \"name\": \"<string>\",\n \"sw_type\": \"DA\",\n \"hw_type\": \"Zhilai\",\n \"fleet_id\": \"<integer>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/create/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"create",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"SAMBA\",\n \"name\": \"<string>\",\n \"sw_type\": \"DA\",\n \"hw_type\": \"Zhilai\",\n \"fleet_id\": \"<integer>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/create/:location_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"create",
":location_id"
],
"variable": [
{
"key": "location_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "Device update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"FESTIVAL\",\n \"name\": \"<string>\",\n \"fleet_id\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"hw_type\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/update/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"update",
":machine_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update the machine data\n\nRequired Parameter\nmachine_id -> the machine identifier"
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"FESTIVAL\",\n \"name\": \"<string>\",\n \"fleet_id\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"hw_type\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/update/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"update",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\",\n \"data\": {\n \"location_id\": \"<integer>\",\n \"serial_number\": \"<string>\",\n \"type\": \"<string>\",\n \"name\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"router_type\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"iot_project_id\": \"<string>\",\n \"meta_data\": {},\n \"iot_device_id\": \"<string>\",\n \"iot_region_id\": \"<string>\",\n \"sw_type\": \"<string>\",\n \"machine_id\": \"<integer>\",\n \"owner_id\": \"<integer>\",\n \"fleet_id\": \"<integer>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"is_under_maintenance\": true,\n \"creation_date\": \"<dateTime>\",\n \"is_deleted\": false,\n \"is_sent\": 0,\n \"sent_date\": \"<dateTime>\",\n \"customer_id\": \"<integer>\",\n \"is_online\": \"<boolean>\",\n \"customer_of\": 0\n }\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"FESTIVAL\",\n \"name\": \"<string>\",\n \"fleet_id\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"hw_type\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/update/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"update",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"serial_number\": \"<string>\",\n \"type\": \"FESTIVAL\",\n \"name\": \"<string>\",\n \"fleet_id\": \"<integer>\",\n \"sw_type\": \"<string>\",\n \"hw_type\": \"<string>\",\n \"locks_type\": \"<string>\",\n \"locks_vendor_id\": \"<string>\",\n \"locks_product_id\": \"<string>\",\n \"locks_notes\": \"<string>\",\n \"locks_control_board_type\": \"<string>\",\n \"locks_control_board_vendor_id\": \"<string>\",\n \"locks_control_board_product_id\": \"<string>\",\n \"locks_control_board_notes\": \"<string>\",\n \"monitor_control_board_type\": \"<string>\",\n \"monitor_control_board_vendor_id\": \"<string>\",\n \"monitor_control_board_product_id\": \"<string>\",\n \"monitor_control_board_notes\": \"<string>\",\n \"power_supply_type\": \"<string>\",\n \"power_supply_vendor_id\": \"<string>\",\n \"power_supply_product_id\": \"<string>\",\n \"power_supply_notes\": \"<string>\",\n \"scanner_type\": \"<string>\",\n \"scanner_vendor_id\": \"<string>\",\n \"scanner_product_id\": \"<string>\",\n \"scanner_notes\": \"<string>\",\n \"nfc_sensor_type\": \"<string>\",\n \"nfc_sensor_vendor_id\": \"<string>\",\n \"nfc_sensor_product_id\": \"<string>\",\n \"nfc_sensor_notes\": \"<string>\",\n \"touch_screen_type\": \"<string>\",\n \"touch_screen_vendor_id\": \"<string>\",\n \"touch_screen_product_id\": \"<string>\",\n \"touch_screen_notes\": \"<string>\",\n \"payment_system_type\": \"<string>\",\n \"payment_system_vendor_id\": \"<string>\",\n \"payment_system_product_id\": \"<string>\",\n \"payment_system_notes\": \"<string>\",\n \"router_type\": \"<string>\",\n \"router_vendor_id\": \"<string>\",\n \"router_product_id\": \"<string>\",\n \"router_notes\": \"<string>\",\n \"switch_type\": \"<string>\",\n \"switch_vendor_id\": \"<string>\",\n \"switch_product_id\": \"<string>\",\n \"switch_notes\": \"<string>\",\n \"local_contact_phone\": \"<string>\",\n \"keys_code\": \"<string>\",\n \"ral\": \"<string>\",\n \"notes\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<string>\",\n \"is_under_maintenance\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/machine/update/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"machine",
"update",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"message\": \"<string>\",\n \"status\": \"<integer>\"\n}"
}
]
}
]
}
]
}
]
},
{
"name": "machines",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "open_door",
"item": [
{
"name": "{door_uid}",
"item": [
{
"name": "Open door",
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
},
{
"key": "door_uid",
"value": "1",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Response success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
},
{
"name": "Open door by reservation id",
"request": {
"method": "POST",
"header": [],
"url": {
"raw": "{{baseUrl}}/bounce/machine/:machine_id/reservation/:reservation_id/open_door",
"host": [
"{{baseUrl}}"
],
"path": [
"bounce",
"machine",
":machine_id",
"reservation",
":reservation_id",
"open_door"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "76"
}
]
}
},
"response": [
{
"name": "Response success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/machines/:machine_id/open_door/:door_uid",
"host": [
"{{baseUrl}}"
],
"path": [
"machines",
":machine_id",
"open_door",
":door_uid"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "door_uid"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
},
{
"name": "maintenance",
"item": [
{
"name": "create",
"item": [
{
"name": "maintenance create create",
"request": {
"method": "POST",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/create",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/create",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<dateTime>\",\n \"end_date\": \"<dateTime>\",\n \"message\": \"<string>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"email_sent_date\": \"<dateTime>\",\n \"meta\": {},\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/create",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/create",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{maintenance_id}",
"item": [
{
"name": "maintenance delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/maintenance/delete/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"delete",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Response success description 200",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/maintenance/delete/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"delete",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<dateTime>\",\n \"end_date\": \"<dateTime>\",\n \"message\": \"<string>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"email_sent_date\": \"<dateTime>\",\n \"meta\": {},\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/maintenance/delete/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"delete",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/maintenance/delete/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"delete",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{maintenance_id}",
"item": [
{
"name": "maintenance update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<string>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"is_deleted\": false,\n \"deletion_date\": \"<string>\",\n \"email_sent_date\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/update/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"update",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<string>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"is_deleted\": false,\n \"deletion_date\": \"<string>\",\n \"email_sent_date\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/update/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"update",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<dateTime>\",\n \"end_date\": \"<dateTime>\",\n \"message\": \"<string>\",\n \"is_deleted\": \"<boolean>\",\n \"deletion_date\": \"<dateTime>\",\n \"email_sent_date\": \"<dateTime>\",\n \"meta\": {},\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<string>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"is_deleted\": false,\n \"deletion_date\": \"<string>\",\n \"email_sent_date\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/update/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"update",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"creator_id\": \"<integer>\",\n \"creation_date\": \"<string>\",\n \"customer_ids\": {},\n \"machine_ids\": {},\n \"start_date\": \"<string>\",\n \"end_date\": \"<string>\",\n \"message\": \"<string>\",\n \"is_deleted\": false,\n \"deletion_date\": \"<string>\",\n \"email_sent_date\": \"<string>\",\n \"meta\": {}\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/maintenance/update/:maintenance_id",
"host": [
"{{baseUrl}}"
],
"path": [
"maintenance",
"update",
":maintenance_id"
],
"variable": [
{
"key": "maintenance_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "reservation_items",
"item": [
{
"name": "create",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "Reservation_create a item",
"request": {
"method": "POST",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"QRPX46\",\n \"status\": \"PENDING\",\n \"reservation_id\": 16,\n \"machine_locker_box_id\": 42,\n \"name\": \"something\",\n \"description\": \"this will store something\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
}
]
},
"description": "Required parameter\nmachine_id -> the identifier of the machine\ncode -> the code of the item\nname -> the name of the item\ndescription -> the description of the item\nstatus -> the condition the item is in\nreservation_id -> the reservation to which the item belongs\nmachine_locker_box_id -> the drawer where the item is stored"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"PENDING\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"LOADED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"PENDING\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"PENDING\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "Reservation_delete a item",
"request": {
"method": "DELETE",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/delete/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"delete",
":id",
":machine_id"
],
"variable": [
{
"key": "id",
"value": "33",
"description": "(Required) "
},
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
}
]
},
"description": "show items of reservation_id\n\nRequired parameter\nid -> the item id serced\nmachine_id -> the identifier of the machine"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/delete/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"delete",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"LOADED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/delete/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"delete",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/delete/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"delete",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "reservation items details read",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/details/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"details",
":id",
":machine_id"
],
"variable": [
{
"key": "id",
"value": "8",
"description": "(Required) "
},
{
"key": "machine_id",
"value": "187",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/details/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"details",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"LOADED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/details/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"details",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/details/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"details",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "reservation items list read",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id",
"value": "171"
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"LOADED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"COLLECTED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/reservation_items/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "Reservation_create a item",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"COLLECTED\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/update/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"update",
":id",
":machine_id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "All parameter are optional\nmachine_id -> the identifier of the machine\ncode -> the code of the item\nname -> the name of the item\ndescription -> the description of the item\nstatus -> the condition the item is in\nreservation_id -> the reservation to which the item belongs\nmachine_locker_box_id -> the drawer where the item is stored"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"COLLECTED\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/update/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"update",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"LOADED\",\n \"dropoff_datetime\": \"<dateTime>\",\n \"pickup_datetime\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"COLLECTED\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/update/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"update",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "Bearer"
},
{
"key": "Language",
"value": "<string>",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"status\": \"COLLECTED\",\n \"reservation_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/reservation_items/update/:id/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"reservation_items",
"update",
":id",
":machine_id"
],
"variable": [
{
"key": "id"
},
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
},
{
"name": "ricoh",
"item": [
{
"name": "asset",
"item": [
{
"name": "machine",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "lockerBoxEvent",
"item": [
{
"name": "create",
"item": [
{
"name": "Box event create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Create an event in the box\n\nRequired parameter\nmachine_id -> to select the machine to which the box belongs\nmachine_locker_box_id -> identify the box\nevent -> one off event that occurred ('DROP_OFF','PICK_UP',\n'FORCED_OPENING','DISABLED','ENABLED','RESERVATION_CANCELLED')\nevent_date -> when the event is occurred"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"ENABLED\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{event_id}",
"item": [
{
"name": "Box event delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/delete/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"delete",
":event_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "event_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Hard delete of the event, the event is eliminated\n\nRequired parameter\nmachine_id -> to identify the box of the machine selected\nevent_id -> to identify which event to delete"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/delete/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"delete",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"ENABLED\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/delete/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"delete",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/delete/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"delete",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "detail",
"item": [
{
"name": "{event_id}",
"item": [
{
"name": "ricoh asset machine locker Box Event detail read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/detail/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"detail",
":event_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "event_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/detail/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"detail",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"ENABLED\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/detail/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"detail",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/detail/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"detail",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh asset machine locker Box Event list list",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "171",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"RESERVATION_CANCELLED\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n },\n {\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"PICK_UP\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{event_id}",
"item": [
{
"name": "Box event update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/update/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"update",
":event_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "event_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "To update an event message (exs. when change state)\n\nRequired parameter\nmachine_id -> to identify the box of the machine selected\nevent_id -> to identify the event to change values"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/update/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"update",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_event_id\": \"<integer>\",\n \"event\": \"ENABLED\",\n \"event_date\": \"<dateTime>\",\n \"item_serial_number\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"machine_id\": \"<integer>\",\n \"meta\": {},\n \"machine_locker_box\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"user\": \"<integer>\",\n \"item\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\",\n \"item_issues\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/update/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"update",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"event\": \"STOCKING\",\n \"event_date\": \"<string>\",\n \"item_id\": \"<integer>\",\n \"machine_locker_box_event_id_client\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\",\n \"reservation_id\": \"<integer>\",\n \"user_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/lockerBoxEvent/update/:event_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"lockerBoxEvent",
"update",
":event_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "event_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "reservation",
"item": [
{
"name": "create",
"item": [
{
"name": "Reservation create for asset",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"nr_items\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "asset_id the asset to stock in the locker\nnr_items the number off item off the asset to stock in the locker"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"nr_items\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"reservations_machine_locker_boxes_id\": \"<integer>\",\n \"fk_reservation\": \"<string>\",\n \"fk_machine_locker_box_id\": \"<string>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"nr_items\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"nr_items\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "ricoh asset machine reservation delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success true or false",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "ricoh asset machine reservation details read",
"request": {
"method": "GET",
"header": [
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "{{customer}}",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id",
"value": "171",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "17",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"reservations_machine_locker_boxes_id\": \"<integer>\",\n \"fk_reservation\": \"<string>\",\n \"fk_machine_locker_box_id\": \"<string>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/details/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"details",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh asset machine reservation list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"reservations_machine_locker_boxes_id\": \"<integer>\",\n \"fk_reservation\": \"<string>\",\n \"fk_machine_locker_box_id\": \"<string>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"item\": \"<integer>\"\n },\n {\n \"reservations_machine_locker_boxes_id\": \"<integer>\",\n \"fk_reservation\": \"<string>\",\n \"fk_machine_locker_box_id\": \"<string>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"item\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "Reservation update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"deposit_code\": \"<string>\",\n \"deposit_date\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"expiration_date\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"item_id\": \"<integer>\",\n \"item_status\": \"IN_WORK\",\n \"machine_locker_box_id\": \"<integer>\",\n \"meta_data\": {},\n \"notes\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"pick_date\": \"<string>\",\n \"reservation_date\": \"<string>\",\n \"scope\": \"ASSET\",\n \"sent_date\": \"<string>\",\n \"status\": \"EXPIRED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "reservation_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update a reservation\n\nRequired parameter\nmachine_id -> the machine identifier\nreservation_id -> the reservation identifier"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"deposit_code\": \"<string>\",\n \"deposit_date\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"expiration_date\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"item_id\": \"<integer>\",\n \"item_status\": \"IN_WORK\",\n \"machine_locker_box_id\": \"<integer>\",\n \"meta_data\": {},\n \"notes\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"pick_date\": \"<string>\",\n \"reservation_date\": \"<string>\",\n \"scope\": \"ASSET\",\n \"sent_date\": \"<string>\",\n \"status\": \"EXPIRED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"reservations_machine_locker_boxes_id\": \"<integer>\",\n \"fk_reservation\": \"<string>\",\n \"fk_machine_locker_box_id\": \"<string>\",\n \"id_client\": \"<integer>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"deposit_code\": \"<string>\",\n \"deposit_date\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"expiration_date\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"item_id\": \"<integer>\",\n \"item_status\": \"IN_WORK\",\n \"machine_locker_box_id\": \"<integer>\",\n \"meta_data\": {},\n \"notes\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"pick_date\": \"<string>\",\n \"reservation_date\": \"<string>\",\n \"scope\": \"ASSET\",\n \"sent_date\": \"<string>\",\n \"status\": \"EXPIRED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"asset_id\": \"<integer>\",\n \"deposit_code\": \"<string>\",\n \"deposit_date\": \"<string>\",\n \"end_customer\": \"<integer>\",\n \"expiration_date\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"item_id\": \"<integer>\",\n \"item_status\": \"IN_WORK\",\n \"machine_locker_box_id\": \"<integer>\",\n \"meta_data\": {},\n \"notes\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"pick_date\": \"<string>\",\n \"reservation_date\": \"<string>\",\n \"scope\": \"ASSET\",\n \"sent_date\": \"<string>\",\n \"status\": \"EXPIRED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update",
":reservation_id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "update_status",
"item": [
{
"name": "Reservation Update status",
"request": {
"method": "PUT",
"header": [],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update_status",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update_status"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
},
"description": "Update the status of reservation\n\nRequired paramenter\nmachine_id -> the identifier of a machine"
},
"response": [
{
"name": "Untitled Response",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset/machine/:machine_id/reservation/update_status",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset",
"machine",
":machine_id",
"reservation",
"update_status"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
}
]
},
{
"name": "asset_acl",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh asset acl create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh asset acl list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"grants\": {},\n \"level\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "asset_acl_end_customer",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh asset acl end customer create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl end customer delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl end customer details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh asset acl end customer list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl end customer update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"end_customers\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"end_customer_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_end_customer/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_end_customer",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "asset_acl_group",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh asset acl group create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl group delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl group details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh asset acl group list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh asset acl group update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"grant\": \"<integer>\",\n \"asset\": \"<integer>\",\n \"group\": \"<integer>\",\n \"item\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"grant_id\": \"<integer>\",\n \"asset_id\": \"<integer>\",\n \"group_id\": \"<integer>\",\n \"item_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/asset_acl_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"asset_acl_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "assets",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh assets create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"cell_size\": \"S\",\n \"part_number\": \"<string>\",\n \"heavy\": false,\n \"scope\": \"LOAN\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"cell_size\": \"S\",\n \"part_number\": \"<string>\",\n \"heavy\": false,\n \"scope\": \"LOAN\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"M\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"SALE\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"cell_size\": \"S\",\n \"part_number\": \"<string>\",\n \"heavy\": false,\n \"scope\": \"LOAN\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"cell_size\": \"S\",\n \"part_number\": \"<string>\",\n \"heavy\": false,\n \"scope\": \"LOAN\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh assets delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"M\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"SALE\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh assets details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"M\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"SALE\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh assets list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"M\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"SALE\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"XL\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"LOAN\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/assets/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh assets update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"part_number\": \"<string>\",\n \"cell_size\": \"S\",\n \"heavy\": false,\n \"scope\": \"<string>\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"part_number\": \"<string>\",\n \"cell_size\": \"S\",\n \"heavy\": false,\n \"scope\": \"<string>\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"cell_size\": \"M\",\n \"heavy\": \"<boolean>\",\n \"is_charging\": \"<boolean>\",\n \"scope\": \"SALE\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": \"<boolean>\",\n \"part_number\": \"<string>\",\n \"personal_responsibility\": \"<boolean>\",\n \"max_quantity_user\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"part_number\": \"<string>\",\n \"cell_size\": \"S\",\n \"heavy\": false,\n \"scope\": \"<string>\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"part_number\": \"<string>\",\n \"cell_size\": \"S\",\n \"heavy\": false,\n \"scope\": \"<string>\",\n \"min_stock_level\": \"<integer>\",\n \"is_enabled\": true,\n \"personal_responsibility\": false,\n \"max_quantity_user\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/assets/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"assets",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "end_customer_cell",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh end customer cell create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer cell delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer cell details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh end customer cell list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer cell update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"machine_locker_box_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "end_customer_group",
"item": [
{
"name": "Create",
"item": [
{
"name": "ricoh end customer group Create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"Create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"Create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"Create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"Create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer group delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer group details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh end customer group list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh end customer group update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/end_customer_group/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"end_customer_group",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "exchange",
"item": [
{
"name": "machine",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "reservation",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh exchange machine reservation create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"agent_id\": \"<integer>\",\n \"size\": \"XL\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"is_dedicated_disabled_people\": false,\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"item_serial_number\": \"<string>\",\n \"item_name\": \"<string>\",\n \"item_description\": \"<string>\",\n \"first_cell_id\": \"<integer>\",\n \"second_cell_id\": \"<integer>\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"heavy\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"agent_id\": \"<integer>\",\n \"size\": \"XL\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"is_dedicated_disabled_people\": false,\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"item_serial_number\": \"<string>\",\n \"item_name\": \"<string>\",\n \"item_description\": \"<string>\",\n \"first_cell_id\": \"<integer>\",\n \"second_cell_id\": \"<integer>\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"heavy\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"reason\": \"DEFECTIVE\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<dateTime>\",\n \"first_pickup_date\": \"<dateTime>\",\n \"second_deposit_date\": \"<dateTime>\",\n \"second_pickup_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"first_cell\": \"<integer>\",\n \"second_cell\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"agent_id\": \"<integer>\",\n \"size\": \"XL\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"is_dedicated_disabled_people\": false,\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"item_serial_number\": \"<string>\",\n \"item_name\": \"<string>\",\n \"item_description\": \"<string>\",\n \"first_cell_id\": \"<integer>\",\n \"second_cell_id\": \"<integer>\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"heavy\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"agent_id\": \"<integer>\",\n \"size\": \"XL\",\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"is_dedicated_disabled_people\": false,\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"item_serial_number\": \"<string>\",\n \"item_name\": \"<string>\",\n \"item_description\": \"<string>\",\n \"first_cell_id\": \"<integer>\",\n \"second_cell_id\": \"<integer>\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\",\n \"heavy\": \"<boolean>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"create"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh exchange machine reservation details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"details",
":id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"details",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"reason\": \"DEFECTIVE\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<dateTime>\",\n \"first_pickup_date\": \"<dateTime>\",\n \"second_deposit_date\": \"<dateTime>\",\n \"second_pickup_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"first_cell\": \"<integer>\",\n \"second_cell\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"details",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"details",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh exchange machine reservation list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id",
"value": "0",
"description": "(Required) machine_id"
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"reason\": \"DEFECTIVE\",\n \"first_state\": \"CANCELLED\",\n \"second_state\": \"RESERVED\",\n \"first_deposit_date\": \"<dateTime>\",\n \"first_pickup_date\": \"<dateTime>\",\n \"second_deposit_date\": \"<dateTime>\",\n \"second_pickup_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"first_cell\": \"<integer>\",\n \"second_cell\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"reason\": \"WRONG\",\n \"first_state\": \"COLLECTED\",\n \"second_state\": \"RESERVED\",\n \"first_deposit_date\": \"<dateTime>\",\n \"first_pickup_date\": \"<dateTime>\",\n \"second_deposit_date\": \"<dateTime>\",\n \"second_pickup_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"first_cell\": \"<integer>\",\n \"second_cell\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"list"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh exchange machine reservation update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"notes\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"update",
":id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
},
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"notes\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"update",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"reason\": \"DEFECTIVE\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<dateTime>\",\n \"first_pickup_date\": \"<dateTime>\",\n \"second_deposit_date\": \"<dateTime>\",\n \"second_pickup_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"id_client\": \"<integer>\",\n \"reservation\": \"<integer>\",\n \"first_cell\": \"<integer>\",\n \"second_cell\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"notes\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"update",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"reservation_date\": \"<string>\",\n \"expiration_date\": \"<string>\",\n \"notes\": \"<string>\",\n \"reason\": \"UNWANTED\",\n \"first_state\": \"RESERVED\",\n \"second_state\": \"COLLECTED\",\n \"first_deposit_date\": \"<string>\",\n \"first_pickup_date\": \"<string>\",\n \"second_deposit_date\": \"<string>\",\n \"second_pickup_date\": \"<string>\",\n \"is_sent\": 0,\n \"sent_date\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/exchange/machine/:machine_id/reservation/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"exchange",
"machine",
":machine_id",
"reservation",
"update",
":id"
],
"variable": [
{
"key": "machine_id"
},
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
}
]
}
]
},
{
"name": "group_cell",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh group cell create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh group cell delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh group cell details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh group cell list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh group cell update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"machine_locker_box_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/group_cell/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"group_cell",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "groups",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh groups create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh groups delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh groups details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh groups list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n },\n {\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/groups/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh groups update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\",\n \"personal_storage\": \"<boolean>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"location_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/groups/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"groups",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "items",
"item": [
{
"name": "create",
"item": [
{
"name": "ricoh items create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": null,\n \"asset_id\": \"<integer>\",\n \"serial_number\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"create"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": null,\n \"asset_id\": \"<integer>\",\n \"serial_number\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"IN_LONG_REPAIR_OUT\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": null,\n \"asset_id\": \"<integer>\",\n \"serial_number\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": null,\n \"asset_id\": \"<integer>\",\n \"serial_number\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh items delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"IN_LONG_REPAIR_OUT\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "details",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh items details read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"details",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"IN_LONG_REPAIR_OUT\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/details/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"details",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "ricoh items list list",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"list"
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"list"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"RESERVED\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n },\n {\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"DELETED\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"list"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/items/list",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"list"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "update",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh items update update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"AVAILABLE\",\n \"asset_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"update",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"AVAILABLE\",\n \"asset_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"code\": \"<string>\",\n \"serial_number\": \"<string>\",\n \"status\": \"IN_LONG_REPAIR_OUT\",\n \"deposit_time\": \"<dateTime>\",\n \"pickup_time\": \"<dateTime>\",\n \"warranty_end\": \"<dateTime>\",\n \"last_service\": \"<dateTime>\",\n \"waiting_pause\": \"<integer>\",\n \"reason\": \"<string>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"time_used\": \"<integer>\",\n \"must_return_before\": \"<dateTime>\",\n \"overdue_email_sent_at\": \"<dateTime>\",\n \"must_remind_before\": \"<dateTime>\",\n \"reminder_email_sent_at\": \"<dateTime>\",\n \"description\": \"<string>\",\n \"asset\": \"<integer>\",\n \"machine_locker_box\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"agent\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"AVAILABLE\",\n \"asset_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "machine-id",
"value": "<integer>"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"code\": \"<string>\",\n \"status\": \"AVAILABLE\",\n \"asset_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/items/update/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"items",
"update",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
},
{
"name": "personal",
"item": [
{
"name": "reservation",
"item": [
{
"name": "create",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "ricoh personal reservation create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"business_id\": \"<integer>\",\n \"reservation_date\": \"<string>\",\n \"notes\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"business_id\": \"<integer>\",\n \"reservation_date\": \"<string>\",\n \"notes\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"reservation_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"PERSONAL\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"business_id\": \"<integer>\",\n \"reservation_date\": \"<string>\",\n \"notes\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"business_id\": \"<integer>\",\n \"reservation_date\": \"<string>\",\n \"notes\": \"<string>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/create/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"create",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{reservation_id}",
"item": [
{
"name": "ricoh personal reservation delete update",
"request": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"RESERVED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "reservation_id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"RESERVED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "reservation_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"reservation_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"RESERVED\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"PERSONAL\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"RESERVED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "reservation_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "PUT",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"status\": \"RESERVED\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/delete/:reservation_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"delete",
":reservation_id"
],
"variable": [
{
"key": "reservation_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
},
{
"name": "list",
"item": [
{
"name": "{machine_id}",
"item": [
{
"name": "ricoh personal reservation list read",
"request": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id",
"value": "0",
"description": "(Required) machine_id"
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "[\n {\n \"reservation_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"CANCELLED\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"DELIVERY\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n },\n {\n \"reservation_id\": \"<integer>\",\n \"creation_date\": \"<dateTime>\",\n \"deposit_code\": \"<string>\",\n \"pick_code\": \"<string>\",\n \"status\": \"MAINTENANCE\",\n \"notes\": \"<string>\",\n \"reservation_date\": \"<dateTime>\",\n \"expiration_date\": \"<dateTime>\",\n \"deposit_date\": \"<dateTime>\",\n \"pick_date\": \"<dateTime>\",\n \"is_sent\": \"<integer>\",\n \"sent_date\": \"<dateTime>\",\n \"reservation_id_server\": \"<integer>\",\n \"reservation_id_client\": \"<integer>\",\n \"meta_data\": {},\n \"scope\": \"PERSONAL\",\n \"end_customer\": \"<integer>\",\n \"operator\": \"<integer>\"\n }\n]"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "",
"description": "Tenant"
},
{
"key": "CustomerId",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Machine-id",
"value": "<integer>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal/reservation/list/:machine_id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal",
"reservation",
"list",
":machine_id"
],
"variable": [
{
"key": "machine_id"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
}
]
}
]
}
]
},
{
"name": "personal_end_customer_group",
"item": [
{
"name": "Create",
"item": [
{
"name": "ricoh personal end customer group Create create",
"request": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"Create"
]
},
"description": "Assign an end customer to a personal group"
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"Create"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"personal_group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"Create"
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"end_customer_id\": \"<integer>\",\n \"group_id\": \"<integer>\"\n}",
"options": {
"raw": {
"headerFamily": "json",
"language": "json"
}
}
},
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/Create",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"Create"
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
}
]
}
]
},
{
"name": "delete",
"item": [
{
"name": "{id}",
"item": [
{
"name": "ricoh personal end customer group delete delete",
"request": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id",
"value": "<string>",
"description": "(Required) "
}
]
}
},
"response": [
{
"name": "Success",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Accept",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [],
"body": "{\n \"id\": \"<integer>\",\n \"end_customer\": \"<integer>\",\n \"personal_group\": \"<integer>\"\n}"
},
{
"name": "Bad Request",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "text",
"header": [],
"cookie": [],
"body": ""
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "DELETE",
"header": [
{
"key": "Bearer",
"value": "<string>",
"description": "(Required) Bearer"
},
{
"key": "Language",
"value": "en-EN",
"description": "Language"
},
{
"key": "Customer",
"value": "<string>",
"description": "Tenant"
},
{
"key": "Authorization",
"value": "Basic <credentials>",
"description": "Added as a part of security scheme: basic"
}
],
"url": {
"raw": "{{baseUrl}}/ricoh/personal_end_customer_group/delete/:id",
"host": [
"{{baseUrl}}"
],
"path": [
"ricoh",
"personal_end_customer_group",
"delete",
":id"
],
"variable": [
{
"key": "id"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment