diff --git a/.github/workflows/azure-static-web-apps-brave-coast-0b10f1503.yml b/.github/workflows/azure-static-web-apps-brave-coast-0b10f1503.yml deleted file mode 100644 index 1a86193..0000000 --- a/.github/workflows/azure-static-web-apps-brave-coast-0b10f1503.yml +++ /dev/null @@ -1,65 +0,0 @@ -name: Azure Static Web Apps CI/CD - -on: - push: - branches: - - main - pull_request: - types: [opened, synchronize, reopened, closed] - branches: - - main - -jobs: - build_and_deploy_job: - if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.event.action != 'closed') - runs-on: ubuntu-latest - name: Build and Deploy Job - steps: - - uses: actions/checkout@v3 - with: - submodules: true - lfs: false - - - name: Setup Node.js - uses: actions/setup-node@v4 - with: - node-version: '18' - cache: 'npm' - - - name: Install dependencies - run: npm install - - - name: Install with ci - run: npm ci - - - name: Build application - run: npm run build - - - name: Build And Deploy - id: builddeploy - uses: Azure/static-web-apps-deploy@v1 - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_COAST_0B10F1503 }} - repo_token: ${{ secrets.GITHUB_TOKEN }} # Used for Github integrations (i.e. PR comments) - action: "upload" - ###### Repository/Build Configurations - These values can be configured to match your app requirements. ###### - # For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig - app_location: "dist" # App source code path (build output) - api_location: "" # Api source code path - optional - output_location: "" # No additional output location since app_location is already the build output - skip_app_build: true # Skip build since we already built with npm run build - ###### End of Repository/Build Configurations ###### - - close_pull_request_job: - if: github.event_name == 'pull_request' && github.event.action == 'closed' - runs-on: ubuntu-latest - name: Close Pull Request Job - steps: - - name: Close Pull Request - id: closepullrequest - uses: Azure/static-web-apps-deploy@v1 - with: - azure_static_web_apps_api_token: ${{ secrets.AZURE_STATIC_WEB_APPS_API_TOKEN_BRAVE_COAST_0B10F1503 }} - action: "close" - - diff --git a/.github/workflows/azure-static-web-apps-gray-stone-017611203.yml b/.github/workflows/azure-static-web-apps-gray-stone-017611203.yml index 1c1973b..1d29a5b 100644 --- a/.github/workflows/azure-static-web-apps-gray-stone-017611203.yml +++ b/.github/workflows/azure-static-web-apps-gray-stone-017611203.yml @@ -26,6 +26,8 @@ jobs: python-version: '3.13' - name: Remove system namespaces run: python ./openapi/remove_namespaces_from_doc.py + - name: Show removed namespaces + run: git diff --name-only || true - name: Setup Node.js uses: actions/setup-node@v4 diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml deleted file mode 100644 index d056e8f..0000000 --- a/.github/workflows/python-app.yml +++ /dev/null @@ -1,26 +0,0 @@ -# This workflow will run a python script that parses and removes some system namespaces from files - -name: Python application - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -permissions: - contents: read - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.13' - - name: Remove system namespaces - run: python ./openapi/remove_namespaces_from_doc.py diff --git a/json_to_yaml.py b/json_to_yaml.py deleted file mode 100644 index e69de29..0000000 diff --git a/openapi/RemoveExcludedSchemas.js b/openapi/RemoveExcludedSchemas.js deleted file mode 100644 index c144849..0000000 --- a/openapi/RemoveExcludedSchemas.js +++ /dev/null @@ -1,43 +0,0 @@ -// RemoveExcludedSchemas.js -// Usage: node RemoveExcludedSchemas.js ./openapi/swagger.json - -const fs = require('fs'); - -const filePath = process.argv[2]; -if (!filePath) { - console.error('Usage: node RemoveExcludedSchemas.js '); - process.exit(1); -} - -const json = JSON.parse(fs.readFileSync(filePath, 'utf8')); - -const schemas = json.components && json.components.schemas; -if (schemas) { - for (const key of Object.keys(schemas)) { - const schema = schemas[key]; - // Remove if schema itself is excluded - if ( - schema.description && - schema.description.trim() === 'Excluded from public API documentation.' - ) { - delete schemas[key]; - continue; - } - // Remove if any property is excluded - if (schema.properties) { - for (const prop of Object.values(schema.properties)) { - if ( - prop && - prop.description && - prop.description.trim() === 'Excluded from public API documentation.' - ) { - delete schemas[key]; - break; - } - } - } - } -} - -fs.writeFileSync(filePath, JSON.stringify(json, null, 2), 'utf8'); -console.log('Excluded schemas removed.'); \ No newline at end of file diff --git a/openapi/swag.json b/openapi/swag.json deleted file mode 100644 index ff6acc1..0000000 --- a/openapi/swag.json +++ /dev/null @@ -1,72606 +0,0 @@ -{ - "openapi": "3.0.4", - "info": { - "title": "PowerOffice Go API", - "version": "1.0" - }, - "paths": { - "$ref": { - "description": "This is a reference to the OpenAPI specification for PowerOffice Go API.", - "url": "https://api.poweroffice.net" - }, - "/Reporting/AccountTransactions": { - "get": { - "tags": [ - "AccountTransactions" - ], - "summary": "Gets all the GoApi.Reporting.AccountTransactions.AccountTransaction in the specified date range (FromDate - ToDate) filtered by odata query.", - "description": "\n\n**Required Privilege:** Reporting_AccountTransaction", - "operationId": "GetAccountTransactions", - "parameters": [ - { - "name": "accountCode", - "in": "query", - "description": "The account code.", - "schema": { - "type": "integer", - "format": "int32" - }, - "example": 3020 - }, - { - "name": "fromDate", - "in": "query", - "description": "From date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "To date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.AccountTransactions.AccountTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/TimeTracking/Activity": { - "get": { - "tags": [ - "Activity" - ], - "summary": "Gets a list of GoApi.TimeTracking.Activity filtered by odata query.", - "description": "\n\n**Required Privilege:** TimeTracking", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.Activity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Activity" - ], - "summary": "Creates or updates the specified GoApi.TimeTracking.Activity.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "requestBody": { - "description": "The Activity.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - } - } - } - } - } - }, - "/TimeTracking/Activity/{id}": { - "get": { - "tags": [ - "Activity" - ], - "summary": "Gets the specified GoApi.TimeTracking.Activity by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 33445 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.Activity" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Activity" - ], - "summary": "Deletes the specified GoApi.TimeTracking.Activity by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 33445 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/OAuth/Token": { - "post": { - "tags": [ - "Auth" - ], - "summary": "Gets an access token for the client application.", - "description": "Token expiry time is 20 minutes", - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "type": "object", - "properties": { - "grant_type": { - "type": "string", - "description": "Grant type must be client_credentials", - "example": "client_credentials" - } - } - }, - "encoding": { - "grant_type": { - "style": "form" - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/Web.ExternalApiCore.Controllers.TokenResponseDto" - } - } - } - } - } - } - }, - "/Voucher/BankJournalVoucher": { - "get": { - "tags": [ - "BankJournalVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.BankJournalVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.BankJournal.", - "description": "\n\n**Required Privilege:** BankJournalVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.BankJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "BankJournalVoucher" - ], - "summary": "Saves a GoApi.Voucher.BankJournalVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** BankJournalVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/BankJournalVoucher/{id}": { - "get": { - "tags": [ - "BankJournalVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.BankJournalVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.BankJournalVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** BankJournalVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/BankJournalVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "BankJournalVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** BankJournalVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Bank/BankTransfer": { - "get": { - "tags": [ - "BankTransfer" - ], - "summary": "Gets a list of bank transfers filtered by odata query.\r\nQuerying will only return BankTransfers that is created by the integration itself, not all payments on the client.", - "description": "\n\n**Required Privilege:** BankTransfer", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.BankTransfer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "BankTransfer" - ], - "summary": "Creates the specified bank transfer.\r\nA bank transfer can not be edited after creation. If there was something wrong with the bank transfer, it has to be deleted and recreated.", - "description": "\n\n**Required Privilege:** BankTransfer_Full", - "requestBody": { - "description": "The BankTransfer.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - } - } - } - } - } - }, - "/Bank/BankTransfer/{id}": { - "get": { - "tags": [ - "BankTransfer" - ], - "summary": "Gets the specified bank transfer by its id.", - "description": "\n\n**Required Privilege:** BankTransfer", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "b868791b-bb1d-47fd-a98d-45b23220dba8" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransfer" - } - } - } - } - } - }, - "delete": { - "tags": [ - "BankTransfer" - ], - "summary": "Deletes the specified bank transfer by its id.", - "description": "\n\n**Required Privilege:** BankTransfer_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "b868791b-bb1d-47fd-a98d-45b23220dba8" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Blob/voucherImage": { - "get": { - "tags": [ - "Blob" - ], - "summary": "Get the image of a single page on a voucher as jpeg stream.", - "description": "\n\n**Required Privilege:** Blob", - "parameters": [ - { - "name": "voucherNo", - "in": "query", - "description": "The voucher no.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 1234 - }, - { - "name": "pageNo", - "in": "query", - "description": "The page no.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - }, - "example": 1 - } - ], - "responses": { - "200": { - "description": "OK" - } - } - } - }, - "/Blob/VoucherEhf": { - "get": { - "tags": [ - "Blob" - ], - "summary": "Get the ehf xml document for a supplier invoice as a Stream.", - "description": "\n\n**Required Privilege:** Blob", - "parameters": [ - { - "name": "voucherNo", - "in": "query", - "description": "The voucher no.", - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 1234 - } - ], - "responses": { - "200": { - "description": "OK" - } - } - } - }, - "/Blob/GetVoucherDocumentation": { - "get": { - "tags": [ - "Blob" - ], - "summary": "Gets the voucher document.", - "description": "\n\n**Required Privilege:** Blob", - "parameters": [ - { - "name": "voucherNo", - "in": "query", - "description": "The VoucherNo.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 1234 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - } - } - } - } - }, - "/Blob/GetVoucherDocumentationList": { - "get": { - "tags": [ - "Blob" - ], - "summary": "Get list with all documents on voucher.\r\n(returns empty list if no documents are found on voucher)", - "description": "\n\n**Required Privilege:** Blob", - "parameters": [ - { - "name": "voucherNo", - "in": "query", - "description": "The VoucherNo.", - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 1234 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.VoucherDocument" - } - } - } - } - } - } - } - }, - "/BrandingTheme": { - "get": { - "tags": [ - "BrandingTheme" - ], - "summary": "Gets a list of GoApi.Invoices.BrandingTheme available on the client filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.BrandingTheme, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/BrandingTheme/{id}": { - "get": { - "tags": [ - "BrandingTheme" - ], - "summary": "Gets the specified GoApi.Invoices.BrandingTheme by its id.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.BrandingTheme" - } - } - } - } - } - } - }, - "/Budget": { - "get": { - "tags": [ - "Budget" - ], - "summary": "Gets a list of budgets filtered by odata query.", - "description": "\n\n**Required Privilege:** Budget", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Budget.Budget, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Budget" - ], - "summary": "Creates the specified budget.", - "description": "\n\n**Required Privilege:** Budget_Full", - "requestBody": { - "description": "The Budget.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - } - } - } - } - } - }, - "/Budget/{id}": { - "get": { - "tags": [ - "Budget" - ], - "summary": "Gets the specified budget by its id.", - "description": "\n\n**Required Privilege:** Budget", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Budget.Budget" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Budget" - ], - "summary": "Deletes the specified budget by its id.", - "description": "\n\n**Required Privilege:** Budget_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/CashJournalVoucher": { - "get": { - "tags": [ - "CashJournalVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.CashJournalVoucher filtered by odata query. This query will only return the cash journal vouchers created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.CashJournal.", - "description": "\n\n**Required Privilege:** CashJournalVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.CashJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "CashJournalVoucher" - ], - "summary": "Saves a GoApi.Voucher.CashJournalVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** CashJournalVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/CashJournalVoucher/{id}": { - "get": { - "tags": [ - "CashJournalVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.CashJournalVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.CashJournalVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** CashJournalVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/CashJournalVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "CashJournalVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** CashJournalVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Client/GetContacts": { - "get": { - "tags": [ - "Client" - ], - "summary": "Gets a list of client contacts filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.ClientContact" - } - } - } - } - } - } - } - }, - "/Client": { - "get": { - "tags": [ - "Client" - ], - "summary": "Gets the current client.", - "description": "\n\n**Required Privilege:** CommonServices", - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - } - } - } - } - }, - "post": { - "tags": [ - "Client" - ], - "summary": "Updates the specified client.", - "description": "\n\n**Required Privilege:** CommonServices_Full", - "requestBody": { - "description": "The client.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.Client" - } - } - } - } - } - } - }, - "/ClientAuth/CreateTemporaryUrl": { - "post": { - "tags": [ - "ClientAuth" - ], - "summary": "Creates, and returns, a GoApi.Client.ClientAuthTemporaryUrlDto that can be navigated to for adding a client integration to PowerOffice Go.\r\nFor more details see [onboarding documentation](Common/Onboarding.md).", - "requestBody": { - "description": "The content of the request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlRequestDto" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Client.ClientAuthTemporaryUrlDto" - } - } - } - } - } - } - }, - "/Bank/ClientBankAccount": { - "get": { - "tags": [ - "ClientBankAccount" - ], - "summary": "Gets a list of client bank accounts filtered by odata query.", - "description": "\n\n**Required Privilege:** ClientBankAccount", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Bank.ClientBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ClientBankAccount" - ], - "summary": "Creates or updates the specified client bank account.", - "description": "\n\n**Required Privilege:** ClientBankAccount_Full", - "requestBody": { - "description": "The ClientBankAccount.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - } - } - } - } - } - }, - "/Bank/ClientBankAccount/{id}": { - "get": { - "tags": [ - "ClientBankAccount" - ], - "summary": "Gets the specified client bank account by its id.", - "description": "\n\n**Required Privilege:** ClientBankAccount", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Bank.ClientBankAccount" - } - } - } - } - } - }, - "delete": { - "tags": [ - "ClientBankAccount" - ], - "summary": "Deletes the specified client bank account by its id.", - "description": "\n\n**Required Privilege:** ClientBankAccount_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/GetFolders": { - "get": { - "tags": [ - "ClientDocuments" - ], - "summary": "Gets a flat list of available GoApi.Documents.DocumentFolder.\r\nThe folder without a GoApi.Documents.DocumentFolder.ParentFolderId is the root folder.\r\nThe API will have access to the folder named \"Shared documents\" and \"My documents\".\r\nThe API will also have access to folders below as long as the access privileges are not restricted from Go.\r\nTo build a tree structure, the GoApi.Documents.DocumentFolder.ParentFolderId must be used.", - "description": "\n\n**Required Privilege:** Documents", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/GetTemplateFolders": { - "get": { - "tags": [ - "ClientDocuments" - ], - "summary": "Retrieves available document template folders from the current integration client.", - "description": "\n\n**Required Privilege:** Documents", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/AddFolder": { - "post": { - "tags": [ - "ClientDocuments" - ], - "summary": "Adds a new folder.\r\nFolder will be added to folder specified by parentFolderId. If no parent folder is specified, folder will be added to \"Shared documents\"\r\nThe ExternalReference must be provided and unique.", - "description": "\n\n**Required Privilege:** Documents_Full", - "requestBody": { - "description": "The request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/RenameFolder": { - "post": { - "tags": [ - "ClientDocuments" - ], - "summary": "Renames a folder. The API user must have full access to the folder.\r\nThe API user must be the creator of the folder.\r\nMandatory parameters are GoApi.Documents.DocumentFolder.Id and GoApi.Documents.DocumentFolder.Name.", - "description": "\n\n**Required Privilege:** Documents_Full", - "requestBody": { - "description": "The rename request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentFolder" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/DeleteFolder/{folderId}": { - "delete": { - "tags": [ - "ClientDocuments" - ], - "summary": "Deletes the GoApi.Documents.DocumentFolder. The API user must have full access to the GoApi.Documents.DocumentFolder.\r\nThe API user must also be the creator of the folder.\r\nThe folder must be empty to be able to delete it.", - "description": "\n\n**Required Privilege:** Documents_Full", - "parameters": [ - { - "name": "folderId", - "in": "path", - "description": "The folder id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/AddDocument": { - "post": { - "tags": [ - "ClientDocuments" - ], - "summary": "Adds a new GoApi.Documents.ClientDocument to a folder.\r\nThe API user must have full access to the containing folder.\r\nMandatory parameters are GoApi.Documents.ClientDocument.Base64EncodedData, GoApi.Documents.ClientDocumentListItem.ExternalReference, GoApi.Documents.ClientDocumentListItem.Filename and GoApi.Documents.ClientDocumentListItem.FolderId.\r\nThe !:ClientDocument.ExternalReference must be a unique string for all files for the given client. Max length is 50 characters.", - "description": "\n\n**Required Privilege:** Documents_Full", - "requestBody": { - "description": "The new file entity.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/GetDocumentListItems/{folderId}": { - "get": { - "tags": [ - "ClientDocuments" - ], - "summary": "Gets a list of GoApi.Documents.ClientDocumentListItem for a given folder.\r\nThis entity contains metadata for the document. To get the actual document, use M:Web.ExternalApiCore.Controllers.Documents.ClientDocumentsController.GetDocument(System.Int64).\r\nThe API user must have minimum Read access to the folder.", - "description": "\n\n**Required Privilege:** Documents", - "parameters": [ - { - "name": "folderId", - "in": "path", - "description": "The folder id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocumentListItem" - } - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/GetDocument/{documentId}": { - "get": { - "tags": [ - "ClientDocuments" - ], - "summary": "Gets a GoApi.Documents.ClientDocument with the actual document as Base64 encoded string.\r\nThe API user must have minimum Read access to the containing folder.", - "description": "\n\n**Required Privilege:** Documents", - "parameters": [ - { - "name": "documentId", - "in": "path", - "description": "The document id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.ClientDocument" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/GetDocumentVersion/{documentId}/{version}": { - "get": { - "tags": [ - "ClientDocuments" - ], - "summary": "Gets a specific GoApi.Documents.ClientDocument version with the actual document as Base64 encoded string.\r\nThe API user must have minimum Read access to the containing folder.", - "description": "\n\n**Required Privilege:** Documents", - "parameters": [ - { - "name": "documentId", - "in": "path", - "description": "The id of the current (latest version) of the document.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - }, - { - "name": "version", - "in": "path", - "description": "The document version requested.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - }, - "example": 2 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/AddDocumentVersion": { - "post": { - "tags": [ - "ClientDocuments" - ], - "summary": "Adds a new version of GoApi.Documents.ClientDocument.\r\nThe API user must have full access to the containing folder.\r\nMandatory parameters are !:ClientDocument.Id, GoApi.Documents.ClientDocument.Base64EncodedData, GoApi.Documents.ClientDocumentListItem.ExternalReference, GoApi.Documents.ClientDocumentListItem.Filename and GoApi.Documents.ClientDocumentListItem.FolderId.\r\nThe !:ClientDocument.Id must be an Id to a current (latest version) document.\r\nThe !:ClientDocument.ExternalReference must be a unique string for all files for the given client. Max length is 50 characters.", - "description": "\n\n**Required Privilege:** Documents_Full", - "requestBody": { - "description": "", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersion" - } - } - } - } - } - } - }, - "/Documents/ClientDocuments/DeleteDocument/{documentId}": { - "delete": { - "tags": [ - "ClientDocuments" - ], - "summary": "Deletes a GoApi.Documents.ClientDocument. The API user must have full access to the GoApi.Documents.DocumentFolder which contains the file.\r\nThe API user must also be the creator of the file.", - "description": "\n\n**Required Privilege:** Documents_Full", - "parameters": [ - { - "name": "documentId", - "in": "path", - "description": "The document id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ContactGroup": { - "get": { - "tags": [ - "ContactGroup" - ], - "summary": "Gets a list of GoApi.Party.ContactGroup filtered by odata query.", - "description": "\n\n**Required Privilege:** ContactGroup", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ContactGroup" - ], - "summary": "Creates or updates the specified GoApi.Party.ContactGroup.", - "description": "\n\n**Required Privilege:** ContactGroup_Full", - "requestBody": { - "description": "The contact group.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - } - } - } - } - } - }, - "/ContactGroup/{contactGroupName}/customers": { - "get": { - "tags": [ - "ContactGroup" - ], - "summary": "Gets a list of GoApi.Party.Customer that is connected to the contact group with given name.", - "description": "\n\n**Required Privilege:** ContactGroup", - "parameters": [ - { - "name": "contactGroupName", - "in": "path", - "description": "The contact group name title.", - "required": true, - "schema": { - "type": "string" - }, - "example": "VIP Customers" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ContactGroup/{contactGroupName}/employees": { - "get": { - "tags": [ - "ContactGroup" - ], - "summary": "Gets a list of GoApi.Party.Employee that is connected to the contact group with given name.", - "description": "\n\n**Required Privilege:** ContactGroup", - "parameters": [ - { - "name": "contactGroupName", - "in": "path", - "description": "The contact group name title.", - "required": true, - "schema": { - "type": "string" - }, - "example": "Sales Team" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ContactGroup/{contactGroupName}/suppliers": { - "get": { - "tags": [ - "ContactGroup" - ], - "summary": "Gets a list of GoApi.Party.Supplier that is connected to the contact group with given name.", - "description": "\n\n**Required Privilege:** ContactGroup", - "parameters": [ - { - "name": "contactGroupName", - "in": "path", - "description": "The contact group name title.", - "required": true, - "schema": { - "type": "string" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ContactGroup/{id}": { - "get": { - "tags": [ - "ContactGroup" - ], - "summary": "Gets the specified GoApi.Party.ContactGroup by its identifier.", - "description": "\n\n**Required Privilege:** ContactGroup", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactGroup" - } - } - } - } - } - }, - "delete": { - "tags": [ - "ContactGroup" - ], - "summary": "Deletes the specified GoApi.Party.ContactGroup by its identifier.", - "description": "\n\n**Required Privilege:** ContactGroup_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ContactShareholder": { - "get": { - "tags": [ - "ContactShareholder" - ], - "summary": "Gets a list of GoApi.Party.ContactShareholder filtered by odata query.", - "description": "\n\n**Required Privilege:** Shareholder", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactShareholder, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ContactShareholder" - ], - "summary": "Saves the specified GoApi.Party.ContactShareholder.", - "description": "\n\n**Required Privilege:** Shareholder_Full", - "requestBody": { - "description": "The party.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactShareholder" - } - } - } - } - } - } - }, - "/ContactShareholder/{id}": { - "delete": { - "tags": [ - "ContactShareholder" - ], - "summary": "Deletes the specified GoApi.Party.ContactShareholder by its id.", - "description": "\n\n**Required Privilege:** Shareholder_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The ContactShareholder id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ContactUltimateBeneficialOwner": { - "get": { - "tags": [ - "ContactUltimateBeneficialOwner" - ], - "summary": "Gets a list of GoApi.Party.ContactUltimateBeneficialOwner filtered by odata query.", - "description": "\n\n**Required Privilege:** UBO", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactUltimateBeneficialOwner, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ContactUltimateBeneficialOwner" - ], - "summary": "Saves the specified GoApi.Party.ContactUltimateBeneficialOwner.", - "description": "\n\n**Required Privilege:** UBO_Full", - "requestBody": { - "description": "The Ultimate Beneficial Owner.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactUltimateBeneficialOwner" - } - } - } - } - } - } - }, - "/ContactUltimateBeneficialOwner/{id}": { - "delete": { - "tags": [ - "ContactUltimateBeneficialOwner" - ], - "summary": "Deletes the specified GoApi.Party.ContactUltimateBeneficialOwner by its id.", - "description": "\n\n**Required Privilege:** UBO_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The ContactUltimateBeneficialOwner id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Currency": { - "get": { - "tags": [ - "Currency" - ], - "summary": "Gets a list of currencies filtered by a oData query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Currency.Currency, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/CustomDimensionDefinition": { - "get": { - "tags": [ - "CustomDimensionDefinition" - ], - "summary": "Gets a list of custom dimension definitions filtered by odata query.", - "description": "\n\n**Required Privilege:** CustomDimensionDefinition", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionDefinition, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "CustomDimensionDefinition" - ], - "summary": "Updates the specified customDimensionDefinition.\r\nOrdinal must be 1,2 or 3. If not then an ArgumentOutOfRangeException is thrown.", - "description": "\n\n**Required Privilege:** CustomDimensionDefinition_Full", - "requestBody": { - "description": "The customDimensionDefinition.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - } - } - } - } - } - }, - "/CustomDimensionDefinition/{ordinal}": { - "get": { - "tags": [ - "CustomDimensionDefinition" - ], - "summary": "Gets the specified customDimensionDefinition by its ordinal (number).\r\nOrdinal must be 1,2 or 3. If not then an ArgumentOutOfRangeException is thrown.", - "description": "\n\n**Required Privilege:** CustomDimensionDefinition", - "parameters": [ - { - "name": "ordinal", - "in": "path", - "description": "Denoting a certain position in a sequence of numbers", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - }, - "example": 1 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionDefinition" - } - } - } - } - } - } - }, - "/CustomDimensionValue": { - "get": { - "tags": [ - "CustomDimensionValue" - ], - "summary": "Gets a list of customDimensionValues filtered by odata query.", - "description": "\n\n**Required Privilege:** CustomDimensionValue", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.CustomDimensionValue, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "CustomDimensionValue" - ], - "summary": "Creates or updates the specified customDimensionValue.", - "description": "\n\n**Required Privilege:** CustomDimensionValue_Full", - "requestBody": { - "description": "The customDimensionValue.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - } - } - } - } - } - }, - "/CustomDimensionValue/{id}": { - "get": { - "tags": [ - "CustomDimensionValue" - ], - "summary": "Gets the specified customDimensionValue by it's id.", - "description": "\n\n**Required Privilege:** CustomDimensionValue", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.CustomDimensionValue" - } - } - } - } - } - }, - "delete": { - "tags": [ - "CustomDimensionValue" - ], - "summary": "Deletes the specified customDimensionValue by it's id.", - "description": "\n\n**Required Privilege:** CustomDimensionValue_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Customer/{parentId}/Contact": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets a list of GoApi.Party.ContactPerson filtered by odata query for a given parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Customer" - ], - "summary": "Creates or updates the specified GoApi.Party.ContactPerson.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "description": "The contact person.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - } - } - } - }, - "/Customer/{parentId}/Contact/{id}": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets the specified GoApi.Party.ContactPerson by its id and its parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Customer" - ], - "summary": "Deletes the specified GoApi.Party.ContactPerson by its id.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Customer/{parentId}/BankAccount": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets a list of GoApi.Party.PartyBankAccount filtered by odata query for a given parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Customer" - ], - "summary": "Creates or updates the specified GoApi.Party.PartyBankAccount.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "description": "The party bank account.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - } - }, - "/Customer/{parentId}/BankAccount/{id}": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets the specified GoApi.Party.PartyBankAccount by its id and its parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee)", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Customer" - ], - "summary": "Deletes the specified GoApi.Party.PartyBankAccount by its id.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Customer": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets a list of parties (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) filtered by the odata query", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Customer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Customer" - ], - "summary": "Saves the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "requestBody": { - "description": "The party.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - } - } - } - } - } - }, - "/Customer/{id}": { - "get": { - "tags": [ - "Customer" - ], - "summary": "Gets the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) by its id.", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Customer" - ], - "summary": "Deletes the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The party id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/CustomerBalance": { - "get": { - "tags": [ - "CustomerBalance" - ], - "summary": "Gets the balance at the specified date for active customers.", - "description": "\n\n**Required Privilege:** Reporting_CustomerLedger", - "parameters": [ - { - "name": "toDate", - "in": "query", - "description": "To date. If null, defaults to DateTime.Now.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2025-12-31" - }, - { - "name": "contactGroup", - "in": "query", - "description": "The Contact Group customer is part of.", - "schema": { - "type": "string" - }, - "example": "VIP Customers" - }, - { - "name": "subledgerNumberSeriesId", - "in": "query", - "description": "The Sub Ledger Number Series customer is part of.", - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - }, - { - "name": "includeOnlyOpenItems", - "in": "query", - "description": "If null or true: include only open items, otherwise; include all items", - "schema": { - "type": "boolean" - }, - "example": true - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/CustomerLedger": { - "get": { - "tags": [ - "CustomerLedger" - ], - "summary": "Delegate method to handle Get requests for open items and statement reports.", - "description": "Is this output in the swagger documentation?", - "parameters": [ - { - "name": "fromDate", - "in": "query", - "description": "From date (nullable).", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "To date (nullable).", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/CustomerLedger/{matchId}": { - "get": { - "tags": [ - "CustomerLedger" - ], - "summary": "Gets all GoApi.Reporting.Ledger.CustomerLedgerEntry associated with a given match id.", - "description": "\n\n**Required Privilege:** Reporting_CustomerLedger", - "parameters": [ - { - "name": "matchId", - "in": "path", - "description": "The match identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.CustomerLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/CustomerLedger/MatchEntries": { - "post": { - "tags": [ - "CustomerLedger" - ], - "summary": "Matches the GoApi.Reporting.Ledger.CustomerLedgerEntry provided in the match request by their ids.", - "description": "\n\n**Required Privilege:** Reporting_CustomerLedger_Full", - "requestBody": { - "description": "The match request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Reporting.Ledger.MatchRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/CustomerLedger/UnmatchEntries": { - "post": { - "tags": [ - "CustomerLedger" - ], - "summary": "Unmatches the GoApi.Reporting.Ledger.CustomerLedgerEntry provided in the match request by their ids.", - "description": "\n\n**Required Privilege:** Reporting_CustomerLedger_Full", - "requestBody": { - "description": "The match request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Reporting.Ledger.MatchRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/DebtCollection": { - "post": { - "tags": [ - "DebtCollection" - ], - "summary": "Saves a new debt collection case, and returns the debt collection case with an assigned id.", - "description": "\n\n**Required Privilege:** DebtCollection_Full", - "requestBody": { - "description": "The debt collection case.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - } - } - }, - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets a list of debt collection cases filtered by a oData query.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCase, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/DebtCollection/AddInvoicesToCase": { - "post": { - "tags": [ - "DebtCollection" - ], - "summary": "Adds a collection of invoices to a debt collection case by the debt collection case assigned id and the invoices ids.", - "description": "\n\n**Required Privilege:** DebtCollection_Full", - "requestBody": { - "description": "The debt collection add invoices to case request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionAddInvoicesToCaseRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - } - } - } - }, - "/DebtCollection/MergeCases": { - "post": { - "tags": [ - "DebtCollection" - ], - "summary": "Merges a collection of debt collection cases by their ids to a single debt collection case with a given code.", - "description": "\n\n**Required Privilege:** DebtCollection_Full", - "requestBody": { - "description": "The merge debt collection cases request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionMergeCasesRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - } - } - } - }, - "/DebtCollection/GetAllMatchedItems/{fromDateTime}": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets all the matched items for each invoice where changes is newer than fromDateTime. \r\nThis will contain all voucher's sub ledger entries (i.e. Payments/Creditnotes) that have been matched with the invoice's sub ledger entry.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "fromDateTime", - "in": "path", - "description": "From datetime.", - "required": true, - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionCaseWithMatches, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/DebtCollection/{id}": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets the specified debt collection case by its identifier.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - } - } - }, - "delete": { - "tags": [ - "DebtCollection" - ], - "summary": "Deletes the specified GoApi.DebtCollection.DebtCollectionCase.\r\nThis call should be used if the debt collection agency rejects the case.", - "description": "\n\n**Required Privilege:** DebtCollection_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/DebtCollection/Invoices/AvailableInvoices": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets the all the available invoices for debt collection filtered by a oData query.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/DebtCollection/IsActiveDebtCollection": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets whether new debt collection cases can be created. If false, M:Web.ExternalApiCore.Controllers.DebtCollectionController.GetAvailableInvoices(Microsoft.AspNetCore.OData.Query.ODataQueryOptions{GoApi.DebtCollection.DebtCollectionInvoice}) and M:Web.ExternalApiCore.Controllers.DebtCollectionController.Save(GoApi.DebtCollection.DebtCollectionCase) will throw a SecurityException.", - "description": "\n\n**Required Privilege:** DebtCollection", - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "boolean" - } - }, - "application/json": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "boolean" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "boolean" - } - }, - "application/xml": { - "schema": { - "type": "boolean" - } - }, - "text/plain": { - "schema": { - "type": "boolean" - } - }, - "application/octet-stream": { - "schema": { - "type": "boolean" - } - }, - "text/json": { - "schema": { - "type": "boolean" - } - } - } - } - } - } - }, - "/DebtCollection/GetInvoicePdf/{id}": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets the PDF for an invoice by a given id.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The invoice identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - } - } - } - } - } - }, - "/DebtCollection/MatchedItems/{debtCollectionInvoiceId}": { - "get": { - "tags": [ - "DebtCollection" - ], - "summary": "Gets all the matched items on a debt collection invoice by the debt collection invoice id. \r\nThis will contain all voucher's sub ledger entries (i.e. Payments/Creditnotes) that have been matched with the invoice's sub ledger entry.", - "description": "\n\n**Required Privilege:** DebtCollection", - "parameters": [ - { - "name": "debtCollectionInvoiceId", - "in": "path", - "description": "The debt collection invoice identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.DebtCollection.DebtCollectionInvoiceMatch, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/DebtCollection/UpdateStatus": { - "post": { - "tags": [ - "DebtCollection" - ], - "summary": "Updates a debt collection case status by it's id and a status text. \r\nThe request will by default set the status of a debt collection case to Active, but can also close or reject cases by setting flags on the request.", - "description": "\n\n**Required Privilege:** DebtCollection_Full", - "requestBody": { - "description": "The debt collection status update request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionStatusUpdateRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCase" - } - } - } - } - } - } - }, - "/DeliveryTerms": { - "get": { - "tags": [ - "DeliveryTerms" - ], - "summary": "Gets a collection of GoApi.Invoices.DeliveryTerm filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.DeliveryTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "DeliveryTerms" - ], - "summary": "Creates or updates a delivery term.", - "description": "\n\n**Required Privilege:** CommonServices_Full", - "requestBody": { - "description": "The delivery term to save", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - } - } - } - } - } - }, - "/DeliveryTerms/{id}": { - "get": { - "tags": [ - "DeliveryTerms" - ], - "summary": "Gets the specified GoApi.Invoices.DeliveryTerm by its identifier.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier of a DeliveryTerm", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.DeliveryTerm" - } - } - } - } - } - }, - "delete": { - "tags": [ - "DeliveryTerms" - ], - "summary": "Deletes a delivery term.", - "description": "\n\n**Required Privilege:** CommonServices_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier of the delivery term to delete.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Department": { - "get": { - "tags": [ - "Department" - ], - "summary": "Gets a list of departments filtered by odata query.", - "description": "\n\n**Required Privilege:** Department", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.Department, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Department" - ], - "summary": "Creates or updates the specified department.", - "description": "\n\n**Required Privilege:** Department_Full", - "requestBody": { - "description": "The department.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - } - } - } - } - } - }, - "/Department/{id}": { - "get": { - "tags": [ - "Department" - ], - "summary": "Gets the specified department by it's id.", - "description": "\n\n**Required Privilege:** Department", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.Department" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Department" - ], - "summary": "Deletes the specified department by it's id.", - "description": "\n\n**Required Privilege:** Department_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Employee/{parentId}/BankAccount": { - "get": { - "tags": [ - "Employee" - ], - "summary": "Gets a list of GoApi.Party.PartyBankAccount filtered by odata query for a given parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Employee" - ], - "summary": "Creates or updates the specified GoApi.Party.PartyBankAccount.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "description": "The party bank account.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - } - }, - "/Employee/{parentId}/BankAccount/{id}": { - "get": { - "tags": [ - "Employee" - ], - "summary": "Gets the specified GoApi.Party.PartyBankAccount by its id and its parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee)", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Employee" - ], - "summary": "Deletes the specified GoApi.Party.PartyBankAccount by its id.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Employee": { - "get": { - "tags": [ - "Employee" - ], - "summary": "Gets a list of parties (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) filtered by the odata query", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Employee, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Employee" - ], - "summary": "Saves the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "requestBody": { - "description": "The party.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - } - } - } - } - } - }, - "/Employee/{id}": { - "get": { - "tags": [ - "Employee" - ], - "summary": "Gets the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) by its id.", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Employee" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Employee" - ], - "summary": "Deletes the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The party id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/ExpenseVoucher": { - "get": { - "tags": [ - "ExpenseVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.ExpenseVoucher filtered by odata query. This query will only return the expense created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.Expense.", - "description": "\n\n**Required Privilege:** ExpenseVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ExpenseVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ExpenseVoucher" - ], - "summary": "Saves a GoApi.Voucher.ExpenseVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** ExpenseVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - } - } - } - } - } - }, - "/Voucher/ExpenseVoucher/{id}": { - "get": { - "tags": [ - "ExpenseVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.ExpenseVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.ExpenseVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** ExpenseVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucher" - } - } - } - } - } - } - }, - "/Voucher/ExpenseVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "ExpenseVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** ExpenseVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ExternallyDeliverableInvoice": { - "get": { - "tags": [ - "ExternallyDeliverableInvoice" - ], - "summary": "Gets all GoApi.Invoices.ExternallyDeliverableInvoice filtered by an odata query.", - "description": "\n\n**Required Privilege:** ExternallyDeliverableInvoice", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.ExternallyDeliverableInvoice, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ExternallyDeliverableInvoice/InvoiceEhf/{invoiceId}": { - "get": { - "tags": [ - "ExternallyDeliverableInvoice" - ], - "summary": "Get the ehf xml document for a GoApi.Invoices.ExternallyDeliverableInvoice invoice by its Id as Stream.", - "description": "\n\n**Required Privilege:** ExternallyDeliverableInvoice", - "parameters": [ - { - "name": "invoiceId", - "in": "path", - "description": "The invoice id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - } - } - } - } - } - }, - "/ExternallyDeliverableInvoice/delivered": { - "post": { - "tags": [ - "ExternallyDeliverableInvoice" - ], - "summary": "Adds an history entry on the GoApi.Invoices.ExternallyDeliverableInvoice that an invoice has been delivered with an optional file and comment. \r\nCalling this will set GoApi.Invoices.ExternallyDeliverableInvoice.IsDelivered to true.", - "description": "\n\n**Required Privilege:** ExternallyDeliverableInvoice_Full", - "requestBody": { - "description": "The request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoiceDeliveredRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoice" - } - } - } - } - } - } - }, - "/Factoring/AvailableInvoices": { - "get": { - "tags": [ - "Factoring" - ], - "summary": "Gets a list of invoices available for the factoring agency filtered by a oData query.", - "description": "\n\n**Required Privilege:** Factoring", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Factoring/InvoicesDelivered": { - "get": { - "tags": [ - "Factoring" - ], - "summary": "Gets a list of invoices delivered by the factoring integration filtered by a oData query.", - "description": "\n\n**Required Privilege:** Factoring", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Factoring.FactoringInvoiceDetails, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Factoring/InvoiceEhf/{invoiceId}": { - "get": { - "tags": [ - "Factoring" - ], - "summary": "Gets an EHF document for the invoice with the provided invoice id.", - "description": "\n\n**Required Privilege:** Factoring", - "parameters": [ - { - "name": "invoiceId", - "in": "path", - "description": "The invoice id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - } - } - } - } - } - }, - "/Factoring/delivered": { - "post": { - "tags": [ - "Factoring" - ], - "summary": "Adds an history entry on the GoApi.Factoring.FactoringInvoiceDetails that an invoice has been delivered with an optional file and comment. \r\nCalling this will set GoApi.Factoring.FactoringInvoiceDetails.IsDelivered to true.\r\nCan only be called on invoices with GoApi.Factoring.FactoringInvoiceStatus.Active.", - "description": "\n\n**Required Privilege:** Factoring_Full", - "requestBody": { - "description": "The request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetailsDeliveredRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - } - } - } - } - } - }, - "/Factoring/updatefactoringinvoicestatus": { - "post": { - "tags": [ - "Factoring" - ], - "summary": "Updates the factoring status on the invoice with a specified GoApi.Factoring.FactoringInvoiceStatus.\r\nCannot be called before the invoice is delivered through the M:Web.ExternalApiCore.Controllers.FactoringController.Delivered(GoApi.Factoring.FactoringInvoiceDetailsDeliveredRequest) request.", - "description": "\n\n**Required Privilege:** Factoring_Full", - "requestBody": { - "description": "The request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceStatusRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDetails" - } - } - } - } - } - } - }, - "/Financing": { - "get": { - "tags": [ - "Financing" - ], - "summary": "Gets the GoApi.Financing.FinancialStatus for given client.", - "description": "\n\n**Required Privilege:** Financing", - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - } - } - } - } - } - }, - "/Financing/financialstatus": { - "post": { - "tags": [ - "Financing" - ], - "summary": "Updates the GoApi.Financing.FinancialStatus of the client with the credit limit and the amount of the credit that has been used by the client.", - "description": "\n\n**Required Privilege:** Financing_Full", - "requestBody": { - "description": "The request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Financing.FinancialStatus" - } - } - } - } - } - } - }, - "/GeneralLedgerAccount": { - "get": { - "tags": [ - "GeneralLedgerAccount" - ], - "summary": "Gets a list of GoApi.AccountingSettings.GeneralLedgerAccount filtered by odata query.", - "description": "\n\n**Required Privilege:** GeneralLedgerAccount", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.GeneralLedgerAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "GeneralLedgerAccount" - ], - "summary": "Creates or updates the specified GoApi.AccountingSettings.GeneralLedgerAccount .", - "description": "\n\n**Required Privilege:** GeneralLedgerAccount_Full", - "requestBody": { - "description": "The general ledger account.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - } - } - } - } - } - }, - "/GeneralLedgerAccount/{id}": { - "get": { - "tags": [ - "GeneralLedgerAccount" - ], - "summary": "Gets the specified GoApi.AccountingSettings.GeneralLedgerAccount by its identifier.", - "description": "\n\n**Required Privilege:** GeneralLedgerAccount", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.GeneralLedgerAccount" - } - } - } - } - } - }, - "delete": { - "tags": [ - "GeneralLedgerAccount" - ], - "summary": "Deletes the specified GoApi.AccountingSettings.GeneralLedgerAccount by its identifier.", - "description": "\n\n**Required Privilege:** GeneralLedgerAccount_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/TimeTracking/HourType": { - "get": { - "tags": [ - "HourType" - ], - "summary": "Gets a list of GoApi.TimeTracking.HourType filtered by odata query.", - "description": "\n\n**Required Privilege:** TimeTracking", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.HourType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "HourType" - ], - "summary": "Creates or updates the specified GoApi.TimeTracking.HourType.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "requestBody": { - "description": "The HourType.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - } - } - } - } - } - }, - "/TimeTracking/HourType/{id}": { - "get": { - "tags": [ - "HourType" - ], - "summary": "Gets the specified GoApi.TimeTracking.HourType by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 44556 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.HourType" - } - } - } - } - } - }, - "delete": { - "tags": [ - "HourType" - ], - "summary": "Deletes the specified GoApi.TimeTracking.HourType by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 44556 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Import": { - "get": { - "tags": [ - "Import" - ], - "summary": "Gets a list of GoApi.Import.Import filtered by odata query.", - "description": "\n\n**Required Privilege:** Import", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Import.Import, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Import" - ], - "summary": "Saves the provided GoApi.Import.Import.\r\nThis will upload the import to PowerOffice Go and users might manually post the imports there or the integration can do this through the M:Web.ExternalApiCore.Controllers.ImportController.Post(GoApi.Import.Import) method.", - "description": "\n\n**Required Privilege:** Import_Full", - "requestBody": { - "description": "The import.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/xml": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "text/plain": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/octet-stream": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "text/json": { - "schema": { - "type": "string", - "format": "uuid" - } - } - } - } - } - } - }, - "/Import/{id}": { - "get": { - "tags": [ - "Import" - ], - "summary": "Gets the specified GoApi.Import.Import by its id.", - "description": "\n\n**Required Privilege:** Import", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Import" - ], - "summary": "Deletes the specified GoApi.Import.Import by its id.", - "description": "\n\n**Required Privilege:** Import_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Import/{id}/status": { - "get": { - "tags": [ - "Import" - ], - "summary": "Gets the GoApi.Import.ImportStatus by the GoApi.Import.Import id.", - "description": "\n\n**Required Privilege:** Import", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.ImportStatus" - } - } - } - } - } - } - }, - "/Import/Post": { - "post": { - "tags": [ - "Import" - ], - "summary": "Imports the previously uploaded GoApi.Import.Import on the client.", - "description": "The journal must already be saved (ie. Id/> has been assigned).\r\n The journal instance only needs the Id to be set when calling this method, as the saved journal will be loaded\r\n server side, and posted.", - "requestBody": { - "description": "The journal.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Import.Import" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/xml": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "text/plain": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "application/octet-stream": { - "schema": { - "type": "string", - "format": "uuid" - } - }, - "text/json": { - "schema": { - "type": "string", - "format": "uuid" - } - } - } - } - } - } - }, - "/Voucher/IncomingInvoiceVoucher": { - "get": { - "tags": [ - "IncomingInvoiceVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.IncomingInvoiceVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type GoApi.Common.VoucherType.IncomingInvoice or GoApi.Common.VoucherType.IncomingCreditNote.", - "description": "\n\n**Required Privilege:** IncomingInvoiceVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.IncomingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "IncomingInvoiceVoucher" - ], - "summary": "Saves a GoApi.Voucher.IncomingInvoiceVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** IncomingInvoiceVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - } - } - } - } - } - }, - "/Voucher/IncomingInvoiceVoucher/{id}": { - "get": { - "tags": [ - "IncomingInvoiceVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.IncomingInvoiceVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.IncomingInvoiceVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** IncomingInvoiceVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucher" - } - } - } - } - } - } - }, - "/Voucher/IncomingInvoiceVoucher/UpdateRemittanceInfo": { - "post": { - "tags": [ - "IncomingInvoiceVoucher" - ], - "summary": "Updates whether the invoice should use remittance or not, and related payment properties.\r\nRemittance of an invoice is a direct payment from the client to the supplier that issued the invoice.\r\nIf remittance is true, the invoice becomes payable from the payment view in PowerOffice Go, enabling users to pay the invoice directly from Go through their bank integration.", - "description": "\n\n**Required Privilege:** IncomingInvoiceVoucher_Full", - "requestBody": { - "description": "The remittance info request", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.RemittanceInfoRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/IncomingInvoiceVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "IncomingInvoiceVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** IncomingInvoiceVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/InvoiceAttachment": { - "get": { - "tags": [ - "InvoiceAttachment" - ], - "summary": "Gets a list of GoApi.Invoices.InvoiceAttachment filtered by odata query.", - "description": "\n\n**Required Privilege:** InvoiceAttachment", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.InvoiceAttachment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "InvoiceAttachment" - ], - "summary": "Adds an GoApi.Invoices.InvoiceAttachment to a invoice.", - "description": "\n\n**Required Privilege:** InvoiceAttachment_Full", - "requestBody": { - "description": "The invoice attachment.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - } - } - } - } - } - }, - "/InvoiceAttachment/{id}": { - "get": { - "tags": [ - "InvoiceAttachment" - ], - "summary": "Gets the specified GoApi.Invoices.InvoiceAttachment by its identifier.", - "description": "\n\n**Required Privilege:** InvoiceAttachment", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.InvoiceAttachment" - } - } - } - } - } - }, - "delete": { - "tags": [ - "InvoiceAttachment" - ], - "summary": "Deletes the invoice attachment by its identifier.", - "description": "\n\n**Required Privilege:** InvoiceAttachment_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/InvoiceJournal": { - "get": { - "tags": [ - "InvoiceJournal" - ], - "summary": "Gets GoApi.Reporting.InvoiceJournal.InvoiceJournalLine for the invoices and credit notes in the specified date range", - "description": "\n\n**Required Privilege:** Reporting_InvoiceJournal", - "operationId": "GetInvoiceJournalLine", - "parameters": [ - { - "name": "fromDate", - "in": "query", - "description": "From date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "To date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "fromInvoiceNo", - "in": "query", - "description": "The starting invoice number (optional).", - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 10001 - }, - { - "name": "toInvoiceNo", - "in": "query", - "description": "The ending invoice number (optional).", - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 99999 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.InvoiceJournal.InvoiceJournalLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/InvoiceJournal/GetPdf": { - "get": { - "tags": [ - "InvoiceJournal" - ], - "summary": "Gets the PDF for an invoice or credit note with a id.", - "description": "\n\n**Required Privilege:** Reporting_InvoiceJournal", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The invoice identifier.", - "schema": { - "type": "string", - "format": "uuid" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/System.Net.Http.HttpResponseMessage" - } - } - } - } - } - } - }, - "/Reporting/InvoiceJournal/SetExternalCaseNumber": { - "put": { - "tags": [ - "InvoiceJournal" - ], - "summary": "Sets the external case number.\r\nThis method is now obsolete, since we now have a specific service for debt collection (Web.ExternalApiCore.Controllers.DebtCollectionController).", - "description": "\n\n**Required Privilege:** Reporting_InvoiceJournal", - "parameters": [ - { - "name": "id", - "in": "query", - "description": "The identifier.", - "schema": { - "type": "string", - "format": "uuid" - } - }, - { - "name": "externalCaseNumber", - "in": "query", - "description": "The external case number.", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/JournalEntryVoucher/ForwardIncomingEhf": { - "post": { - "tags": [ - "JournalEntryVoucher" - ], - "summary": "Insert EHF invoice into Go. Puts a CreateEhfImageMessage on the queue to the standard worker.", - "description": "\n\n**Required Privilege:** JournalEntryVoucher_Full", - "requestBody": { - "description": "The object containing the EHF file as base64 encoded string and file name.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.IncomingEhfFile" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/JournalEntryVoucher": { - "get": { - "tags": [ - "JournalEntryVoucher" - ], - "summary": "Gets a list of GoApi.JournalEntry.JournalEntryVoucher filtered by odata query.", - "description": "\n\n**Required Privilege:** JournalEntryVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.JournalEntry.JournalEntryVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "JournalEntryVoucher" - ], - "summary": "Saves the specified GoApi.JournalEntry.JournalEntryVoucher and returns the entity with an assigned Id.", - "description": "\n\n**Required Privilege:** JournalEntryVoucher_Full", - "requestBody": { - "description": "The journal entry voucher.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - } - } - } - } - } - }, - "/JournalEntryVoucher/{id}": { - "get": { - "tags": [ - "JournalEntryVoucher" - ], - "summary": "Gets the specified GoApi.JournalEntry.JournalEntryVoucher by its id.", - "description": "\n\n**Required Privilege:** JournalEntryVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucher" - } - } - } - } - } - }, - "delete": { - "tags": [ - "JournalEntryVoucher" - ], - "summary": "Deletes the specified GoApi.JournalEntry.JournalEntryVoucher by its id.", - "description": "\n\n**Required Privilege:** JournalEntryVoucher_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Location": { - "get": { - "tags": [ - "Location" - ], - "summary": "Gets a list of locations filtered by odata query.", - "description": "\n\n**Required Privilege:** Location", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Location, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Location" - ], - "summary": "Creates or updates the specified location.", - "description": "\n\n**Required Privilege:** Location_Full", - "requestBody": { - "description": "The location.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - } - } - } - } - } - }, - "/Location/{id}": { - "get": { - "tags": [ - "Location" - ], - "summary": "Gets the specified location by it's id.", - "description": "\n\n**Required Privilege:** Location", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Location" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Location" - ], - "summary": "Deletes the specified location by it's id.", - "description": "\n\n**Required Privilege:** Location_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/ManualJournalVoucher": { - "get": { - "tags": [ - "ManualJournalVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.ManualJournalVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.ManualJournal.", - "description": "\n\n**Required Privilege:** ManualJournalVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.ManualJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ManualJournalVoucher" - ], - "summary": "Saves a GoApi.Voucher.ManualJournalVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** ManualJournalVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/ManualJournalVoucher/{id}": { - "get": { - "tags": [ - "ManualJournalVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.ManualJournalVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.ManualJournalVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** ManualJournalVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/ManualJournalVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "ManualJournalVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** ManualJournalVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/OutgoingInvoice/GetNotes/{voucherId}": { - "get": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Gets all GoApi.Invoices.VoucherNote connected to an GoApi.Invoices.OutgoingInvoice by the Outgoing Invoices Id.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The outgoing voucher id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "3fa85f64-5717-4562-b3fc-2c963f66afa6" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - } - } - } - } - }, - "/OutgoingInvoice/SaveNote": { - "post": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Saves a new GoApi.Invoices.VoucherNote or updates an existing note on an GoApi.Invoices.OutgoingInvoice.\r\nNote that all with access to invoices can access the notes.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "requestBody": { - "description": "The data object.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - } - } - } - }, - "/OutgoingInvoice/List": { - "get": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Gets a list of GoApi.Invoices.OutgoingInvoiceListItem filtered by odata query. This is a lightweight version of an GoApi.Invoices.OutgoingInvoice.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.OutgoingInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/OutgoingInvoice/{id}": { - "get": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Gets the specified GoApi.Invoices.OutgoingInvoice by its identifier.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - } - } - } - } - }, - "delete": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Deletes the specified GoApi.Invoices.OutgoingInvoice by its identifier.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/OutgoingInvoice": { - "post": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Creates or updates the specified GoApi.Invoices.OutgoingInvoice.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "requestBody": { - "description": "The outgoing invoice.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoice" - } - } - } - } - } - } - }, - "/OutgoingInvoice/SendInvoice": { - "post": { - "tags": [ - "OutgoingInvoice" - ], - "summary": "Sends an invoice from Go to the specified customer through a given invoice delivery type.\r\nThe invoice will be added to the invoice sending queue if all provided parameters are valid.\r\nGoApi.Invoices.OutgoingInvoice.IsInvoiceBeingProcessed will be true while the invoice is in transit. After the invoice is delivered to the customer, the IsInvoiceBeingProcessed on the OutgoingInvoice will be set to false.\r\nNote that it's not guaranteed that the invoice will be sent although this function returns successfully. The invoice will be processed asynchronously. If any errors occur during processing, these errors will be displayed in GoApi.Invoices.OutgoingInvoice.LastErrorMessage.\r\nCheck GoApi.Invoices.OutgoingInvoice.Status to ensure that the invoice has actually been sent.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "requestBody": { - "description": "Contains parameters used for sending invoice.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.SendInvoiceRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/OutgoingInvoiceVoucher": { - "get": { - "tags": [ - "OutgoingInvoiceVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.OutgoingInvoiceVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type GoApi.Common.VoucherType.OutgoingInvoice or GoApi.Common.VoucherType.OutgoingCreditNote.", - "description": "\n\n**Required Privilege:** OutgoingInvoiceVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.OutgoingInvoiceVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "OutgoingInvoiceVoucher" - ], - "summary": "Saves a GoApi.Voucher.OutgoingInvoiceVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** OutgoingInvoiceVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - } - } - } - } - } - }, - "/Voucher/OutgoingInvoiceVoucher/{id}": { - "get": { - "tags": [ - "OutgoingInvoiceVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.OutgoingInvoiceVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.OutgoingInvoiceVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** OutgoingInvoiceVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucher" - } - } - } - } - } - } - }, - "/Voucher/OutgoingInvoiceVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "OutgoingInvoiceVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** OutgoingInvoiceVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/PartyBankAccount": { - "get": { - "tags": [ - "PartyBankAccount" - ], - "summary": "Gets a list of party bank accounts filtered by odata query.", - "description": "\n\n**Required Privilege:** PartyBankAccount", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/PartyContactPerson": { - "get": { - "tags": [ - "PartyContactPerson" - ], - "summary": "Gets a list of GoApi.Party.ContactPerson filtered by odata query.", - "description": "\n\n**Required Privilege:** PartyContactPerson", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Payroll/PayItem": { - "get": { - "tags": [ - "PayItem" - ], - "summary": "Gets a list of GoApi.Payroll.PayItem filtered by odata query.", - "description": "\n\n**Required Privilege:** Payroll", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.PayItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/paymentterms": { - "get": { - "tags": [ - "PaymentTerms" - ], - "summary": "Gets a list of GoApi.Invoices.PaymentTerm filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.PaymentTerm, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "PaymentTerms" - ], - "summary": "Creates or updates the specified GoApi.Invoices.PaymentTerm .", - "description": "\n\n**Required Privilege:** CommonServices_Full", - "requestBody": { - "description": "A PaymentTerm", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - } - } - } - } - } - }, - "/paymentterms/{id}": { - "get": { - "tags": [ - "PaymentTerms" - ], - "summary": "Gets the specified GoApi.Invoices.PaymentTerm by its identifier.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier of a PaymentTerm.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.PaymentTerm" - } - } - } - } - } - }, - "delete": { - "tags": [ - "PaymentTerms" - ], - "summary": "Deletes the specified GoApi.Invoices.PaymentTerm by its identifier.", - "description": "\n\n**Required Privilege:** CommonServices_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier of a PaymentTerm", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Voucher/PayrollJournalVoucher": { - "get": { - "tags": [ - "PayrollJournalVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.PayrollJournalVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.PayrollJournal.", - "description": "\n\n**Required Privilege:** PayrollJournalVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.PayrollJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "PayrollJournalVoucher" - ], - "summary": "Saves a GoApi.Voucher.PayrollJournalVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** PayrollJournalVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/PayrollJournalVoucher/{id}": { - "get": { - "tags": [ - "PayrollJournalVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.PayrollJournalVoucher by its identifier. Will throw an exception if the GoApi.Voucher.PayrollJournalVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** PayrollJournalVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/PayrollJournalVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "PayrollJournalVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** PayrollJournalVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Product": { - "get": { - "tags": [ - "Product" - ], - "summary": "Gets a list of GoApi.Products.Product filtered by odata query.", - "description": "\n\n**Required Privilege:** Product", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.Product, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Product" - ], - "summary": "Creates or updates the specified GoApi.Products.Product.", - "description": "\n\n**Required Privilege:** Product_Full", - "requestBody": { - "description": "The product.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - } - } - } - } - } - }, - "/Product/{id}": { - "get": { - "tags": [ - "Product" - ], - "summary": "Gets the specified GoApi.Products.Product by its identifier.", - "description": "\n\n**Required Privilege:** Product", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.Product" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Product" - ], - "summary": "Deletes the specified GoApi.Products.Product by its identifier.", - "description": "\n\n**Required Privilege:** Product_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ProductGroup": { - "get": { - "tags": [ - "ProductGroup" - ], - "summary": "Gets a list of GoApi.Products.ProductGroup filtered by odata query.", - "description": "\n\n**Required Privilege:** Product", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductGroup, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "ProductGroup" - ], - "summary": "Creates or updates the specified GoApi.Products.ProductGroup.", - "description": "\n\n**Required Privilege:** Product_Full", - "requestBody": { - "description": "The product group.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - } - } - } - } - } - }, - "/ProductGroup/{id}": { - "get": { - "tags": [ - "ProductGroup" - ], - "summary": "Gets the specified GoApi.Products.ProductGroup by its identifier.", - "description": "\n\n**Required Privilege:** Product", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Products.ProductGroup" - } - } - } - } - } - }, - "delete": { - "tags": [ - "ProductGroup" - ], - "summary": "Deletes the specified GoApi.Products.ProductGroup by its identifier.", - "description": "\n\n**Required Privilege:** Product_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ProductInventoryEntry": { - "get": { - "tags": [ - "ProductInventoryEntry" - ], - "summary": "Gets a list of GoApi.Products.ProductInventoryEntry filtered by odata query.", - "description": "\n\n**Required Privilege:** Product", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Products.ProductInventoryEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Project": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets a list of GoApi.Projects.Project filtered by odata query.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.Project, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Project" - ], - "summary": "Creates or updates the specified GoApi.Projects.Project.", - "description": "\n\n**Required Privilege:** Project_Full", - "requestBody": { - "description": "The project.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - } - } - } - } - } - }, - "/Project/{id}": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets the specified GoApi.Projects.Project by its id.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.Project" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Project" - ], - "summary": "Deletes the specified GoApi.Projects.Project by its id.", - "description": "\n\n**Required Privilege:** Project_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Project/{parentId}/TeamMember": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets a list of GoApi.Projects.ProjectTeamMember by odata query for a given parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Project" - ], - "summary": "Creates or updates the specified GoApi.Projects.ProjectTeamMember.", - "description": "\n\n**Required Privilege:** Project_Full", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "requestBody": { - "description": "The project team member.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - } - } - } - } - } - }, - "/Project/{parentId}/TeamMember/{id}": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets the specified GoApi.Projects.ProjectTeamMember by its id and its parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Project" - ], - "summary": "Deletes the specified GoApi.Projects.ProjectTeamMember by its identifier and its parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project_Full", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The identifier of the project.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier of the project team member.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Project/{parentId}/Activity": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets a list of GoApi.Projects.ProjectActivity filtered by odata query for a given parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Project" - ], - "summary": "Creates or updates the specified GoApi.Projects.ProjectActivity.", - "description": "\n\n**Required Privilege:** Project_Full", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "requestBody": { - "description": "The project activity.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - } - } - } - } - } - }, - "/Project/{parentId}/Activity/{id}": { - "get": { - "tags": [ - "Project" - ], - "summary": "Gets the specified GoApi.Projects.ProjectActivity by its id and its parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Project" - ], - "summary": "Deletes the specified GoApi.Projects.ProjectActivity by its identifier and its parent identifier (GoApi.Projects.Project).", - "description": "\n\n**Required Privilege:** Project_Full", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The identifier of the project.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier of the project activity.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/ProjectActivity": { - "get": { - "tags": [ - "ProjectActivity" - ], - "summary": "Gets a list of GoApi.Projects.ProjectActivity filtered by odata query.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectActivity, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ProjectActivity/{id}": { - "get": { - "tags": [ - "ProjectActivity" - ], - "summary": "Gets the specified GoApi.Projects.ProjectActivity by its id.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectActivity" - } - } - } - } - } - } - }, - "/ProjectTeamMember": { - "get": { - "tags": [ - "ProjectTeamMember" - ], - "summary": "Gets a list of GoApi.Projects.ProjectTeamMember filtered by odata query.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Projects.ProjectTeamMember, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/ProjectTeamMember/{id}": { - "get": { - "tags": [ - "ProjectTeamMember" - ], - "summary": "Gets the specified GoApi.Projects.ProjectTeamMember by its id.", - "description": "\n\n**Required Privilege:** Project", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectTeamMember" - } - } - } - } - } - } - }, - "/Quality/QualityAssignment/Delete/{id}": { - "delete": { - "tags": [ - "QualityAssignment" - ], - "summary": "Delete an GoApi.Quality.AssignmentAgreement.", - "description": "\n\n**Required Privilege:** Quality_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier of the assignment agreement to delete.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 98765 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Quality/QualityAssignment": { - "get": { - "tags": [ - "QualityAssignment" - ], - "summary": "Get a list of GoApi.Quality.AssignmentAgreement by an OData query.", - "description": "\n\n**Required Privilege:** Quality", - "operationId": "GetQualityAssignment", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.AssignmentAgreement, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "QualityAssignment" - ], - "summary": "Saves the specified GoApi.Quality.AssignmentAgreement.", - "description": "\n\n**Required Privilege:** Quality_Full", - "requestBody": { - "description": "The assignment agreement data object GoApi.Quality.AssignmentAgreement.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - } - } - } - } - } - }, - "/Quality/QualityAssignment/{id}": { - "get": { - "tags": [ - "QualityAssignment" - ], - "summary": "Get an GoApi.Quality.AssignmentAgreement by its Id.", - "description": "\n\n**Required Privilege:** Quality", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 98765 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreement" - } - } - } - } - } - } - }, - "/Quality/QualityDocumentation/DeleteDocument/{id}": { - "delete": { - "tags": [ - "QualityDocumentation" - ], - "summary": "Delete a specific document.", - "description": "\n\n**Required Privilege:** Quality_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "Document id. The id as received from method M:Web.ExternalApiCore.Controllers.Quality.QualityDocumentationController.GetDocumentList(System.Int64,Microsoft.AspNetCore.OData.Query.ODataQueryOptions{GoApi.Quality.QualityDocumentMetaData})", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 98765 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Quality/QualityDocumentation/GetDocumentList": { - "get": { - "tags": [ - "QualityDocumentation" - ], - "summary": "Gets documents connected to an assignment agreement.", - "description": "\n\n**Required Privilege:** Quality", - "parameters": [ - { - "name": "entityId", - "in": "query", - "description": "Assignment agreement id", - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 98765 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quality.QualityDocumentMetaData, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Quality/QualityDocumentation/UploadDocument": { - "post": { - "tags": [ - "QualityDocumentation" - ], - "summary": "Uploads and connects a document to an assignment agreement.", - "description": "\n\n**Required Privilege:** Quality_Full", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quality.QualityDocumentUpload" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Quote/List": { - "get": { - "tags": [ - "Quote" - ], - "summary": "Gets a list of GoApi.Quotes.QuoteListItem filtered by odata query.", - "description": "\n\n**Required Privilege:** Quote", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Quotes.QuoteListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Quote/{id}": { - "get": { - "tags": [ - "Quote" - ], - "summary": "Gets the specified GoApi.Quotes.Quote by its identifier.", - "description": "\n\n**Required Privilege:** Quote", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Quote" - ], - "summary": "Deletes the specified GoApi.Quotes.Quote by its identifier.", - "description": "\n\n**Required Privilege:** Quote_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Quote": { - "post": { - "tags": [ - "Quote" - ], - "summary": "Creates or updates the specified GoApi.Quotes.Quote.", - "description": "\n\n**Required Privilege:** Quote_Full", - "requestBody": { - "description": "The quote.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Quotes.Quote" - } - } - } - } - } - } - }, - "/RecurringInvoice/GetNotes/{voucherId}": { - "get": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Gets all GoApi.Invoices.VoucherNote connected to an GoApi.Invoices.RecurringInvoice by the Recurring Invoices Id.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The recurring voucher id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/xml": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "text/plain": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "application/octet-stream": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - }, - "text/json": { - "schema": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - } - } - } - } - }, - "/RecurringInvoice/SaveNote": { - "post": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Saves a new GoApi.Invoices.VoucherNote or updates an existing note on an GoApi.Invoices.RecurringInvoice.\r\nNote that all with access to invoices can access the notes.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "requestBody": { - "description": "The data object.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.VoucherNote" - } - } - } - } - } - } - }, - "/RecurringInvoice/List": { - "get": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Gets a list of GoApi.Invoices.RecurringInvoiceListItem filtered by odata query. This is a lightweight version of an GoApi.Invoices.RecurringInvoice.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Invoices.RecurringInvoiceListItem, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/RecurringInvoice/{id}": { - "get": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Gets the specified GoApi.Invoices.RecurringInvoice by its identifier.", - "description": "\n\n**Required Privilege:** OutgoingInvoice", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - } - } - } - } - }, - "delete": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Deletes the specified GoApi.Invoices.RecurringInvoice by its identifier.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/RecurringInvoice": { - "post": { - "tags": [ - "RecurringInvoice" - ], - "summary": "Creates or updates the specified GoApi.Invoices.RecurringInvoice.", - "description": "\n\n**Required Privilege:** OutgoingInvoice_Full", - "requestBody": { - "description": "The recurring invoice.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringInvoice" - } - } - } - } - } - } - }, - "/Payroll/SalaryLine": { - "get": { - "tags": [ - "SalaryLine" - ], - "summary": "Gets a list of GoApi.Payroll.SalaryLine filtered by odata query.", - "description": "\n\n**Required Privilege:** Payroll", - "operationId": "GetSalaryLineList", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Payroll.SalaryLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "SalaryLine" - ], - "summary": "Creates or updates the specified GoApi.Payroll.SalaryLine.", - "description": "\n\n**Required Privilege:** Payroll_Full", - "requestBody": { - "description": "The salaryLine.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - } - } - } - } - } - }, - "/Payroll/SalaryLine/{id}": { - "get": { - "tags": [ - "SalaryLine" - ], - "summary": "Gets the specified GoApi.Payroll.SalaryLine by its identifier.", - "description": "\n\n**Required Privilege:** Payroll", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 54321 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Payroll.SalaryLine" - } - } - } - } - } - }, - "delete": { - "tags": [ - "SalaryLine" - ], - "summary": "Deletes the specified GoApi.Payroll.SalaryLine by its identifier.", - "description": "\n\n**Required Privilege:** Payroll_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 54321 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/SubledgerNumberSeries": { - "get": { - "tags": [ - "SubledgerNumberSeries" - ], - "summary": "Gets a list of sub ledger number series filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.AccountingSettings.SubledgerNumberSeries, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/SubledgerNumberSeries/{id}": { - "get": { - "tags": [ - "SubledgerNumberSeries" - ], - "summary": "Gets the specified sub ledger number series by its identifier.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeries" - } - } - } - } - } - } - }, - "/Supplier/{parentId}/Contact": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets a list of GoApi.Party.ContactPerson filtered by odata query for a given parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.ContactPerson, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Supplier" - ], - "summary": "Creates or updates the specified GoApi.Party.ContactPerson.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "description": "The contact person.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - } - } - } - }, - "/Supplier/{parentId}/Contact/{id}": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets the specified GoApi.Party.ContactPerson by its id and its parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.ContactPerson" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Supplier" - ], - "summary": "Deletes the specified GoApi.Party.ContactPerson by its id.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Supplier/{parentId}/BankAccount": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets a list of GoApi.Party.PartyBankAccount filtered by odata query for a given parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee).", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.PartyBankAccount, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Supplier" - ], - "summary": "Creates or updates the specified GoApi.Party.PartyBankAccount.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - } - ], - "requestBody": { - "description": "The party bank account.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - } - }, - "/Supplier/{parentId}/BankAccount/{id}": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets the specified GoApi.Party.PartyBankAccount by its id and its parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (Supplier/Customer/Employee)", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.PartyBankAccount" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Supplier" - ], - "summary": "Deletes the specified GoApi.Party.PartyBankAccount by its id.", - "parameters": [ - { - "name": "parentId", - "in": "path", - "description": "The parent identifier (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee)..", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 67890 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Supplier": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets a list of parties (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) filtered by the odata query", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Party.Supplier, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "Supplier" - ], - "summary": "Saves the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "requestBody": { - "description": "The party.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - } - } - } - } - } - }, - "/Supplier/{id}": { - "get": { - "tags": [ - "Supplier" - ], - "summary": "Gets the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee) by its id.", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - } - } - } - } - } - }, - "delete": { - "tags": [ - "Supplier" - ], - "summary": "Deletes the specified party (GoApi.Party.Customer/GoApi.Party.Supplier/GoApi.Party.Employee).", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The party id.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/SupplierBalance": { - "get": { - "tags": [ - "SupplierBalance" - ], - "summary": "Gets the balance at the specified date for active suppliers.", - "description": "\n\n**Required Privilege:** Reporting_SupplierLedger", - "parameters": [ - { - "name": "toDate", - "in": "query", - "description": "To date. If null, defaults to DateTime.Now.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "contactGroup", - "in": "query", - "description": "The Contact Group supplier is part of.", - "schema": { - "type": "string" - }, - "example": "VIP Suppliers" - }, - { - "name": "subledgerNumberSeriesId", - "in": "query", - "description": "The Sub Ledger Number Series the supplier is part of.", - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - }, - { - "name": "includeOnlyOpenItems", - "in": "query", - "description": "If null or true: include only open items, otherwise; include all items", - "schema": { - "type": "boolean" - }, - "example": true - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierBalance, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/SupplierLedger": { - "get": { - "tags": [ - "SupplierLedger" - ], - "summary": "Gets supplier ledger entries as open items or statement report, depending on the parameters provided.\r\nIf both fromDate and toDate are provided, returns a statement report between those dates.\r\nIf only toDate is provided, returns open items as of that date.", - "description": "\n\n**Required Privilege:** Reporting_SupplierLedger", - "parameters": [ - { - "name": "fromDate", - "in": "query", - "description": "The start date for the statement report (optional).", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "The end date for the report or open items date (optional).", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/SupplierLedger/MatchEntries": { - "post": { - "tags": [ - "SupplierLedger" - ], - "summary": "Matches the GoApi.Reporting.Ledger.SupplierLedgerEntry provided in the match request by their ids.", - "description": "\n\n**Required Privilege:** Reporting_SupplierLedger_Full", - "requestBody": { - "description": "The match request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Reporting.Ledger.MatchRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/SupplierLedger/UnmatchEntries": { - "post": { - "tags": [ - "SupplierLedger" - ], - "summary": "Unmatches the GoApi.Reporting.Ledger.SupplierLedgerEntry provided in the match request by their ids.", - "description": "\n\n**Required Privilege:** Reporting_SupplierLedger_Full", - "requestBody": { - "description": "The match request.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Reporting.Ledger.MatchRequest" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/SupplierLedger/{matchId}": { - "get": { - "tags": [ - "SupplierLedger" - ], - "summary": "Gets all GoApi.Reporting.Ledger.SupplierLedgerEntry associated with a match id.", - "description": "\n\n**Required Privilege:** Reporting_SupplierLedger", - "parameters": [ - { - "name": "matchId", - "in": "path", - "description": "The match identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - } - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Ledger.SupplierLedgerEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/TimeTracking/TimeTrackingEntry": { - "get": { - "tags": [ - "TimeTrackingEntry" - ], - "summary": "Gets a list of GoApi.TimeTracking.TimeTrackingEntry filtered by odata query.", - "description": "\n\n**Required Privilege:** TimeTracking", - "operationId": "GetTimeTrackingEntryList", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.TimeTracking.TimeTrackingEntry, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "TimeTrackingEntry" - ], - "summary": "Creates or updates the specified GoApi.TimeTracking.TimeTrackingEntry.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "requestBody": { - "description": "The time tracking entry.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - } - } - } - } - } - }, - "/TimeTracking/TimeTrackingEntry/{id}": { - "get": { - "tags": [ - "TimeTrackingEntry" - ], - "summary": "Gets the specified GoApi.TimeTracking.TimeTrackingEntry by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 11223 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.TimeTracking.TimeTrackingEntry" - } - } - } - } - } - }, - "delete": { - "tags": [ - "TimeTrackingEntry" - ], - "summary": "Deletes the specified GoApi.TimeTracking.TimeTrackingEntry by its identifier.", - "description": "\n\n**Required Privilege:** TimeTracking_Full", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - }, - "/Reporting/TimeTransactions": { - "get": { - "tags": [ - "TimeTransactions" - ], - "summary": "Gets a list of GoApi.Reporting.TimeTransactions.TimeTransaction in the time-period specified with from- and to-DateTime filtered by\r\nodata query.", - "description": "\n\n**Required Privilege:** Reporting_TimeTransaction", - "operationId": "ByDateRange", - "parameters": [ - { - "name": "fromDate", - "in": "query", - "description": "From date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "To date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TimeTransactions.TimeTransaction, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/TrialBalance": { - "get": { - "tags": [ - "TrialBalance" - ], - "summary": "Get the trial balance as at today.", - "description": "\n\n**Required Privilege:** Reporting_TrialBalance", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.TrialBalance.TrialBalanceLine, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Reporting/Usage": { - "get": { - "tags": [ - "Usage" - ], - "summary": "Gets all the GoApi.Reporting.Usage.Usage between two dates.", - "description": "\n\n**Required Privilege:** Reporting_Usage", - "parameters": [ - { - "name": "fromDate", - "in": "query", - "description": "From date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-01-01T00:00:00" - }, - { - "name": "toDate", - "in": "query", - "description": "To date.", - "schema": { - "type": "string", - "format": "date-time" - }, - "example": "2024-12-31T23:59:59" - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Reporting.Usage.Usage, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/VatCode": { - "get": { - "tags": [ - "VatCode" - ], - "summary": "Gets a list of vat codes filtered by odata query.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/VatCode/{id}": { - "get": { - "tags": [ - "VatCode" - ], - "summary": "Gets the specified VatCode by it's id.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "integer", - "format": "int32" - }, - "example": 25 - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Dimension.VatCode" - } - } - } - } - } - } - }, - "/VatCode/chartofaccount/{accountCode}": { - "get": { - "tags": [ - "VatCode" - ], - "summary": "Gets available VAT codes for the specified general ledger account code.", - "description": "\n\n**Required Privilege:** CommonServices", - "parameters": [ - { - "name": "accountCode", - "in": "path", - "description": "The account code.", - "required": true, - "schema": { - "type": "integer", - "format": "int64" - }, - "example": 12345 - }, - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Dimension.VatCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - } - }, - "/Voucher/VoucherDocumentation/{id}": { - "get": { - "tags": [ - "VoucherDocumentation" - ], - "summary": "Gets the imported GoApi.Voucher.VoucherDocumentation by the Voucher's Id.", - "description": "\n\n**Required Privilege:** VoucherDocumentation", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The Voucher Id", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - } - } - } - } - } - }, - "/Voucher/VoucherDocumentation": { - "post": { - "tags": [ - "VoucherDocumentation" - ], - "summary": "Adds GoApi.Voucher.VoucherDocumentation to an imported Voucher.", - "description": "\n\n**Required Privilege:** VoucherDocumentation_Full", - "requestBody": { - "description": "The Voucher documentation", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.VoucherDocumentation" - } - } - } - } - } - } - }, - "/Voucher/YearEndJournalVoucher": { - "get": { - "tags": [ - "YearEndJournalVoucher" - ], - "summary": "Gets a list of GoApi.Voucher.YearEndJournalVoucher filtered by odata query. This query will only return the bank journal vouchers created by the integration itself, not all vouchers of type One.Domain.Entities.Accounting.Vouchers.VoucherType.YearEndJournal.", - "description": "\n\n**Required Privilege:** YearEndJournalVoucher", - "parameters": [ - { - "name": "options", - "in": "query", - "description": "OData query parameters (e.g., $filter, $orderby, $top, $skip)", - "schema": { - "type": "string" - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.DataPage`1[[GoApi.Voucher.YearEndJournalVoucher, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - } - } - } - } - }, - "post": { - "tags": [ - "YearEndJournalVoucher" - ], - "summary": "Saves a GoApi.Voucher.YearEndJournalVoucher and posts it to the general ledger.", - "description": "\n\n**Required Privilege:** YearEndJournalVoucher_Full", - "requestBody": { - "description": "The voucher", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/YearEndJournalVoucher/{id}": { - "get": { - "tags": [ - "YearEndJournalVoucher" - ], - "summary": "Gets the specified GoApi.Voucher.YearEndJournalVoucher by its identifier.\r\nWill throw an exception if the GoApi.Voucher.YearEndJournalVoucher does not exist, or it has not been created by the integration querying this method.", - "description": "\n\n**Required Privilege:** YearEndJournalVoucher", - "parameters": [ - { - "name": "id", - "in": "path", - "description": "The identifier.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucher" - } - } - } - } - } - } - }, - "/Voucher/YearEndJournalVoucher/Reverse/{voucherId}": { - "post": { - "tags": [ - "YearEndJournalVoucher" - ], - "summary": "Reverses a previously sent voucher by its id.", - "description": "\n\n**Required Privilege:** YearEndJournalVoucher_Full", - "parameters": [ - { - "name": "voucherId", - "in": "path", - "description": "The vouchers id.", - "required": true, - "schema": { - "type": "string", - "format": "uuid" - }, - "example": "12345678-1234-1234-1234-123456789012" - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "application/json;odata.metadata=minimal;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=minimal;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=full;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.metadata=none;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=true;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;odata.streaming=false;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=false": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/json;IEEE754Compatible=true": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/xml": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/plain": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "application/octet-stream": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - }, - "text/json": { - "schema": { - "$ref": "#/components/schemas/One.Common.Api.Success" - } - } - } - } - } - } - } - }, - "components": { - "schemas": { - "GoApi.AccountingSettings.GeneralLedgerAccount": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "name": { - "type": "string", - "nullable": true - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "isVatCodeLockedAfterPosting": { - "type": "boolean", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "isDepartmentRequired": { - "type": "boolean", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "isProjectRequired": { - "type": "boolean", - "nullable": true - }, - "isEnterpriseRequired": { - "type": "boolean", - "nullable": true - }, - "isFixedAssetsRequired": { - "type": "boolean", - "nullable": true - }, - "isQuantityRequired": { - "type": "boolean", - "nullable": true - }, - "isQuantity2Required": { - "type": "boolean", - "nullable": true - }, - "isProductRequired": { - "type": "boolean", - "nullable": true - }, - "isAgricultureProductRequired": { - "type": "boolean", - "nullable": true - }, - "isActivityRequired": { - "type": "boolean", - "nullable": true - }, - "isLocationRequired": { - "type": "boolean", - "nullable": true - }, - "isDim1Required": { - "type": "boolean", - "nullable": true - }, - "isDim2Required": { - "type": "boolean", - "nullable": true - }, - "isDim3Required": { - "type": "boolean", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "unit1": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.UnitOfMeasureCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "unit2": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.UnitOfMeasureCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.AccountingSettings.SubledgerNumberSeries": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "type": { - "$ref": "#/components/schemas/GoApi.AccountingSettings.SubledgerNumberSeriesType" - }, - "fromInclusive": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "toInclusive": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "generalLedgerAccountCode": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "generalLedgerAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isClientTrust": { - "type": "boolean", - "nullable": true, - "readOnly": true - }, - "isDefault": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.AccountingSettings.SubledgerNumberSeriesType": { - "enum": [ - "None", - "Customer", - "Supplier", - "Employee" - ], - "type": "string" - }, - "GoApi.Bank.BankTransfer": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "description": { - "type": "string", - "nullable": true - }, - "receiverName": { - "type": "string", - "nullable": true - }, - "receiverCountryCode": { - "type": "string", - "nullable": true - }, - "receiverVatNumber": { - "type": "string", - "nullable": true - }, - "payableBankAccount": { - "type": "string", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Bank.BankTransferStatus" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "paymentDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double", - "nullable": true - }, - "balancingAccountNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "receivableBankAccountCode": { - "type": "string", - "nullable": true - }, - "receivableBankAccountBicSwift": { - "type": "string", - "nullable": true - }, - "receivableBankAccountCountryCode": { - "type": "string", - "nullable": true - }, - "receivableBankAccountBankCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "paymentMessage": { - "type": "string", - "nullable": true - }, - "currencyRegistryCode": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Bank.CurrencyRegistryCodes, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyRegistryText": { - "type": "string", - "nullable": true - }, - "isExpress": { - "type": "boolean", - "nullable": true - }, - "internationalPaymentFeeDistribution": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Bank.InternationalPaymentFeeDistribution, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "isOnHold": { - "type": "boolean", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "invoiceId": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "subLedgerEntryId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "balancingAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Bank.BankTransferStatus": { - "enum": [ - "AwaitingAuthorization", - "Authorized", - "Completed", - "Deleted", - "Failed" - ], - "type": "string" - }, - "GoApi.Bank.ClientBankAccount": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "bicSwift": { - "type": "string", - "nullable": true - }, - "bankName": { - "type": "string", - "nullable": true - }, - "generalLedgerAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "countryCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "hasOutgoingPaymentService": { - "type": "boolean", - "readOnly": true - }, - "hasIncomingPaymentService": { - "type": "boolean", - "readOnly": true - }, - "isClientTrustAccount": { - "type": "boolean", - "nullable": true - }, - "isCurrentAccount": { - "type": "boolean", - "nullable": true, - "readOnly": true - }, - "generalLedgerAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Budget.Budget": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "managerCode": { - "type": "integer", - "format": "int64" - }, - "managerName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "departmentName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "year": { - "type": "integer", - "format": "int32" - }, - "startDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "budgetLineItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Budget.BudgetLineItem" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Budget.BudgetLineItem": { - "type": "object", - "properties": { - "accountCode": { - "type": "integer", - "format": "int64" - }, - "accountName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "month": { - "type": "integer", - "format": "int32" - }, - "amount": { - "type": "number", - "format": "double", - "nullable": true - }, - "year": { - "type": "integer", - "format": "int32" - }, - "accountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Client.Client": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true - }, - "legalName": { - "type": "string", - "nullable": true - }, - "vatNumber": { - "type": "string", - "nullable": true - }, - "mailAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "emailAddress": { - "type": "string", - "nullable": true - }, - "phoneNumber": { - "type": "string", - "nullable": true - }, - "websiteUrl": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "lockDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "salesAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "vatExemptSalesAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isVatRegistered": { - "type": "boolean", - "readOnly": true - }, - "isVatCompensationEnabled": { - "type": "boolean", - "readOnly": true - }, - "vatPeriod": { - "$ref": "#/components/schemas/GoApi.Client.VatPeriod" - }, - "financialYearEndMonth": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "isAgricultureClient": { - "type": "boolean", - "readOnly": true - }, - "defaultAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Client.ClientAuthTemporaryUrlDto": { - "type": "object", - "properties": { - "temporaryUrl": { - "type": "string", - "nullable": true - }, - "validUntil": { - "type": "string", - "format": "date-time" - } - }, - "additionalProperties": false - }, - "GoApi.Client.ClientAuthTemporaryUrlRequestDto": { - "type": "object", - "properties": { - "applicationKey": { - "type": "string", - "format": "uuid" - }, - "clientOrganizationNo": { - "type": "string", - "nullable": true - }, - "callbackUri": { - "type": "string", - "format": "uri", - "nullable": true - }, - "redirectUri": { - "type": "string", - "format": "uri", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Client.ClientContact": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "firstName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "lastName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "role": { - "$ref": "#/components/schemas/GoApi.Client.ContactPersonRole" - }, - "phoneNumber": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "email": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "bornYear": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Client.ContactPersonRole": { - "enum": [ - "None", - "Other", - "GeneralManager", - "ChairmanOfTheBoard", - "BoardMember" - ], - "type": "string" - }, - "GoApi.Client.Months": { - "enum": [ - "None", - "January", - "February", - "March", - "April", - "May", - "June", - "July", - "August", - "September", - "October", - "November", - "December" - ], - "type": "string" - }, - "GoApi.Client.VatPeriod": { - "enum": [ - "None", - "Weekly", - "HalfMonthly", - "Monthly", - "BiMonthly", - "Yearly", - "HalfYearly", - "Quarterly" - ], - "type": "string" - }, - "GoApi.Common.Address": { - "type": "object", - "properties": { - "city": { - "type": "string", - "nullable": true - }, - "zipCode": { - "type": "string", - "nullable": true - }, - "address1": { - "type": "string", - "nullable": true - }, - "address2": { - "type": "string", - "nullable": true - }, - "address3": { - "type": "string", - "nullable": true, - "deprecated": true - }, - "countryCode": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isPrimary": { - "type": "boolean" - }, - "externalCode": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Common.DocumentMimeType": { - "enum": [ - "ApplicationOctetStream", - "TextXml", - "TextCsv", - "TextPlain", - "TextHtml", - "ApplicationPdf", - "ApplicationJson", - "ApplicationExcel", - "ImageTiff", - "ImagePng", - "ImageGif", - "ImageJpeg", - "ImageBmp", - "ImageUnknown", - "MultipartFormData", - "ApplicationXml", - "MultipartReport", - "ZipArchive", - "ApplicationJavascript", - "TextCss", - "TextMarkdown", - "ImageSvg", - "ApplicationXlsx", - "ApplicationDocx", - "ApplicationPptx", - "ApplicationOpenOfficeSpreadsheet", - "ApplicationOpenOfficePresentation", - "ApplicationOpenOfficeText", - "ApplicationDwg" - ], - "type": "string" - }, - "GoApi.Common.ExternalInvoiceDeliveryType": { - "enum": [ - "Unspecified", - "Print", - "PdfByEmail", - "Ehf" - ], - "type": "string" - }, - "GoApi.Common.Gender": { - "enum": [ - "Unspecified", - "Male", - "Female", - "Hidden" - ], - "type": "string" - }, - "GoApi.Common.InvoiceDeliveryType": { - "enum": [ - "None", - "PdfByEmail", - "Print", - "EHF", - "AvtaleGiro", - "External", - "Efaktura", - "Factoring" - ], - "type": "string" - }, - "GoApi.Common.VatReturnSpecification": { - "enum": [ - "None", - "Adjustment", - "LossesOnClaims", - "ReversalOfInputValueAddedTax", - "Withdrawals", - "AdjustmentVatCompensationRealProperty", - "PurchasesEligibleForCompensation" - ], - "type": "string" - }, - "GoApi.Common.VoucherDocument": { - "type": "object", - "properties": { - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "fileName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "fileType": { - "$ref": "#/components/schemas/GoApi.Common.DocumentMimeType" - } - }, - "additionalProperties": false - }, - "GoApi.Common.VoucherLineType": { - "enum": [ - "Normal", - "Text", - "Summary", - "InvoiceFee", - "Total", - "BasicTypeMask", - "TotalHours" - ], - "type": "string" - }, - "GoApi.Common.VoucherType": { - "enum": [ - "None", - "IncomingInvoice", - "IncomingCreditNote", - "OutgoingInvoice", - "OutgoingCreditNote", - "IncomingBankRemittance", - "IncomingOcrGiro", - "StartingBalance", - "ManualJournal", - "Expense", - "CashJournal", - "IncomingPayments", - "OutgoingPayments", - "YearEndJournal", - "BankJournal", - "VatReturns", - "PayrollJournal", - "OutgoingPaymentReminder", - "OutgoingNoticeOfDebtCollection", - "OutgoingPaymentDemand", - "OutgoingWarrantOfExecution", - "CorrectionVoucher", - "ReversalVoucher", - "BeginningBalance", - "DepreciationJournal", - "TravelExpense", - "Settlement", - "NegativeSettlement", - "SystemGeneratedDocumentationVoucher" - ], - "type": "string" - }, - "GoApi.Currency.Currency": { - "type": "object", - "properties": { - "code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "notation": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isActive": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionAddInvoicesToCaseRequest": { - "type": "object", - "properties": { - "caseId": { - "type": "string", - "format": "uuid" - }, - "invoiceIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionCase": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "string", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionCaseStatus" - }, - "invoices": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionInvoice" - }, - "nullable": true - }, - "externalCaseUrl": { - "type": "string", - "nullable": true - }, - "balanceAgency": { - "type": "number", - "format": "double" - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "invoiceLastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionCaseStatus": { - "enum": [ - "Active", - "Closed" - ], - "type": "string" - }, - "GoApi.DebtCollection.DebtCollectionCaseWithMatches": { - "type": "object", - "properties": { - "matchedItems": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.DebtCollection.DebtCollectionInvoiceMatch" - }, - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionInvoice": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "invoiceDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "originalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "remainingAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "lastReminderSentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "lastReminderDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "lastReminderVoucherType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VoucherType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "lastReminderEmailAddress": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceEmailAddress": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "originalPostedAmount": { - "type": "number", - "format": "double", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionInvoiceMatch": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "postingDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "amount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "currencyAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "createdFromImportId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherId": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "isWriteOff": { - "type": "boolean", - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isNoteMainEntry": { - "type": "boolean", - "readOnly": true - }, - "matchId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "paidFromAccount": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionMergeCasesRequest": { - "type": "object", - "properties": { - "caseNo": { - "type": "string", - "nullable": true - }, - "caseIds": { - "type": "array", - "items": { - "type": "string", - "format": "uuid" - }, - "nullable": true - }, - "externalCaseUrl": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.DebtCollection.DebtCollectionStatusUpdateRequest": { - "type": "object", - "properties": { - "caseId": { - "type": "string", - "format": "uuid" - }, - "statusText": { - "type": "string", - "nullable": true - }, - "isCaseClosed": { - "type": "boolean", - "nullable": true - }, - "updatedBalanceAgency": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Dimension.CustomDimensionDefinition": { - "type": "object", - "properties": { - "ordinal": { - "maximum": 3, - "minimum": 1, - "type": "integer", - "format": "int32" - }, - "name": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Dimension.CustomDimensionValue": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "customDimensionOrdinal": { - "type": "integer", - "format": "int32" - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "externalReference": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Dimension.Department": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "managerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "isActive": { - "type": "boolean" - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Dimension.VatCode": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "rate": { - "type": "number", - "format": "double", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "validFrom": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "validto": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isCustom": { - "type": "boolean" - }, - "isVatCompensationCode": { - "type": "boolean" - }, - "vatBasisRatio": { - "type": "number", - "format": "double" - } - }, - "additionalProperties": false - }, - "GoApi.Documents.ClientDocument": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "filename": { - "type": "string", - "nullable": true - }, - "folderId": { - "type": "integer", - "format": "int64" - }, - "year": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "period": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "fileSize": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "createdByUserId": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "externalReference": { - "type": "string", - "nullable": true - }, - "version": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "documentVersions": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Documents.DocumentVersionListItem" - }, - "nullable": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Documents.ClientDocumentListItem": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "filename": { - "type": "string", - "nullable": true - }, - "folderId": { - "type": "integer", - "format": "int64" - }, - "year": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "period": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "fileSize": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "createdByUserId": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "externalReference": { - "type": "string", - "nullable": true - }, - "version": { - "type": "integer", - "format": "int32", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Documents.DocumentFolder": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "name": { - "type": "string", - "nullable": true - }, - "parentFolderId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "externalReference": { - "type": "string", - "nullable": true - }, - "hasWriteAccess": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Documents.DocumentVersion": { - "type": "object", - "properties": { - "documentId": { - "type": "integer", - "format": "int64" - }, - "filename": { - "type": "string", - "nullable": true - }, - "fileSize": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "version": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "externalReference": { - "type": "string", - "nullable": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Documents.DocumentVersionListItem": { - "type": "object", - "properties": { - "documentId": { - "type": "integer", - "format": "int64" - }, - "filename": { - "type": "string", - "nullable": true - }, - "fileSize": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "version": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "externalReference": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Factoring.FactoringInvoiceDetails": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "invoiceDeliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "isDelivered": { - "type": "boolean", - "readOnly": true - }, - "originalInvoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "factoringInvoiceStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Factoring.FactoringInvoiceStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "factoringInvoiceStatusDescription": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "debtorEmailAddress": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "debtorPhoneNumber": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentName": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Factoring.FactoringInvoiceDetailsDeliveredRequest": { - "type": "object", - "properties": { - "factoringInvoiceId": { - "type": "string", - "format": "uuid" - }, - "invoiceCid": { - "type": "string", - "nullable": true - }, - "file": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceDocumentationFile" - }, - "comment": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Factoring.FactoringInvoiceDocumentationFile": { - "type": "object", - "properties": { - "base64EncodedData": { - "type": "string", - "nullable": true - }, - "fileName": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Factoring.FactoringInvoiceStatus": { - "enum": [ - "Unspecified", - "Active", - "Forfeit", - "Complained", - "Completed", - "Delivered" - ], - "type": "string" - }, - "GoApi.Factoring.FactoringInvoiceStatusRequest": { - "type": "object", - "properties": { - "factoringInvoiceId": { - "type": "string", - "format": "uuid" - }, - "factoringInvoiceStatus": { - "$ref": "#/components/schemas/GoApi.Factoring.FactoringInvoiceStatus" - }, - "factoringInvoiceStatusDescription": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Financing.FinancialStatus": { - "type": "object", - "properties": { - "creditLimit": { - "type": "number", - "format": "double" - }, - "creditUsed": { - "type": "number", - "format": "double" - } - }, - "additionalProperties": false - }, - "GoApi.Import.Import": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "description": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time" - }, - "type": { - "$ref": "#/components/schemas/GoApi.Import.ImportType" - }, - "isPosted": { - "type": "boolean", - "readOnly": true - }, - "importLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Import.ImportLine" - }, - "nullable": true - }, - "salesOrders": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.SalesOrders.SalesOrder" - }, - "nullable": true - }, - "file": { - "$ref": "#/components/schemas/GoApi.Import.ImportFile" - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "externalImportReference": { - "maxLength": 50, - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Import.ImportFile": { - "type": "object", - "properties": { - "importFileType": { - "$ref": "#/components/schemas/GoApi.Import.ImportFileType" - }, - "fileName": { - "type": "string", - "nullable": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Import.ImportFileType": { - "enum": [ - "StandardImportFile", - "InvoicePdfZipFile", - "NetsOcrFile" - ], - "type": "string" - }, - "GoApi.Import.ImportLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "documentDate": { - "type": "string", - "format": "date-time" - }, - "documentNumber": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "postingDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "accountNumber": { - "type": "integer", - "format": "int64" - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "supplierCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double", - "nullable": true - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyAmount": { - "type": "number", - "format": "double", - "nullable": true - }, - "invoiceNo": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "discount": { - "type": "number", - "format": "double", - "nullable": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "reference": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Import.ImportStatus": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "isPosting": { - "type": "boolean", - "readOnly": true - }, - "isPosted": { - "type": "boolean", - "readOnly": true - }, - "hasError": { - "type": "boolean", - "readOnly": true - }, - "errorDescription": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "canBePosted": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Import.ImportType": { - "enum": [ - "None", - "OutgoingVoucher", - "Payroll", - "Cash", - "YearEnd", - "VoucherJournal" - ], - "type": "string" - }, - "GoApi.Invoices.Accrual": { - "type": "object", - "properties": { - "isActive": { - "type": "boolean" - }, - "fromDate": { - "type": "string", - "format": "date-time" - }, - "toDate": { - "type": "string", - "format": "date-time" - }, - "balanceAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "balanceAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "resultAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "resultAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "numOfMonths": { - "type": "integer", - "format": "int32", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.AccrualBase": { - "type": "object", - "properties": { - "isActive": { - "type": "boolean" - }, - "fromDate": { - "type": "string", - "format": "date-time" - }, - "toDate": { - "type": "string", - "format": "date-time" - }, - "balanceAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "balanceAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.BrandingTheme": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "countryCode": { - "type": "string", - "nullable": true - }, - "languageCode": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.DeliveryTerm": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "isDefault": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.ExternallyDeliverableInvoice": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalInvoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.ExternalInvoiceDeliveryType" - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "invoiceDeliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "isDelivered": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.ExternallyDeliverableInvoiceDeliveredRequest": { - "type": "object", - "properties": { - "externallyDeliverableInvoiceId": { - "type": "string", - "format": "uuid" - }, - "file": { - "$ref": "#/components/schemas/GoApi.Invoices.ExternallyDeliverableInvoiceDocumentationFile" - }, - "comment": { - "type": "string", - "nullable": true - }, - "exemptDebtCollection": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.ExternallyDeliverableInvoiceDocumentationFile": { - "type": "object", - "properties": { - "base64EncodedData": { - "type": "string", - "nullable": true - }, - "fileName": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.InvoiceAttachment": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceId": { - "type": "string", - "format": "uuid" - }, - "base64EncodedData": { - "type": "string", - "nullable": true - }, - "fileName": { - "type": "string", - "nullable": true - }, - "fileSizeInBytes": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.OutgoingInvoice": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "customerReferenceContactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerReference": { - "type": "string", - "nullable": true - }, - "outgoingInvoiceLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceLine" - }, - "nullable": true, - "readOnly": true - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.OutgoingInvoiceLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "description": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "discountPercent": { - "type": "number", - "format": "double", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "unitOfMeasure": { - "type": "string", - "nullable": true, - "deprecated": true - }, - "unitOfMeasureCode": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.UnitOfMeasureCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "sortOrder": { - "type": "integer", - "format": "int32" - }, - "lineType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherLineType" - }, - "exemptVat": { - "type": "boolean", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/GoApi.Common.VatReturnSpecification" - }, - "salesPersonEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "unitPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "unitCost": { - "type": "number", - "format": "double", - "nullable": true - }, - "isDeleted": { - "type": "boolean", - "nullable": true - }, - "accrual": { - "$ref": "#/components/schemas/GoApi.Invoices.Accrual" - }, - "salesAccount": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "vatExemptSalesAccount": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "vatCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "vatRate": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.OutgoingInvoiceListItem": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "contractNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.OutgoingInvoiceStatus": { - "enum": [ - "Draft", - "Approved", - "Sent", - "Paid", - "Archived" - ], - "type": "string" - }, - "GoApi.Invoices.PaymentTerm": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "creditDays": { - "type": "integer", - "format": "int32" - }, - "isDefault": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.RecurringInvoice": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "customerReferenceContactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerReference": { - "type": "string", - "nullable": true - }, - "outgoingInvoiceLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceLine" - }, - "nullable": true, - "readOnly": true - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "isActive": { - "type": "boolean" - }, - "repeatTimes": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "sendMethod": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringSendMethod" - }, - "sendFrequency": { - "type": "integer", - "format": "int32" - }, - "sendFrequencyUnit": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringSendFrequencyUnit" - }, - "nextInvoiceDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "daysInAdvance": { - "type": "integer", - "format": "int32" - }, - "exceptMonths": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "nullable": true - }, - "autoClearExclusions": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.RecurringInvoiceListItem": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "contractNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isActive": { - "type": "boolean" - }, - "repeatTimes": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "sendMethod": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringSendMethod" - }, - "sendFrequency": { - "type": "integer", - "format": "int32" - }, - "sendFrequencyUnit": { - "$ref": "#/components/schemas/GoApi.Invoices.RecurringSendFrequencyUnit" - }, - "nextInvoiceDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "daysInAdvance": { - "type": "integer", - "format": "int32" - }, - "exceptMonths": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "nullable": true - }, - "autoClearExclusions": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.RecurringSendFrequencyUnit": { - "enum": [ - "Weekly", - "Monthly", - "Yearly", - "Daily" - ], - "type": "string" - }, - "GoApi.Invoices.RecurringSendMethod": { - "enum": [ - "Confirm", - "Send", - "Draft" - ], - "type": "string" - }, - "GoApi.Invoices.SendInvoiceRequest": { - "type": "object", - "properties": { - "invoiceId": { - "type": "string", - "format": "uuid" - }, - "invoiceDate": { - "type": "string", - "format": "date-time" - }, - "deliveryType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.SendInvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "email": { - "type": "string", - "nullable": true - }, - "sendByEhfIfPossible": { - "type": "boolean" - }, - "sendByEfakturaIfPossible": { - "type": "boolean" - }, - "sendByAvtaleGiroIfPossible": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Invoices.VoucherNote": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "voucherId": { - "type": "string", - "format": "uuid" - }, - "text": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "lastChangedDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdByUserId": { - "type": "string", - "format": "uuid", - "readOnly": true - }, - "lastChangedByUserId": { - "type": "string", - "format": "uuid", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.JournalEntry.IncomingEhfFile": { - "type": "object", - "properties": { - "originalFileName": { - "type": "string", - "nullable": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.JournalEntry.JournalEntryFile": { - "type": "object", - "properties": { - "base64EncodedData": { - "type": "string", - "nullable": true - }, - "fileName": { - "type": "string", - "nullable": true - }, - "fileType": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryFileType" - } - }, - "additionalProperties": false - }, - "GoApi.JournalEntry.JournalEntryFileType": { - "enum": [ - "None", - "Pdf", - "ImageJpeg", - "ImagePng", - "ImageTiff", - "ImageGif", - "ImageBmp" - ], - "type": "string" - }, - "GoApi.JournalEntry.JournalEntryVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucherType" - }, - "file": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryFile" - }, - "supplierCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "invoiceNo": { - "type": "string", - "nullable": true - }, - "creditNoteNo": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "voucherLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.JournalEntry.JournalEntryVoucherLine" - }, - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "bankAccountCode": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "comment": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "payout": { - "type": "boolean", - "nullable": true - }, - "paymentDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "submitForApproval": { - "type": "boolean", - "nullable": true - }, - "isSubmittedForApproval": { - "type": "boolean", - "nullable": true, - "readOnly": true - }, - "submitForApprovalErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.JournalEntry.JournalEntryVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "debitAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "debitVatCode": { - "type": "string", - "nullable": true - }, - "debitVatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "creditAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "creditVatCode": { - "type": "string", - "nullable": true - }, - "creditVatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "amount": { - "type": "number", - "format": "double", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "quantity2": { - "type": "number", - "format": "double", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "isDeleted": { - "type": "boolean", - "nullable": true - }, - "invoiceNo": { - "type": "string", - "nullable": true - }, - "accrual": { - "$ref": "#/components/schemas/GoApi.Invoices.AccrualBase" - }, - "debitAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "creditAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.JournalEntry.JournalEntryVoucherType": { - "enum": [ - "None", - "SupplierInvoice", - "SupplierCreditNote", - "Expense", - "ManualJournal", - "CashJournal", - "BankJournal", - "YearEndJournal" - ], - "type": "string" - }, - "GoApi.Party.ContactGroup": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "title": { - "type": "string", - "nullable": true - }, - "sendInvoicesToGroup": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.ContactPerson": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "partyId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "emailAddress": { - "type": "string", - "nullable": true - }, - "phoneNumber": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "isPep": { - "type": "boolean", - "nullable": true - }, - "isRca": { - "type": "boolean", - "nullable": true - }, - "partyCustomerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "partySupplierCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "socialSecurityNumber": { - "type": "string", - "nullable": true - }, - "hasNorwegianSSN": { - "type": "boolean" - }, - "address1": { - "type": "string", - "nullable": true - }, - "address2": { - "type": "string", - "nullable": true - }, - "city": { - "type": "string", - "nullable": true - }, - "zipCode": { - "type": "string", - "nullable": true - }, - "residenceCountryCode": { - "type": "string", - "nullable": true - }, - "dateOfBirth": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "placeOfBirth": { - "type": "string", - "nullable": true - }, - "citizenship": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "gender": { - "$ref": "#/components/schemas/GoApi.Common.Gender" - }, - "externalCode": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.ContactShareholder": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "partyId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "partyCustomerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "partySupplierCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "idNumber": { - "type": "string", - "nullable": true - }, - "address": { - "type": "string", - "nullable": true - }, - "countryOfResidence": { - "type": "string", - "nullable": true - }, - "share": { - "type": "number", - "format": "double", - "nullable": true - }, - "isPerson": { - "type": "boolean" - }, - "isPep": { - "type": "boolean", - "nullable": true - }, - "isRca": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.ContactUltimateBeneficialOwner": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "partyId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "partyCustomerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "partySupplierCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true, - "deprecated": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "idNumber": { - "type": "string", - "nullable": true - }, - "address": { - "type": "string", - "nullable": true - }, - "countryOfResidence": { - "type": "string", - "nullable": true - }, - "hasVotingRights": { - "type": "boolean" - }, - "share": { - "type": "number", - "format": "double", - "nullable": true - }, - "groundsForUBOStatus": { - "type": "string", - "nullable": true - }, - "isPep": { - "type": "boolean", - "nullable": true - }, - "isRca": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.Customer": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "externalCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "mailAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddresses": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "nullable": true - }, - "emailAddress": { - "type": "string", - "nullable": true - }, - "phoneNumber": { - "type": "string", - "nullable": true - }, - "isArchived": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "contactGroups": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "dateOfBirth": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "socialSecurityNumber": { - "type": "string", - "nullable": true - }, - "subledgerNumberSeriesId": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "reportInternationalId": { - "type": "boolean", - "nullable": true - }, - "internationalIdCountryCode": { - "type": "string", - "nullable": true - }, - "internationalIdType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Payroll.InternationalIdType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "internationalIdNumber": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "legalName": { - "type": "string", - "nullable": true - }, - "contactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "vatNumber": { - "type": "string", - "nullable": true - }, - "websiteUrl": { - "type": "string", - "nullable": true - }, - "since": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "isPerson": { - "type": "boolean", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.InvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "isVatFree": { - "type": "boolean", - "nullable": true - }, - "discountPercent": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "invoiceEmailAddress": { - "type": "string", - "nullable": true - }, - "invoiceEmailAddressCC": { - "type": "string", - "nullable": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "invoiceBrandingThemeCode": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "useFactoring": { - "type": "boolean", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "sendReminders": { - "type": "boolean", - "nullable": true - }, - "doNotAddLatePaymentFees": { - "type": "boolean", - "nullable": true - }, - "doNotAddLatePaymentInterest": { - "type": "boolean", - "nullable": true - }, - "reminderDeliveryType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.InvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "noticeOfDebtCollectionDeliveryType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.InvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "reminderEmailAddress": { - "type": "string", - "nullable": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true - }, - "transferToDebtCollectionAgency": { - "type": "boolean", - "nullable": true - }, - "customerCreatedDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "useInvoiceFee": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.Employee": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "externalCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "mailAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddresses": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "nullable": true - }, - "emailAddress": { - "type": "string", - "nullable": true - }, - "phoneNumber": { - "type": "string", - "nullable": true - }, - "isArchived": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "contactGroups": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "dateOfBirth": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "socialSecurityNumber": { - "type": "string", - "nullable": true - }, - "subledgerNumberSeriesId": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "reportInternationalId": { - "type": "boolean", - "nullable": true - }, - "internationalIdCountryCode": { - "type": "string", - "nullable": true - }, - "internationalIdType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Payroll.InternationalIdType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "internationalIdNumber": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "nationalityCountryCode": { - "type": "string", - "nullable": true - }, - "jobTitle": { - "type": "string", - "nullable": true - }, - "hiredDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true, - "deprecated": true - }, - "hourlyCost": { - "type": "number", - "format": "double", - "nullable": true, - "deprecated": true - }, - "hourlyRates": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Party.EmployeeTimeHourlyRates" - }, - "nullable": true - }, - "payrollBankAccountCode": { - "type": "string", - "nullable": true - }, - "expenseBankAccountCode": { - "type": "string", - "nullable": true - }, - "payrollEmailAddress": { - "type": "string", - "nullable": true - }, - "employeeCreatedDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "managerEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "gender": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.Gender, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Party.EmployeeTimeHourlyRates": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "validFrom": { - "type": "string", - "format": "date-time" - }, - "validTo": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "hourlyCost": { - "type": "number", - "format": "double", - "nullable": true - }, - "isDeleted": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.PartyBankAccount": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "partyId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "string", - "nullable": true - }, - "bicSwift": { - "type": "string", - "nullable": true - }, - "countryCode": { - "type": "string", - "nullable": true - }, - "bankCode": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Party.Supplier": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "code": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "externalCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "mailAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddress": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "streetAddresses": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Common.Address" - }, - "nullable": true - }, - "emailAddress": { - "type": "string", - "nullable": true - }, - "phoneNumber": { - "type": "string", - "nullable": true - }, - "isArchived": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "contactGroups": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "firstName": { - "type": "string", - "nullable": true - }, - "lastName": { - "type": "string", - "nullable": true - }, - "dateOfBirth": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "socialSecurityNumber": { - "type": "string", - "nullable": true - }, - "subledgerNumberSeriesId": { - "type": "string", - "format": "uuid", - "nullable": true - }, - "reportInternationalId": { - "type": "boolean", - "nullable": true - }, - "internationalIdCountryCode": { - "type": "string", - "nullable": true - }, - "internationalIdType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Payroll.InternationalIdType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "internationalIdNumber": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "legalName": { - "type": "string", - "nullable": true - }, - "contactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "vatNumber": { - "type": "string", - "nullable": true - }, - "websiteUrl": { - "type": "string", - "nullable": true - }, - "since": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "isPerson": { - "type": "boolean", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "standardGeneralLedgerAccountCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "supplierCreatedDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "standardGeneralLedgerAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Payroll.PayItem": { - "type": "object", - "properties": { - "code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isActive": { - "type": "boolean", - "readOnly": true - }, - "benefit": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "description": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "processingType": { - "$ref": "#/components/schemas/GoApi.Payroll.PayItemProcessingType" - }, - "id": { - "type": "string", - "format": "uuid", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Payroll.PayItemProcessingType": { - "enum": [ - "FixedAmount", - "FixedAmountWithQuantity", - "FixedAmountWithQuantitySubjectToWithholdingTax", - "QuantityAndRate", - "QuantityAndRateSubjectToWithholdingTax", - "QuantityAndFixedRate", - "QuantityAndRateReportingZeroAsQuantity", - "QuantityAndFixedRateReportingZeroAsQuantity", - "FixedSalary", - "HourlyWage", - "PercentOfHourlyWage", - "HolidayPay", - "HolidayPayOver60Years", - "HolidayPayForSpecifiedYear", - "WageDeductionForHoliday", - "WageDeductionForHolidayOver60Years", - "HolidayPayCorrection", - "HolidayPayCorrectionOver60", - "ElectronicCommunications", - "ExpenseRefund", - "SalaryAdvance", - "FreeCarStandardRule", - "FreeCarOther", - "FreeCarOutsideStandardRule", - "WorkCarListPrice", - "WorkCarKilometers", - "DeductionWithBalance", - "BackPaymentOfPensionAndAnnuities", - "Lott", - "CommuterWithPersonTypeAndQuantity", - "CommuterWithPersonType", - "CommuterWithNumberOfJourneys", - "CommuterWithPersonTypeQuantityAndRate", - "HomeVisitsForCommuters", - "SeafarersAllowanceDaysAtSea", - "HolidayPayFinalSettlement", - "TradeUnionDeduction", - "PensionDeduction", - "PensionDeductionUnlimited", - "AttachmentOfEarnings", - "AttachmentOfEarningsTax", - "SeafarersAllowanceDeduction", - "PercentOfFixedSalary", - "DailyWageFiveDayWeek", - "DailyWageSixDayWeek", - "CorrectionOfAdditionalEmployersContribution", - "CorrectionOfEmployersContribution", - "CorrectionOfEmployersContributionAfterUsedFreeAmount", - "RetroactivePaymentFixedSalary", - "RetroactivePaymentHourlyRate", - "RetroactivePaymentOvertime", - "RetroactivePaymentDeductionForHoliday" - ], - "type": "string" - }, - "GoApi.Payroll.SalaryLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "payItemCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "rate": { - "type": "number", - "format": "double", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "account": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "oppositeAccount": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "comment": { - "type": "string", - "nullable": true - }, - "isLocked": { - "type": "boolean", - "readOnly": true - }, - "isDeletedByUser": { - "type": "boolean", - "readOnly": true - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "carRegistrationNo": { - "type": "string", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "accountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "oppositeAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Products.Product": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "productGroupId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "type": { - "$ref": "#/components/schemas/GoApi.Products.ProductType" - }, - "unit": { - "type": "string", - "nullable": true, - "deprecated": true - }, - "unitOfMeasureCode": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.UnitOfMeasureCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "costPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "salesPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "salesAccount": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "vatExemptSalesAccount": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "gtin": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "productsOnHandLastChanged": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "productsOnHand": { - "type": "number", - "format": "double", - "nullable": true - }, - "availableStock": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "vatCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "salesAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "vatExampleSalesAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Products.ProductGroup": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "type": { - "$ref": "#/components/schemas/GoApi.Products.ProductType" - }, - "unit": { - "type": "string", - "nullable": true - }, - "costPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "salesPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "salesAccount": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "salesAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "vatExemptSalesAccount": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "vatExemptSalesAccountAgricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Products.ProductInventoryEntry": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "productCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "delta": { - "type": "number", - "format": "double", - "readOnly": true - }, - "type": { - "$ref": "#/components/schemas/GoApi.Products.ProductInventoryEntryType" - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Products.ProductInventoryEntryType": { - "enum": [ - "None", - "Sales", - "VoucherPostingService", - "StockTaking", - "Correction", - "Reversal", - "Deletion", - "Api" - ], - "type": "string" - }, - "GoApi.Products.ProductType": { - "enum": [ - "None", - "Product", - "Service" - ], - "type": "string" - }, - "GoApi.Projects.Location": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Projects.Project": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "isBillable": { - "type": "boolean", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Projects.ProjectStatus" - }, - "startDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "projectManagerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "parentProjectCode": { - "type": "string", - "nullable": true - }, - "externalCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "allowAllActivities": { - "type": "boolean", - "nullable": true - }, - "allowAllEmployees": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "isInternal": { - "type": "boolean", - "nullable": true - }, - "progress": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "budgetedHours": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedHourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedExpenseHours": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedRevenueHours": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedOtherExpenses": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedRevenueBillableExpenses": { - "type": "number", - "format": "double", - "nullable": true, - "deprecated": true - }, - "budgetedTotalRevenue": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetedCostOfGoods": { - "type": "number", - "format": "double", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "attachExpenseVouchersWhenBilling": { - "type": "boolean" - }, - "markupHourlyRateEnabled": { - "type": "boolean" - }, - "hourlyRateFactorWithMarkup": { - "type": "number", - "format": "double", - "nullable": true - }, - "hourlyRateMarkupDescription": { - "type": "string", - "nullable": true - }, - "markupOtherExpensesEnabled": { - "type": "boolean" - }, - "otherExpensesFactorWithMarkup": { - "type": "number", - "format": "double", - "nullable": true - }, - "otherExpensesMarkupDescription": { - "type": "string", - "nullable": true - }, - "deliveryTerms": { - "type": "string", - "nullable": true - }, - "billingMethod": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Projects.ProjectBillingMethod, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "billingHourlyRateSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Projects.HourlyRateSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "fixedPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "billableRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "contactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "denyTimeTracking": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Projects.ProjectActivity": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "activityCode": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isBillable": { - "type": "boolean", - "nullable": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Projects.ProjectStatus": { - "enum": [ - "None", - "Tentative", - "Active", - "Archived", - "NotStarted", - "Complete" - ], - "type": "string" - }, - "GoApi.Projects.ProjectTeamMember": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "budgetHours": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Quality.AssignmentAgreement": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerAccountCode": { - "type": "integer", - "format": "int64" - }, - "contactPersonId": { - "type": "integer", - "format": "int64" - }, - "description": { - "type": "string", - "nullable": true - }, - "managerCode": { - "type": "integer", - "format": "int64" - }, - "keyAccountManagerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "associateCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "startDate": { - "type": "string", - "format": "date-time" - }, - "endDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "signedDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "revisedDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "noticePeriod": { - "type": "integer", - "format": "int32" - }, - "riskAssessmentPerformed": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "assignmentRiskLevel": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentRiskLevel" - }, - "riskAssessmentComment": { - "type": "string", - "nullable": true - }, - "shareholderListConfirmedDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "shareholderListConfirmed": { - "type": "boolean" - }, - "shareholderListConfirmedComment": { - "type": "string", - "nullable": true - }, - "creditCheckPerformed": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "creditCheckCompleted": { - "type": "boolean" - }, - "totalCreditScore": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "creditScore": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "creditCheckComment": { - "type": "string", - "nullable": true - }, - "hasExpertise": { - "type": "boolean" - }, - "hasCapacity": { - "type": "boolean" - }, - "isEthicallySound": { - "type": "boolean" - }, - "isInterestingForTheAgency": { - "type": "boolean" - }, - "companyCredentials": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentCompanyCredentialsType" - }, - "customerControlledDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "customerControlledByCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "proxySignatorId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "authorizationDocumentation": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAuthorizationDocumentType" - }, - "proxyIdentification": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentProxyIdentificationType" - }, - "proxyControlledByExternalParties": { - "type": "boolean" - }, - "proxyControlledByExternalName": { - "type": "string", - "nullable": true - }, - "proxyControlledByCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "proxyControlledDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "accountingSystem": { - "type": "string", - "nullable": true - }, - "accountingSystemIsPowerOfficeGo": { - "type": "boolean" - }, - "licenseeIsCustomer": { - "type": "boolean" - }, - "incomingInvoicesScannedByCustomer": { - "type": "boolean" - }, - "systemUsageInvoicedToCustomer": { - "type": "boolean" - }, - "systemAdministeredByCustomer": { - "type": "boolean" - }, - "outgoingInvoicedGeneratedByPowerOfficeGo": { - "type": "boolean" - }, - "outgoingInvoicedGeneratedBy": { - "type": "string", - "nullable": true - }, - "outgoingInvoicesReceivedBy": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentOutgoingInvoicesReceivedByType" - }, - "payrollSystem": { - "type": "string", - "nullable": true - }, - "payrollSystemIsPowerOfficeGo": { - "type": "boolean" - }, - "wageBasisReceivedBy": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentOutgoingInvoicesReceivedByType" - }, - "annualStatementSystem": { - "type": "string", - "nullable": true - }, - "annualDispoitionsReceivedBy": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentOutgoingInvoicesReceivedByType" - }, - "hasCashSales": { - "type": "boolean" - }, - "cashSalesRegisteredIn": { - "type": "string", - "nullable": true - }, - "checkoutSystemRoutine": { - "type": "string", - "nullable": true - }, - "cashJournalSavedElectronically": { - "type": "boolean" - }, - "cashRegisterDataAccessedVia": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentCashRegisterDataAccessedViaType" - }, - "isNewlyEstablished": { - "type": "boolean" - }, - "previousAccountantName": { - "type": "string", - "nullable": true - }, - "previousAccountantEmail": { - "type": "string", - "nullable": true - }, - "previousAccountantRequestedDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "previousAccountantResponse": { - "type": "string", - "nullable": true - }, - "demandsStatus": { - "$ref": "#/components/schemas/GoApi.Quality.PreviousAccountantDemandsStatus" - }, - "assignmentAgreementRiskQuestionnaires": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreementRiskQuestionnaire" - }, - "nullable": true - }, - "isDeleted": { - "type": "boolean", - "readOnly": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Quality.AssignmentAgreementStatus" - } - }, - "additionalProperties": false - }, - "GoApi.Quality.AssignmentAgreementRiskQuestionnaire": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "companyNaceCode": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "companyIndustryMoneyLaundering": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "companyCashSales": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "companyExplanation": { - "type": "string", - "nullable": true - }, - "businessPurposeUnderstandable": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessPurposeComplex": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessPurposeNaturalOrganization": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessPurposeOperationalDiscrepancies": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessPurposeExplanation": { - "type": "string", - "nullable": true - }, - "companyFiguresStockCompany": { - "type": "boolean" - }, - "companyFiguresShareCapital": { - "type": "number", - "format": "double", - "nullable": true - }, - "companyFiguresEquityRatio": { - "type": "number", - "format": "double", - "nullable": true - }, - "companyFiguresSoundEquity": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "companyFiguresAcceptableLiquidity": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "companyFiguresExplanation": { - "type": "string", - "nullable": true - }, - "foreignAffiliationOwnersAbroad": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "foreignAffiliationAnyPeps": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "foreignAffiliationEmployeesAbroad": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "foreignAffiliationBusinessAbroad": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "foreignAffiliationCountryMoneyLaundering": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "foreignAffiliationExplanation": { - "type": "string", - "nullable": true - }, - "businessTransactionsWithMoneyLaunderingCountries": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessTransactionsUnusualNature": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "businessTransactionsExplanation": { - "type": "string", - "nullable": true - }, - "employeesConvictedOfFinancialCrime": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "employeesDisposersOfAssetsHaveNaturalRole": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "employeesExplanation": { - "type": "string", - "nullable": true - }, - "totalNumOfQuestions": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "numOfQuestionsAnswered": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "numOfHighRiskIndicators": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "numOfMediumRiskIndicators": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "completedDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "isCompleted": { - "type": "boolean" - } - }, - "additionalProperties": false - }, - "GoApi.Quality.AssignmentAgreementStatus": { - "enum": [ - "Draft", - "Active", - "Archived" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentAuthorizationDocumentType": { - "enum": [ - "NotEvaluated", - "CertificateOfRegistration", - "PrintFromOtherRegistry", - "FoundingDocument", - "WrittenMandate", - "Other", - "ControlledByThirdParty" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentCashRegisterDataAccessedViaType": { - "enum": [ - "None", - "Integration", - "FileImport", - "ManualBookkeeping" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentCompanyCredentialsType": { - "enum": [ - "NotControlled", - "CertificateOfRegistration", - "PrintFromEnhetsregisteret", - "PrintFromOtherRegistry", - "NotRegisteredInPublicRegistry", - "ControlledByThirdParty" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentOutgoingInvoicesReceivedByType": { - "enum": [ - "None", - "Integration", - "FileImport", - "ManualBookkeeping" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentProxyIdentificationType": { - "enum": [ - "NotControlled", - "DriversLicense", - "NorwegianCreditCard", - "ValidPassport", - "PostalServiceIdCard", - "DepartmentOfDefenseIdCard", - "NationalIdCardIssuedInEEA", - "CardForAsylumSeekerOrImmigrationPassport", - "ElectronicIDControl", - "ControlledByThirdParty" - ], - "type": "string" - }, - "GoApi.Quality.AssignmentRiskLevel": { - "enum": [ - "NotEvaluated", - "Low", - "Medium", - "High" - ], - "type": "string" - }, - "GoApi.Quality.DocumentEntityType": { - "enum": [ - "AssignmentAgreement", - "QualityTemplate", - "AssignmentAgreementLine", - "QualityTask" - ], - "type": "string" - }, - "GoApi.Quality.DocumentSubContextType": { - "enum": [ - "None", - "AssignmentAgreementCustomerControl", - "AssignmentAgreementRisk", - "AssignmentAgreementPreviousAccountant", - "AssignmentAgreementDataAndSystems", - "AssignmentAgreementQualifications", - "AssignmentAgreementReconciliation" - ], - "type": "string" - }, - "GoApi.Quality.PreviousAccountantDemandsStatus": { - "enum": [ - "NotChecked", - "NoDemands", - "DemandsPendingPayment", - "DeviationNeedsToBeFixed", - "DisputeAboutDemandAcceptsAssignment", - "DisputeAboutDemandRejectsAssignment" - ], - "type": "string" - }, - "GoApi.Quality.QualityAgreementSystemFolderType": { - "enum": [ - "None", - "TaskDocumentation", - "AssignmentDocumentation", - "AssignmentAgreement" - ], - "type": "string" - }, - "GoApi.Quality.QualityDocumentMetaData": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "entityId": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "fileExtension": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "fileSize": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "modified": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "modifiedBy": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isLocked": { - "type": "boolean", - "readOnly": true - }, - "version": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "signingStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quality.SigningStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "uploaded": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "uploadedBy": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "noteCount": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "validFrom": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "year": { - "type": "integer", - "format": "int32", - "nullable": true, - "readOnly": true - }, - "period": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "qualityTaskName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "rejectReason": { - "type": "array", - "items": { - "type": "string" - }, - "nullable": true, - "readOnly": true - }, - "documentSubContextType": { - "$ref": "#/components/schemas/GoApi.Quality.DocumentSubContextType" - } - }, - "additionalProperties": false - }, - "GoApi.Quality.QualityDocumentUpload": { - "type": "object", - "properties": { - "entityId": { - "type": "integer", - "format": "int64" - }, - "period": { - "$ref": "#/components/schemas/GoApi.Client.Months" - }, - "year": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "entityType": { - "$ref": "#/components/schemas/GoApi.Quality.DocumentEntityType" - }, - "subContextType": { - "$ref": "#/components/schemas/GoApi.Quality.DocumentSubContextType" - }, - "folderType": { - "$ref": "#/components/schemas/GoApi.Quality.QualityAgreementSystemFolderType" - }, - "fileName": { - "type": "string", - "nullable": true - }, - "base64EncodedData": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Quotes.Quote": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "customerReferenceContactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerReference": { - "type": "string", - "nullable": true - }, - "outgoingInvoiceLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceLine" - }, - "nullable": true, - "readOnly": true - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "quoteNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "quoteDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "expiryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "quoteAcceptanceStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Quotes.QuoteAcceptanceStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "quoteAcceptanceDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Quotes.QuoteAcceptanceStatus": { - "enum": [ - "Pending", - "Accepted", - "Rejected" - ], - "type": "string" - }, - "GoApi.Quotes.QuoteListItem": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryType": { - "$ref": "#/components/schemas/GoApi.Common.InvoiceDeliveryType" - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "orderDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "customerEmail": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "totalAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "netAmount": { - "type": "number", - "format": "double", - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "status": { - "$ref": "#/components/schemas/GoApi.Invoices.OutgoingInvoiceStatus" - }, - "documentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "cid": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true, - "readOnly": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceDeliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "contractNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "deliveryAddress1": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddress2": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressZipCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCity": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryAddressCountryCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "currencyExchangeRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "contactGroupId": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "contactGroup": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "relatedDocumentNo": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isInvoiceBeingProcessed": { - "type": "boolean", - "readOnly": true - }, - "lastErrorMessage": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "sentDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "quoteNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "quoteDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "expiryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "quoteAcceptanceStatus": { - "$ref": "#/components/schemas/GoApi.Quotes.QuoteAcceptanceStatus" - }, - "quoteAcceptanceDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.AccountTransactions.AccountTransaction": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "date": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64" - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "text": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatAmount": { - "type": "number", - "format": "double" - }, - "vatRate": { - "type": "number", - "format": "double" - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/GoApi.Common.VatReturnSpecification" - }, - "amount": { - "type": "number", - "format": "double" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyAmount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "voucherImagesCount": { - "type": "integer", - "format": "int32" - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "customerAccountNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "supplierAccountNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "employeeAccountNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "voucherDueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "voucherReference": { - "type": "string", - "nullable": true - }, - "voucherCID": { - "type": "string", - "nullable": true - }, - "voucherCreditNoteReference": { - "type": "string", - "nullable": true - }, - "voucherId": { - "type": "string", - "format": "uuid" - }, - "documentNo": { - "type": "string", - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "isCreatedFromEhf": { - "type": "boolean" - }, - "bankTransferId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "subLedgerEntryId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "hasVoucherDocumentation": { - "type": "boolean", - "readOnly": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "quantity2": { - "type": "number", - "format": "double", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "reversedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "correctionOfVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "isNoteMainEntry": { - "type": "boolean", - "readOnly": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.InvoiceJournal.InvoiceJournalLine": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid" - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "voucherNo": { - "type": "integer", - "format": "int64" - }, - "invoiceNo": { - "type": "integer", - "format": "int64" - }, - "currency": { - "type": "string", - "nullable": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "dueDate": { - "type": "string", - "format": "date-time" - }, - "reference": { - "type": "string", - "nullable": true - }, - "netAmount": { - "type": "number", - "format": "double" - }, - "vatAmount": { - "type": "number", - "format": "double" - }, - "totalAmount": { - "type": "number", - "format": "double" - }, - "cid": { - "type": "string", - "nullable": true - }, - "text": { - "type": "string", - "nullable": true - }, - "languageCode": { - "type": "string", - "nullable": true - }, - "creditNoteInvoiceReference": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customer": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - }, - "invoiceJournalSalesLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Reporting.InvoiceJournal.InvoiceJournalSalesLine" - }, - "nullable": true, - "readOnly": true - }, - "invoiceStatus": { - "$ref": "#/components/schemas/GoApi.Reporting.InvoiceJournal.InvoiceStatus" - }, - "reminderSentDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "reminderDueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "isOnHold": { - "type": "boolean", - "nullable": true, - "readOnly": true - }, - "externalCaseNumber": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "balance": { - "type": "number", - "format": "double", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "expectedDueDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCaseStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "debtCollectionCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "hasVoucherDocumentation": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.InvoiceJournal.InvoiceJournalSalesLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "voucherLineType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherLineType" - }, - "product": { - "$ref": "#/components/schemas/GoApi.Products.Product" - }, - "quantity": { - "type": "number", - "format": "double" - }, - "unitPrice": { - "type": "number", - "format": "double" - }, - "discountPercent": { - "type": "number", - "format": "double" - }, - "description": { - "type": "string", - "nullable": true - }, - "unit": { - "type": "string", - "nullable": true - }, - "totalExclusive": { - "type": "number", - "format": "double" - }, - "totalVat": { - "type": "number", - "format": "double" - }, - "totalInclusive": { - "type": "number", - "format": "double" - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.InvoiceJournal.InvoiceStatus": { - "enum": [ - "Unpaid", - "Paid", - "PaymentNotificationSent", - "PaymentReminderSent", - "NoticeOfDebtCollectionSent", - "PaymentDemandSent", - "WarrantOfExecutionSent" - ], - "type": "string" - }, - "GoApi.Reporting.Ledger.CustomerBalance": { - "type": "object", - "properties": { - "customerId": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "customerName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "customerExternalCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "balance": { - "type": "number", - "format": "double", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.Ledger.CustomerLedgerEntry": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "postingDate": { - "type": "string", - "format": "date-time" - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyAmount": { - "type": "number", - "format": "double", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "balance": { - "type": "number", - "format": "double" - }, - "voucherId": { - "type": "string", - "format": "uuid" - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "documentNo": { - "type": "string", - "nullable": true - }, - "matchId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isCreatedByCurrentIntegration": { - "type": "boolean" - }, - "factoringInvoiceStatus": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "factoringIntegrationName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "debtCollectionCaseCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "debtCollectionCaseId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "reversedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "correctionOfVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "customer": { - "$ref": "#/components/schemas/GoApi.Party.Customer" - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "hasVoucherDocumentation": { - "type": "boolean", - "readOnly": true - }, - "isWriteOff": { - "type": "boolean", - "readOnly": true - }, - "paidFromBankAccount": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.Ledger.MatchRequest": { - "type": "object", - "properties": { - "matchDate": { - "type": "string", - "format": "date-time" - }, - "entryIds": { - "type": "array", - "items": { - "type": "integer", - "format": "int64" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.Ledger.SupplierBalance": { - "type": "object", - "properties": { - "supplierId": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "supplierName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "supplierCode": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "supplierExternalCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "balance": { - "type": "number", - "format": "double", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.Ledger.SupplierLedgerEntry": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64" - }, - "postingDate": { - "type": "string", - "format": "date-time" - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "currencyAmount": { - "type": "number", - "format": "double", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "balance": { - "type": "number", - "format": "double" - }, - "voucherId": { - "type": "string", - "format": "uuid" - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "documentNo": { - "type": "string", - "nullable": true - }, - "matchId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isCreatedByCurrentIntegration": { - "type": "boolean" - }, - "factoringInvoiceStatus": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "factoringIntegrationName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "invoiceDebtCollectionStatus": { - "type": "integer", - "format": "int32", - "readOnly": true - }, - "debtCollectionCaseCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "debtCollectionCaseId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim1Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim2Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Code": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "dim3Name": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "locationName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "reversedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "correctionOfVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "supplier": { - "$ref": "#/components/schemas/GoApi.Party.Supplier" - }, - "isCreatedFromEhf": { - "type": "boolean" - }, - "supplierCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isWriteOff": { - "type": "boolean", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.TimeTransactions.TimeTrackingEntryStatusFlags": { - "enum": [ - "None", - "PendingApproval", - "Approved", - "SentToPayroll", - "Invoiced", - "Accrued", - "RunningTimer", - "IsHolidayLeave" - ], - "type": "string" - }, - "GoApi.Reporting.TimeTransactions.TimeTransaction": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "date": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "customerName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "subProjectCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "subProjectName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectDepartmentName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "projectCategoryName": { - "type": "string", - "nullable": true - }, - "projectBillingMethod": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Reporting.TimeTransactions.ProjectBillingMethod, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "departmentCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "departmentName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "activityCode": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "activityName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "employeeName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "timeSpecificationName": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "comment": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "internalComment": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "time": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "hours": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "breakDurationHours": { - "type": "number", - "format": "double" - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "billableHours": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "billableAmount": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "approvalStatus": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Reporting.TimeTransactions.TimeApprovalStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "invoiceNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "orderNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "statusFlags": { - "$ref": "#/components/schemas/GoApi.Reporting.TimeTransactions.TimeTrackingEntryStatusFlags" - }, - "costRate": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "costPrice": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "margin": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "marginPercent": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "payrollNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "payrollDescription": { - "type": "string", - "nullable": true, - "readOnly": true - }, - "isAccrued": { - "type": "boolean", - "readOnly": true - }, - "accrualVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "isInvoicedExternally": { - "type": "boolean", - "readOnly": true - }, - "isInvoicedExternallyBy": { - "type": "string", - "nullable": true, - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.TrialBalance.TrialBalanceLine": { - "type": "object", - "properties": { - "accountCode": { - "type": "integer", - "format": "int64" - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "accountName": { - "type": "string", - "nullable": true - }, - "balance": { - "type": "number", - "format": "double" - }, - "budget": { - "type": "number", - "format": "double" - } - }, - "additionalProperties": false - }, - "GoApi.Reporting.Usage.Usage": { - "type": "object", - "properties": { - "voucherType": { - "$ref": "#/components/schemas/GoApi.Common.VoucherType" - }, - "count": { - "type": "number", - "format": "double" - } - }, - "additionalProperties": false - }, - "GoApi.SalesOrders.SalesOrder": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "orderNo": { - "type": "integer", - "format": "int64" - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "orderDate": { - "type": "string", - "format": "date-time" - }, - "salesPersonEmployeeNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64" - }, - "reference": { - "type": "string", - "nullable": true - }, - "paymentTerms": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "currency": { - "type": "string", - "nullable": true - }, - "recurringInfo": { - "$ref": "#/components/schemas/GoApi.SalesOrders.SalesOrderRecurringInfo" - }, - "mergeWithPreviousOrder": { - "type": "boolean" - }, - "contactPersonId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "salesOrderLines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.SalesOrders.SalesOrderLine" - }, - "nullable": true, - "readOnly": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "brandingThemeCode": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.SalesOrders.SalesOrderLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "description": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double" - }, - "discount": { - "type": "number", - "format": "double", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "salesOrderLineUnitPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "sortOrder": { - "type": "integer", - "format": "int32", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.SalesOrders.SalesOrderRecurringInfo": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "recurringInvoiceActive": { - "type": "boolean" - }, - "recurringInvoiceRepeatTimes": { - "type": "integer", - "format": "int32" - }, - "recurringInvoiceEndDate": { - "type": "string", - "format": "date-time" - }, - "recurringSendMethod": { - "$ref": "#/components/schemas/GoApi.SalesOrders.SalesOrderSendMethod" - }, - "recurringInvoiceSendFrequency": { - "type": "integer", - "format": "int32" - }, - "recurringSendFrequencyUnit": { - "$ref": "#/components/schemas/GoApi.SalesOrders.SalesOrderSendFrequencyUnit" - }, - "nextRecurringInvoiceDate": { - "type": "string", - "format": "date-time" - }, - "recurringDaysInAdvance": { - "type": "integer", - "format": "int32", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.SalesOrders.SalesOrderSendFrequencyUnit": { - "enum": [ - "Weekly", - "Monthly", - "Yearly", - "Daily" - ], - "type": "string" - }, - "GoApi.SalesOrders.SalesOrderSendMethod": { - "enum": [ - "Confirm", - "Send", - "Draft" - ], - "type": "string" - }, - "GoApi.TimeTracking.Activity": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "activityType": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.TimeTracking.ActivityType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "code": { - "type": "string", - "nullable": true - }, - "name": { - "type": "string", - "nullable": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "createdFromImportJournalId": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "hourType": { - "type": "string", - "nullable": true - }, - "isLockedHourType": { - "type": "boolean", - "nullable": true - }, - "useEmployeeDefaultHourType": { - "type": "boolean", - "nullable": true - }, - "useRegularHoursHourType": { - "type": "boolean", - "nullable": true - }, - "requireProject": { - "type": "boolean", - "nullable": true - }, - "requireExternalComment": { - "type": "boolean", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.TimeTracking.HourType": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "payItemCode": { - "type": "string", - "nullable": true - }, - "flexTimeFactor": { - "type": "number", - "format": "double", - "nullable": true - }, - "costPriceFactor": { - "type": "number", - "format": "double", - "nullable": true - }, - "isActive": { - "type": "boolean", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - } - }, - "additionalProperties": false - }, - "GoApi.TimeTracking.TimeTrackingEntry": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "activityCode": { - "type": "string", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "employeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "hourType": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "hours": { - "type": "number", - "format": "double", - "nullable": true, - "deprecated": true - }, - "isLocked": { - "type": "boolean", - "readOnly": true - }, - "comment": { - "type": "string", - "nullable": true - }, - "internalComment": { - "type": "string", - "nullable": true - }, - "lastChanged": { - "type": "string", - "format": "date-time", - "readOnly": true - }, - "excludedFromPayroll": { - "type": "boolean", - "nullable": true - }, - "outgoingInvoiceLineId": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "isTransferedToPayroll": { - "type": "boolean", - "nullable": true, - "readOnly": true - }, - "isInvoiced": { - "type": "boolean", - "nullable": true - }, - "hourlyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "hourlyCost": { - "type": "number", - "format": "double", - "nullable": true - }, - "minutes": { - "type": "integer", - "format": "int64" - }, - "billableHours": { - "type": "number", - "format": "double", - "nullable": true - }, - "fromTime": { - "type": "string", - "format": "date-span", - "nullable": true - }, - "toTime": { - "type": "string", - "format": "date-span", - "nullable": true - }, - "billableAmount": { - "type": "number", - "format": "double", - "nullable": true, - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "breakTime": { - "type": "integer", - "format": "int64", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.BankJournalVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "autoAdjustCurrencyExchangeDifference": { - "type": "boolean" - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.BankJournalVoucherLine" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.BankJournalVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time" - }, - "invoiceNo": { - "type": "string", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.CashJournalVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.CashJournalVoucherLine" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.CashJournalVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time" - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.DocumentationFileType": { - "enum": [ - "None", - "Pdf", - "ImageJpeg", - "ImagePng", - "ImageTiff", - "ImageGif", - "ImageBmp" - ], - "type": "string" - }, - "GoApi.Voucher.ExpenseVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "employeeCode": { - "type": "integer", - "format": "int64" - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "employeeBankAccountCode": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.ExpenseVoucherLine" - }, - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.ExpenseVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.IncomingInvoiceVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "supplierCode": { - "type": "integer", - "format": "int64" - }, - "supplierBankAccountCode": { - "type": "string", - "nullable": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "invoiceNo": { - "type": "string", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.IncomingInvoiceVoucherLine" - }, - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.IncomingInvoiceVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "accrual": { - "$ref": "#/components/schemas/GoApi.Invoices.Accrual" - }, - "customMatchingReference": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.ManualJournalVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.ManualJournalVoucherLine" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.ManualJournalVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time" - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.OutgoingInvoiceVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "customerCode": { - "type": "integer", - "format": "int64" - }, - "purchaseOrderNo": { - "type": "string", - "nullable": true - }, - "contractNo": { - "type": "string", - "nullable": true - }, - "deliveryTerm": { - "type": "string", - "nullable": true - }, - "deliveryDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "customerReference": { - "type": "string", - "nullable": true - }, - "ourReferenceEmployeeCode": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "dueDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "invoiceNo": { - "type": "integer", - "format": "int64" - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.OutgoingInvoiceVoucherLine" - }, - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "hasVoucherDocumentation": { - "type": "boolean", - "readOnly": true - }, - "importedOrderNo": { - "type": "integer", - "format": "int64", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.OutgoingInvoiceVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "unit": { - "type": "string", - "nullable": true - }, - "unitCostPrice": { - "type": "number", - "format": "double", - "nullable": true - }, - "discountPercent": { - "type": "number", - "format": "double", - "nullable": true - }, - "accrual": { - "$ref": "#/components/schemas/GoApi.Invoices.Accrual" - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.PayrollJournalVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.PayrollJournalVoucherLine" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.PayrollJournalVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "date": { - "type": "string", - "format": "date-time" - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.RemittanceInfoRequest": { - "type": "object", - "properties": { - "invoiceId": { - "type": "string", - "format": "uuid" - }, - "useRemittance": { - "type": "boolean", - "nullable": true - }, - "supplierBankAccountCode": { - "type": "string", - "nullable": true - }, - "clientBankAccountCode": { - "type": "string", - "nullable": true - }, - "paymentDate": { - "type": "string", - "format": "date-time", - "nullable": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "cid": { - "type": "string", - "nullable": true - }, - "onHold": { - "type": "boolean", - "nullable": true - }, - "historyDescription": { - "type": "string", - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.VoucherDocumentation": { - "type": "object", - "properties": { - "voucherId": { - "type": "string", - "format": "uuid" - }, - "base64EncodedData": { - "type": "string", - "nullable": true - }, - "fileName": { - "type": "string", - "nullable": true - }, - "fileType": { - "$ref": "#/components/schemas/GoApi.Voucher.DocumentationFileType" - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.YearEndJournalVoucher": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uuid", - "nullable": true, - "readOnly": true - }, - "voucherDate": { - "type": "string", - "format": "date-time" - }, - "voucherNo": { - "type": "integer", - "format": "int64", - "readOnly": true - }, - "importedVoucherNo": { - "type": "integer", - "format": "int64", - "nullable": true - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "createdDate": { - "type": "string", - "format": "date-time", - "nullable": true, - "readOnly": true - }, - "isReversed": { - "type": "boolean", - "readOnly": true - }, - "externalImportReference": { - "type": "string", - "nullable": true - }, - "hasImportedDocumentation": { - "type": "boolean", - "readOnly": true - }, - "saftSourceId": { - "type": "string", - "nullable": true - }, - "saftBatchId": { - "type": "string", - "nullable": true - }, - "description": { - "type": "string", - "nullable": true - }, - "lines": { - "type": "array", - "items": { - "$ref": "#/components/schemas/GoApi.Voucher.YearEndJournalVoucherLine" - }, - "nullable": true - } - }, - "additionalProperties": false - }, - "GoApi.Voucher.YearEndJournalVoucherLine": { - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int64", - "nullable": true, - "readOnly": true - }, - "amount": { - "type": "number", - "format": "double" - }, - "projectCode": { - "type": "string", - "nullable": true - }, - "departmentCode": { - "type": "string", - "nullable": true - }, - "dim1Code": { - "type": "string", - "nullable": true - }, - "dim2Code": { - "type": "string", - "nullable": true - }, - "dim3Code": { - "type": "string", - "nullable": true - }, - "locationCode": { - "type": "string", - "nullable": true - }, - "productCode": { - "type": "string", - "nullable": true - }, - "quantity": { - "type": "number", - "format": "double", - "nullable": true - }, - "accountCode": { - "type": "integer", - "format": "int64" - }, - "vatCode": { - "type": "string", - "nullable": true - }, - "vatReturnSpecification": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "description": { - "type": "string", - "nullable": true - }, - "externalImportLineReference": { - "type": "string", - "nullable": true - }, - "agricultureDepartment": { - "$ref": "#/components/schemas/System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]" - }, - "currencyCode": { - "type": "string", - "nullable": true - }, - "cid": { - "type": "string", - "nullable": true - }, - "customMatchingReference": { - "type": "string", - "nullable": true - }, - "currencyRate": { - "type": "number", - "format": "double", - "nullable": true - } - }, - "additionalProperties": false - }, - "System.Nullable`1[[GoApi.Bank.CurrencyRegistryCodes, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "PurchaseOfGoods", - "LeaseOfServices", - "OtherPurchaseOrSaleOfServices", - "Interests", - "Dividends", - "OtherReturnOnCapital", - "PurchaseOrSaleOfProperty", - "InvestmentInSharesAndMore", - "InvestmentInOtherCapital", - "PortfolioInvestmentInSharesAndMutualFundsShares", - "PortfolioInvestmentInBondsAndNotes", - "PortfolioInvestmentInDerivatives", - "LifeInsurancePension", - "OtherFinancialInvestments", - "Salaries", - "InheritanceGiftsAndMore", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Bank.InternationalPaymentFeeDistribution, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Shared", - "Sender", - "Receiver", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.AgricultureDepartment, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Finance", - "Farming", - "Forestry", - "FurAnimals", - "OtherIndustries", - "Private", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.Gender, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Unspecified", - "Male", - "Female", - "Hidden", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.InvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "PdfByEmail", - "Print", - "EHF", - "AvtaleGiro", - "External", - "Efaktura", - "Factoring", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.UnitOfMeasureCode, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "BX", - "MTR", - "KMT", - "KGM", - "EA", - "LTR", - "HUR", - "DAY", - "MTK", - "MTQ", - "TNE", - "MON", - "ANN", - "QAN", - "NL", - "XRO", - "XBA", - "XPL", - "XPC", - "PR", - "XCI", - "XBG", - "SET", - "XTY", - "XOF", - "FTK", - "KWH", - "MWH", - "LBR", - "CMT", - "DMT", - "LM", - "XPK", - "GRM", - "HGM", - "XFL", - "XBE", - "E54", - "MMT", - "DAA", - "H18", - "MLT", - "HLT", - "DLT", - "AK", - "XCR", - "E14", - "MJ", - "J57", - "XJG", - "XCT", - "XSA", - "XTU", - "WEE", - "XCA", - "XCN", - "NAR", - "M4", - "XVQ", - "P1", - "MFU", - "KMK", - "LM3", - "FM3", - "FOT", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.VatReturnSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Adjustment", - "LossesOnClaims", - "ReversalOfInputValueAddedTax", - "Withdrawals", - "AdjustmentVatCompensationRealProperty", - "PurchasesEligibleForCompensation", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Common.VoucherType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "IncomingInvoice", - "IncomingCreditNote", - "OutgoingInvoice", - "OutgoingCreditNote", - "IncomingBankRemittance", - "IncomingOcrGiro", - "StartingBalance", - "ManualJournal", - "Expense", - "CashJournal", - "IncomingPayments", - "OutgoingPayments", - "YearEndJournal", - "BankJournal", - "VatReturns", - "PayrollJournal", - "OutgoingPaymentReminder", - "OutgoingNoticeOfDebtCollection", - "OutgoingPaymentDemand", - "OutgoingWarrantOfExecution", - "CorrectionVoucher", - "ReversalVoucher", - "BeginningBalance", - "DepreciationJournal", - "TravelExpense", - "Settlement", - "NegativeSettlement", - "SystemGeneratedDocumentationVoucher", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Factoring.FactoringInvoiceStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Unspecified", - "Active", - "Forfeit", - "Complained", - "Completed", - "Delivered", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Invoices.DebtCollectionCaseStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Active", - "Closed", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Invoices.DebtCollectionStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Draft", - "OnHold", - "Approved", - "Exported", - "Rejected", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Invoices.SendInvoiceDeliveryType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "PdfByEmail", - "EHF", - "AvtaleGiro", - "Efaktura", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Payroll.InternationalIdType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "PassportNumber", - "NationalIdentityNumber", - "TaxIdentificationNumber", - "ValueAddedTaxIdentificationNumber", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Projects.HourlyRateSpecification, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Activity", - "Employee", - "Project", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Projects.ProjectBillingMethod, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "TimeAndExpenses", - "FixedPrice", - "Time", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Quality.QuestionnaireAnswer, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "NotSure", - "No", - "Yes", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Quality.SigningStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Pending", - "Rejected", - "Completed", - "Expired", - "Canceled", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Quotes.QuoteAcceptanceStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Pending", - "Accepted", - "Rejected", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Reporting.TimeTransactions.ProjectBillingMethod, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "TimeAndExpenses", - "FixedPrice", - "Time", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.Reporting.TimeTransactions.TimeApprovalStatus, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "Draft", - "Submitted", - "Approved", - "Rejected", - null - ], - "type": "string", - "nullable": true - }, - "System.Nullable`1[[GoApi.TimeTracking.ActivityType, GoApi, Version=2.59.0.0, Culture=neutral, PublicKeyToken=null]]": { - "enum": [ - "None", - "Billable", - "NonBillable", - "Internal", - "PaidSickLeave", - "PaidSickLeaveWithSickNote", - "PaidSickLeaveForSickChildren", - "UnpaidSickLeave", - "PaidLeave", - "UnpaidLeave", - "Vacation", - null - ], - "type": "string", - "nullable": true - } - }, - "securitySchemes": { - "bearerAuth": { - "type": "http", - "description": "Authorization header using the Bearer scheme.", - "scheme": "bearer", - "bearerFormat": "JWT" - } - } - }, - "security": [ - { - "bearerAuth": [] - } - ] -} \ No newline at end of file diff --git a/poweroffice-api.json b/poweroffice-api.json deleted file mode 100644 index e69de29..0000000 diff --git a/xml_to_openapi.py b/xml_to_openapi.py deleted file mode 100644 index e69de29..0000000