Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/visma-inventory-receipt-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Visma.net ERP Inventory Receipt API
version: v1
servers:
- url: https://api.finance.visma.net
tags:
- name: Inventory Receipt
paths:
/v1/inventoryReceipt/{inventoryReceiptNumber}:
get:
tags:
- Inventory Receipt
summary: Get a specific Inventory Receipt document
operationId: InventoryReceipt_GetByinventoryReceiptNumber
parameters:
- name: inventoryReceiptNumber
in: path
description: Identifies the Inventory Issue document
required: true
schema:
type: string
- name: erp-api-background
in: header
description: 'Accepts the request and queues it to be executed in the background by our least busy worker. Responds with 202 Accepted and a document containing a JobId reference and details state location.
Supported values:
* a URL: when the background operation is finished, a notification will be posted to the URL with a document containing a reference id, status code and a details state location.
* "none" (without quotes): Fire and forget; no notification will be sent when background operation is finished.
* "subscription[:<name_1>=<value_1>,..,<name_n>=<value_n>]" (without quotes): when the background operation is finsihed, a notification is posted to the Webhook subscription set up in Developer Portal for your integration client.
Optionally a set of name-value pairs can be added. These will be sent as headers in the POST request to the Webhook subscription''s url.
To find status and details of a background-api operation, GET .. v1/background/{id}. To get the response payload of a background-api operation, if any, GET .. v1/background/{id}/content'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/InventoryReceiptDto'
text/json:
schema:
$ref: '#/components/schemas/InventoryReceiptDto'
'202':
description: Server accepted and queued the request for background execution.
content:
application/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
security:
- interactiveapi: []
put:
tags:
- Inventory Receipt
summary: Update a specific inventory item
description: Response Message has StatusCode NoContent if PUT operation succeed
operationId: InventoryReceipt_PutByinventoryReceiptNumber
parameters:
- name: inventoryReceiptNumber
in: path
description: Identifies the inventory receipt to update
required: true
schema:
type: string
- name: erp-api-background
in: header
description: 'Accepts the request and queues it to be executed in the background by our least busy worker. Responds with 202 Accepted and a document containing a JobId reference and details state location.
Supported values:
* a URL: when the background operation is finished, a notification will be posted to the URL with a document containing a reference id, status code and a details state location.
* "none" (without quotes): Fire and forget; no notification will be sent when background operation is finished.
* "subscription[:<name_1>=<value_1>,..,<name_n>=<value_n>]" (without quotes): when the background operation is finsihed, a notification is posted to the Webhook subscription set up in Developer Portal for your integration client.
Optionally a set of name-value pairs can be added. These will be sent as headers in the POST request to the Webhook subscription''s url.
To find status and details of a background-api operation, GET .. v1/background/{id}. To get the response payload of a background-api operation, if any, GET .. v1/background/{id}/content'
schema:
type: string
requestBody:
description: The data to update for inventory receipt
content:
application/json:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
text/json:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
application/xml:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
text/xml:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
required: true
x-bodyName: receipt
responses:
'204':
description: NoContent
content:
application/json:
schema:
type: object
text/json:
schema:
type: object
'202':
description: Server accepted and queued the request for background execution.
content:
application/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
security:
- interactiveapi: []
/v1/inventoryReceipt:
get:
tags:
- Inventory Receipt
summary: Get a range of Inventory Receipts - ScreenId=IN301000 Request page size must be…
operationId: InventoryReceipt_GetAll
parameters:
- name: status
in: query
schema:
enum:
- Hold
- Balanced
- Released
type: string
- name: date
in: query
description: "The date when the inventory document was created\n \nAccepted format:\n* ```yyyy-MM-dd```\n* ```yyyy-MM-dd HH:mm:ss```\n* ```yyyy-MM-dd HH:mm:ss.FFF```\n* ```yyyy-MM-ddTHH:mm:ss```\n* ```yyyy-MM-ddTHH:mm:ss.FFF```\n\n_Note:_ __Date__ and __DateCondition__ are __mutually inclusive__."
schema:
type: string
- name: dateCondition
in: query
description: 'This value represents the condition to be applied when retrieving records usind the __Date__ filter.
Accepted values (without the single quotes):
* ''>'' for greater than
* ''<'' for less than
* ''>='' for greater than or equal
* ''<='' for less than or equal
_Note:_ __Date__ and __DateCondition__ are __mutually inclusive__.'
schema:
type: string
- name: greaterThanValue
in: query
schema:
type: string
- name: numberToRead
in: query
description: This field has been deprecated and will be removed in future versions. Use pagenumber and pagesize for pagination purposes. Pagenumber and pagesize does not work with NumberToRead and SkipRecords.
schema:
type: integer
format: int32
- name: skipRecords
in: query
description: This field has been deprecated and will be removed in future versions. Use pagenumber and pagesize for pagination purposes. Pagenumber and pagesize does not work with NumberToRead and SkipRecords.
schema:
type: integer
format: int32
- name: orderBy
in: query
description: This field has been deprecated and will be removed in future versions. The OrderBy parameter has no effect on the result.
schema:
type: string
- name: lastModifiedDateTime
in: query
description: 'This value, generated by the system, indicates the last time the record was modified. Use it to retrieve all records that have been modified since that time, up to the present.
Accepted format:
* ```yyyy-MM-dd```
* ```yyyy-MM-dd HH:mm:ss```
* ```yyyy-MM-dd HH:mm:ss.FFF```
* ```yyyy-MM-ddTHH:mm:ss```
* ```yyyy-MM-ddTHH:mm:ss.FFF```
_Note:_ __LastModifiedDateTime__ and __LastModifiedDateTimeCondition__ are __mutually inclusive__.'
schema:
type: string
- name: lastModifiedDateTimeCondition
in: query
description: 'This value represents the condition to be applied when retrieving records.
Accepted values (without the single quotes):
* ''>'' for greater than
* ''<'' for less than
* ''>='' for greater than or equal
* ''<='' for less than or equal
_Note:_ __LastModifiedDateTime__ and __LastModifiedDateTimeCondition__ are __mutually inclusive__.'
schema:
type: string
- name: pageNumber
in: query
description: Pagination parameter. Page number.
schema:
type: integer
format: int32
- name: pageSize
in: query
description: 'Pagination parameter. Number of items to be collected.
Please use a page size lower or equal to the allowed max page size which is returned as part of the metadata information.
If requested page size is greater than allowed max page size, request will be limited to max page size.'
schema:
type: integer
format: int32
- name: erp-api-background
in: header
description: 'Accepts the request and queues it to be executed in the background by our least busy worker. Responds with 202 Accepted and a document containing a JobId reference and details state location.
Supported values:
* a URL: when the background operation is finished, a notification will be posted to the URL with a document containing a reference id, status code and a details state location.
* "none" (without quotes): Fire and forget; no notification will be sent when background operation is finished.
* "subscription[:<name_1>=<value_1>,..,<name_n>=<value_n>]" (without quotes): when the background operation is finsihed, a notification is posted to the Webhook subscription set up in Developer Portal for your integration client.
Optionally a set of name-value pairs can be added. These will be sent as headers in the POST request to the Webhook subscription''s url.
To find status and details of a background-api operation, GET .. v1/background/{id}. To get the response payload of a background-api operation, if any, GET .. v1/background/{id}/content'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/InventoryReceiptDto'
text/json:
schema:
type: array
items:
$ref: '#/components/schemas/InventoryReceiptDto'
'202':
description: Server accepted and queued the request for background execution.
content:
application/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
security:
- interactiveapi: []
post:
tags:
- Inventory Receipt
summary: Create an inventory item
description: Response Message has StatusCode Created if POST operation succed
operationId: InventoryReceipt_Post
parameters:
- name: erp-api-background
in: header
description: 'Accepts the request and queues it to be executed in the background by our least busy worker. Responds with 202 Accepted and a document containing a JobId reference and details state location.
Supported values:
* a URL: when the background operation is finished, a notification will be posted to the URL with a document containing a reference id, status code and a details state location.
* "none" (without quotes): Fire and forget; no notification will be sent when background operation is finished.
* "subscription[:<name_1>=<value_1>,..,<name_n>=<value_n>]" (without quotes): when the background operation is finsihed, a notification is posted to the Webhook subscription set up in Developer Portal for your integration client.
Optionally a set of name-value pairs can be added. These will be sent as headers in the POST request to the Webhook subscription''s url.
To find status and details of a background-api operation, GET .. v1/background/{id}. To get the response payload of a background-api operation, if any, GET .. v1/background/{id}/content'
schema:
type: string
requestBody:
description: Define the data for the inventory issue to create
content:
application/json:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
text/json:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
application/xml:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
text/xml:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/InventoryReceiptUpdateDto'
required: true
x-bodyName: inventoryReceipt
responses:
'201':
description: Created
content:
application/json:
schema:
type: object
text/json:
schema:
type: object
'202':
description: Server accepted and queued the request for background execution.
content:
application/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
security:
- interactiveapi: []
/v1/inventoryReceipt/{invoiceNumber}/action/release:
post:
tags:
- Inventory Receipt
summary: Release inventory operation
description: The action result dto contains information about the result of running the action
operationId: InventoryReceipt_ReleaseDocumentByinvoiceNumber
parameters:
- name: invoiceNumber
in: path
description: Reference number of the released issue to be released
required: true
schema:
type: string
- name: erp-api-background
in: header
description: 'Accepts the request and queues it to be executed in the background by our least busy worker. Responds with 202 Accepted and a document containing a JobId reference and details state location.
Supported values:
* a URL: when the background operation is finished, a notification will be posted to the URL with a document containing a reference id, status code and a details state location.
* "none" (without quotes): Fire and forget; no notification will be sent when background operation is finished.
* "subscription[:<name_1>=<value_1>,..,<name_n>=<value_n>]" (without quotes): when the background operation is finsihed, a notification is posted to the Webhook subscription set up in Developer Portal for your integration client.
Optionally a set of name-value pairs can be added. These will be sent as headers in the POST request to the Webhook subscription''s url.
To find status and details of a background-api operation, GET .. v1/background/{id}. To get the response payload of a background-api operation, if any, GET .. v1/background/{id}/content'
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/ReleaseInventoryDocumentActionResultDto'
text/json:
schema:
$ref: '#/components/schemas/ReleaseInventoryDocumentActionResultDto'
application/xml:
schema:
$ref: '#/components/schemas/ReleaseInventoryDocumentActionResultDto'
text/xml:
schema:
$ref: '#/components/schemas/ReleaseInventoryDocumentActionResultDto'
'202':
description: Server accepted and queued the request for background execution.
content:
application/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/json:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
application/xml:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
text/xml:
schema:
$ref: '#/components/schemas/BackgroundApiAcceptedDto'
security:
- interactiveapi: []
components:
schemas:
BackgroundApiAcceptedDto:
type: object
properties:
id:
type: string
stateLocation:
type: string
controlQuantityInInventoryReceiptUpdateDto:
properties:
value:
type: number
format: double
description: The manually entered quantity of inventory items. Control Qty. is available only if the Validate Document Totals on Entry option is selected on the Inventory Preferences form. If the Control Qty. and Total Qty.values do not match, the system generates a warning message and the issue cannot be saved.
referenceNumberInInventoryReceiptUpdateDto:
properties:
value:
type: string
description: The unique reference number of the receipt, which the system automatically assigns according to the numbering sequence selected for receipts on the Inventory Preferences IN.10.10.00) form.
AttachmentDto:
type: object
properties:
name:
type: string
description: The name of the attachment.
id:
type: string
description: The ID of the attachment
format: uuid
example: 00000000-0000-0000-0000-000000000000
revision:
type: integer
description: The version of the attachment.
format: int32
InventoryReceiptLineUpdateDto:
type: object
properties:
warehouseId:
$ref: '#/components/schemas/DtoValueOfString'
unitCost:
$ref: '#/components/schemas/DtoValueOfNullableOfDecimal'
extCost:
$ref: '#/components/schemas/DtoValueOfNullableOfDecimal'
allocations:
type: array
items:
$ref: '#/components/schemas/InventoryReceiptLineAllocationsUpdateDto'
operation:
enum:
- Insert
- Update
- Delete
type: string
lineNumber:
$ref: '#/components/schemas/DtoValueOfInt32'
inventoryNumber:
$ref: '#/components/schemas/DtoValueOfString'
locationId:
$ref: '#/components/schemas/DtoValueOfString'
quantity:
$ref: '#/components/schemas/DtoValueOfNullableOfDecimal'
uom:
$ref: '#/components/schemas/DtoValueOfString'
reasonCode:
$ref: '#/components/schemas/DtoValueOfString'
projectId:
$ref: '#/components/schemas/DtoValueOfString'
projectTaskId:
$ref: '#/components/schemas/DtoValueOfString'
description:
$ref: '#/components/schemas/DtoValueOfString'
branchNumber:
$ref: '#/components/schemas/DtoValueOfString'
DtoValueOfNullableOfDateTime:
type: object
properties:
value:
type: string
format: date-time
reasonCodeInInventoryReceiptLineDto:
properties:
id:
type: string
description: Click on the magnifier. > The identifier.
description:
type: string
description: Click on the magnifier. > The description.
description: Reason code > The reason code associated with the transferred goods.
InventoryReceiptDto:
type: object
properties:
totalCost:
type: number
description: The top part > Total cost > The total cost of the inventory items received. The system automatically calculates this value as a sum of all extended cost values of all received inventory items listed in the Transaction Details tab of this form.
format: double
controlCost:
type: number
description: The total cost of the inventory items to be received. Control Cost is available only if the Validate Document Totals on Entry option is selected on the Inventory Preferences form. The user enters this value manually to confirm the total cost as calculated automatically for the document. If the Control Cost and Total Cost values do not match, the system generates a warning message and the document cannot be saved.
format: double
transferNumber:
type: string
description: The top part > Transfer no. > The transfer number for the receipt operation. (Enter this number only if the two-step transfer operation is performed.)
receiptLines:
type: array
items:
$ref: '#/components/schemas/InventoryReceiptLineDto'
description: The inventory receipt lines
referenceNumber:
type: string
description: The unique reference number of the receipt, which the system automatically assigns according to the numbering sequence selected for receipts on the Inventory Preferences IN.10.10.00) form.
status:
enum:
- Hold
- Balanced
- Released
type: string
description: " The current status of the receipt. The following options are available: \nOn Hold:The receipt/issue is a draft and can be edited. Receipts with this status cannot be released.\nBalanced: The receipt/issue data has been validated by the system and the receipt can be released. It also can be modified or deleted, but changes can be saved only if the receipt is balanced.\nReleased: The receipt/issue has been released and cannot be edited or deleted."
hold:
type: boolean
description: A check box that you select to give the receipt the On Hold status. Clear the check box to save the receipt with the Balanced status.
date:
type: string
description: The date when the inventory document was created. All transactions included in this document will have this transaction date.
format: date-time
postPeriod:
type: string
description: The financial period to which the transactions recorded in the document should be posted. Format MMYYYY.
externalReference:
type: string
description: The external reference number of the inventory issue document (for example, the vendor’s reference code).
description:
type: string
description: A brief description of the inventory issue or its transactions.
totalQuantity:
type: number
description: The total quantity of inventory items, which the system calculates automatically, for the document.
format: double
controlQuantity:
type: number
description: The manually entered quantity of inventory items. Control Qty. is available only if the Validate Document Totals on Entry option is selected on the Inventory Preferences form. If the Control Qty. and Total Qty.values do not match, the system generates a warning message and the issue cannot be saved.
format: double
batchNumber:
type: string
description: The reference number of the batch generated for the receipt. Click the number to open the Journal Transactions (GL.30.10.00) form and view the details of the transactions.
lastModifiedDateTime:
type: string
description: The date when the document was last modified.
format: date-time
branchNumber:
$ref: '#/components/schemas/branchNumberInInventoryReceiptDto'
attachments:
type: array
items:
$ref: '#/components/schemas/AttachmentDto'
description: The data containing information about the document attachments
timestamp:
type: string
description: Timestamp of the inventory document
errorInfo:
type: string
metadata:
$ref: '#/components/schemas/MetadataDto'
description: This class represents a inventory issue in InventoryIssueController. Used by getting data.
LocationDescriptionDto:
type: object
properties:
countryId:
type: string
description: Location*.
id:
type: string
description: Click the magnifier > The identifier
name:
type: string
description: Click the magnifier > The displayed name
controlCostInInventoryReceiptUpdateDto:
properties:
value:
type: number
format: double
description: The manually entered summary amount for all specified inventory receipt items.
InventoryReceiptLineDto:
type: object
properties:
warehouse:
$ref: '#/components/schemas/warehouseInInventoryReceiptLineDto'
unitCost:
type: number
description: Unit cost > The cost of a unit of the received stock item.
format: double
extCost:
type: number
description: Cost > The extended cost of the received stock item. An extended cost is calculated automatically as the unit cost multiplied by the quantity (or amount) of item that was received.
format: double
project:
$ref: '#/components/schemas/projectInInventoryReceiptLineDto'
projectTask:
$ref: '#/components/schemas/projectTaskInInventoryReceiptLineDto'
allocations:
type: array
items:
$ref: '#/components/schemas/INAllocationsDto'
poReceiptNumber:
type: string
description: Purchase order receipt number
lineNumber:
type: integer
format: int32
inventoryItem:
$ref: '#/components/schemas/inventoryItemInInventoryReceiptLineDto'
location:
$ref: '#/components/schemas/locationInInventoryReceiptLineDto'
quantity:
type: number
description: Quantity > The quantity of the transferred goods (in the units indicated below).
format: double
uom:
type: string
description: 'Mandatory field: UoM* > The unit of measure (UoM) used for the goods to be transferred.'
reasonCode:
$ref: '#/components/schemas/reasonCodeInInventoryReceiptLineDto'
description:
type: string
description: Description > A brief description of the goods transfer transaction.
attachments:
type: array
items:
$ref: '#/components/schemas/AttachmentDto'
branchNumber:
$ref: '#/components/schemas/BranchNumberDto'
externalReferenceInInventoryReceiptUpdateDto:
properties:
value:
type: string
description: The external reference number of the inventory issue document (for example, the vendor’s reference code).
warehouseInInventoryReceiptLineDto:
properties:
id:
type: string
description: Click on the magnifier. > The identifier.
description:
type: string
description: Click on the magnifier. > The description.
description: 'Mandatory field: Warehouse* > The warehouse where the stock item is received.'
INAllocationsDto:
type: object
properties:
lineNbr:
type: integer
format: int32
location:
$ref: '#/components/schemas/LocationDescriptionDto'
lotSerialNumber:
type: string
quantity:
type: number
format: double
uom:
type: string
expirationDate:
type: string
format: date-time
description: This class represents Allocation/Kit Allocation. Used for getting data.
holdInInventoryReceiptUpdateDto:
properties:
value:
type: boolean
description: A check box that you select to give the receipt the On Hold status. Clear the check box to save the receipt with the Balanced status.
InventoryReceiptLineAllocationsUpdateDto:
type: object
properties:
operation:
enum:
- Insert
- Update
- Delete
type: string
lineNbr:
$ref: '#/components/schemas/DtoValueOfInt32'
location:
$ref: '#/components/schemas/DtoValueOfString'
lotSerialNumber:
$ref: '#/components/schemas/DtoValueOfString'
quantity:
$ref: '#/components/schemas/DtoValueOfNullableOfDecimal'
expirationDate:
$ref: '#/components/schemas/DtoValueOfNullableOfDateTime'
description: 'Lot/serial allocations for stock components in kit assemblies.
Used for adding and updating allocations.'
transferNumberInInventoryReceiptUpdateDto:
properties:
value:
type: string
description: The unique reference number of the receipt, which the system automatically assigns according to the numbering sequence selected for receipts on the Inventory Preferences IN.10.10.00) form.
projectInInventoryReceiptLineDto:
properties:
internalId:
type: integer
description: The internal identifier.
format: int32
id:
type: string
description: Click on the magnifier. > The identifier.
description:
type: string
description: Click on the magnifier. > The description.
description: Project
DtoValueOfInt32:
type: object
properties:
value:
type: integer
format: int32
MetadataDto:
type: object
properties:
totalCount:
type: integer
format: int64
maxPageSize:
type: integer
format: int64
BranchNumberDto:
type: object
properties:
number:
type: string
description: Click the magnifier. > The identifier.
name:
type: string
description: Click the magnifier. > The name.
InventoryReceiptUpdateDto:
type: object
properties:
transferNumber:
$ref: '#/components/schemas/transferNumberInInventoryReceiptUpdateDto'
controlCost:
$ref: '#/components/schemas/controlCostInInventoryReceiptUpdateDto'
receiptLines:
type: array
items:
$ref: '#/components/schemas/InventoryReceiptLineUpdateDto'
description: The inventory issue lines
referenceNumber:
$ref: '#/components/schemas/referenceNumberInInventoryReceiptUpdateDto'
hold:
$ref: '#/components/schemas/holdInInventoryReceiptUpdateDto'
date:
$ref: '#/components/schemas/dateInInventoryReceiptUpdateDto'
postPeriod:
$ref: '#/components/schemas/postPeriodInInventoryReceiptUpdateDto'
externalReference:
$ref: '#/components/schemas/externalReferenceInInventoryReceiptUpdateDto'
description:
$ref: '#/components/schemas/descriptionInInventoryReceiptUpdateDto'
controlQuantity:
$ref: '#/components/schemas/controlQuantityInInventoryReceiptUpdateDto'
branchNumber:
$ref: '#/components/schemas/branchNumberInInventoryReceiptUpdateDto'
description: This class represents a inventory issue in InventoryIssueController. Used by getting data.
dateInInventoryReceiptUpdateDto:
properties
# --- truncated at 32 KB (35 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/visma/refs/heads/main/openapi/visma-inventory-receipt-api-openapi.yml