v1

latestOpenAPI 3.0.02026-07-2455104.8 MB
Revenue Account Mapping

๐Ÿ”’ Create revenue account mapping

This endpoint is currently in Beta and available for testing. It may contain bugs, and breaking changes can occur at any time without prior notice. We do not recommend using Beta endpoints in production environments. Should you choose to use it in production, you assume full responsibility for any resulting issues.

Create revenue account mapping

post/api/v1/revenueAccountMapping

Request body

accountIdstring required
deliveryCountryCodestring
projectIdstring
productIdstring
warehouseIdstring
isActiveboolean

Response

Created

idstring

Revenue account mapping ID

accountIdstring

Account ID

namestring

Name of the mapping

deliveryCountryCodestring

Delivery country code

projectIdstring nullable

Project ID

productIdstring nullable

Product ID

warehouseIdstring nullable

Warehouse ID

warehouseCountryCodestring nullable

Warehouse country code

isActiveboolean

Is active

createdAtstring date-time

Created at timestamp

updatedAtstring date-time

Updated at timestamp

Example response

{
  "id": "1",
  "accountId": "1000",
  "deliveryCountryCode": "DE",
  "projectId": "1",
  "productId": "1",
  "warehouseId": "1",
  "warehouseCountryCode": "DE",
  "isActive": true,
  "createdAt": "2022-01-01T00:00:00Z",
  "updatedAt": "2022-01-01T00:00:00Z"
}