API

Sales APIs

POST sales/order-change-requests/{salesOrderChangeRequestId}/items

Creates a new sales order change request item. Fields not specified in the request body will get values from the changed sales order item.

HTTP method POST
URI https://api.rambase.net/sales/order-change-requests/{salesOrderChangeRequestId}/items
Supported formats Xml, Html, Json (ex. $format=json)
- URI parameter {salesOrderChangeRequestId} Sales order change request identifier
Integer, minimum 100000
Successful HTTP status code 201
API resource identifier 2635, version 2

The following body must be added to the request. Mouse over fieldnames for description and other useful information about the fields. Note that fields in bold are required/mandatory.

Format:
1
<SalesOrderChangeRequestItem
SalesOrderChangeRequestItem

This field is optional.

>
2
     <RequestedDeliveryDate
RequestedDeliveryDate

The delivery date as requested by the customer.

This field is optional.

>
{Date}</RequestedDeliveryDate>
3
     <CustomersProductName
CustomersProductName

Customers internal name of the product. Retrieved from the product.

This field is optional.

>
{String}</CustomersProductName>
4
     <EquivalentProductName
EquivalentProductName

Name of product with equivalent behavior and attributes. Can be used for same purpose.

This field is optional.

>
{String}</EquivalentProductName>
5
     <RequestedProductStructureRevision
RequestedProductStructureRevision

The revision will typically be a major change, as opposed to minor changes stored in the version of the product structure.

This field is optional.

>
{String}</RequestedProductStructureRevision>
6
     <ProductDescription
ProductDescription

Description of the item. If not specified, the description is by default copied from the product.

This field is optional.

>
{String}</ProductDescription>
7
     <DiscountPercent
DiscountPercent

The discount in percent for this item.

Minimum value: 0

Maximum value: 100

This field is optional.

>
{Decimal}</DiscountPercent>
8
     <Quantity
Quantity

Requested quantity. Might be negative if cancelled

Minimum value: 0

This field is optional.

>
{Decimal}</Quantity>
9
     <Price
Price

This field is optional.

>
10
          <GrossPrice
GrossPrice

Represents the price per unit before any discounting is applied.

Minimum value: 0

This field is optional.

>
{Decimal}</GrossPrice>
11
          <Discount
Discount

Discount for each unit in the item, in document currency. Will be calculated based on Discount percentage, or can be set manually.

Minimum value: 0

This field is optional.

>
{Decimal}</Discount>
12
     </Price>
13
     <Product
Product

This field is optional.

>
14
          <ProductId
ProductId

Product identifier

This field is optional.

>
{Integer}</ProductId>
15
     </Product>
16
</SalesOrderChangeRequestItem>
1
{
2
     "salesOrderChangeRequestItem
SalesOrderChangeRequestItem

This field is optional.

":
{
3
          "requestedDeliveryDate
RequestedDeliveryDate

The delivery date as requested by the customer.

This field is optional.

":
"{Date}",
4
          "customersProductName
CustomersProductName

Customers internal name of the product. Retrieved from the product.

This field is optional.

":
"{String}",
5
          "equivalentProductName
EquivalentProductName

Name of product with equivalent behavior and attributes. Can be used for same purpose.

This field is optional.

":
"{String}",
6
          "requestedProductStructureRevision
RequestedProductStructureRevision

The revision will typically be a major change, as opposed to minor changes stored in the version of the product structure.

This field is optional.

":
"{String}",
7
          "productDescription
ProductDescription

Description of the item. If not specified, the description is by default copied from the product.

This field is optional.

":
"{String}",
8
          "discountPercent
DiscountPercent

The discount in percent for this item.

Minimum value: 0

Maximum value: 100

This field is optional.

":
"{Decimal}",
9
          "quantity
Quantity

Requested quantity. Might be negative if cancelled

Minimum value: 0

This field is optional.

":
"{Decimal}",
10
          "price
Price

This field is optional.

":
{
11
               "grossPrice
GrossPrice

Represents the price per unit before any discounting is applied.

Minimum value: 0

This field is optional.

":
"{Decimal}",
12
               "discount
Discount

Discount for each unit in the item, in document currency. Will be calculated based on Discount percentage, or can be set manually.

Minimum value: 0

This field is optional.

":
"{Decimal}"
13
          },
14
          "product
Product

This field is optional.

":
{
15
               "productId
ProductId

Product identifier

This field is optional.

":
"{Integer}"
16
          }
17
     }
18
}

The query string is placed after the resource URL, seperated with a questionmark (?). The query string is composed of a series of query parameters with values. See the page about query parameters on how to use these parameters.

$access_token String, optional After successful login you get an access token which needs to be provided in all API requests. Even though it is possible to pass this token as query parameter, we recommended passing it using the HTTP request header as described in Authorization. Note that all access tokens have an expiration time.
$db String, optional Set the database/company for the request
$useMinimumVersion Integer, optional Used to run a new version of an API resource when your API client is running a deprecated API resource. See the Breaking changes page for more information.
$showDomainDescriptions Boolean, optional Set to "true" to include domain descriptions for fields using domain values. See the Domain values page for more information. Default value is false.
$lang String, optional Specifies the language used in the response, following the 3-letter ISO-639-1 [lll]

Read more about filters and sorting on how to use filter parameters and named filters.

Read more about filters and sorting on how to use sortable parameters

Requesting this resource will yield the following response. Mouse over fieldnames (or fieldgroups) for descriptions and other useful information about the fields.

Please note that some fields may be removed from the response, based on user roles/duties/permissions.

Format:
1
<SalesOrderChangeRequestItem>
2
     <SalesOrderChangeRequestItemId
SalesOrderChangeRequestItemId

Sales order change request item identifier

>
{Integer}</SalesOrderChangeRequestItemId>
3
     <Status
Status

Status of sales order change request

Possible domain values can be found here

>
{Integer}</Status>
4
     <CreatedAt
CreatedAt

Date and time of creation

>
{Datetime}</CreatedAt>
5
     <LineNumber
LineNumber

Line- or sequence number of the item. The LineNumber is used for sorting items in applications, prints, reports etc.

>
{Integer}</LineNumber>
6
     <RequestedDeliveryDate
RequestedDeliveryDate

The delivery date as requested by the customer.

>
{Date}</RequestedDeliveryDate>
7
     <CustomersProductName
CustomersProductName

Customers internal name of the product. Retrieved from the product.

>
{String}</CustomersProductName>
8
     <EquivalentProductName
EquivalentProductName

Name of product with equivalent behavior and attributes. Can be used for same purpose.

>
{String}</EquivalentProductName>
9
     <RequestedProductStructureRevision
RequestedProductStructureRevision

The revision will typically be a major change, as opposed to minor changes stored in the version of the product structure.

>
{String}</RequestedProductStructureRevision>
10
     <ProductDescription
ProductDescription

Description of the item. If not specified, the description is by default copied from the product.

>
{String}</ProductDescription>
11
     <DiscountPercent
DiscountPercent

The discount in percent for this item.

>
{Decimal}</DiscountPercent>
12
     <Quantity
Quantity

Requested quantity. Might be negative if cancelled

>
{Decimal}</Quantity>
13
     <Price>
14
          <Currency
Currency

Three character code following the ISO 4217 standard

>
{String}</Currency>
15
          <GrossPrice
GrossPrice

Represents the price per unit before any discounting is applied.

>
{Decimal}</GrossPrice>
16
          <Discount
Discount

Discount for each unit in the item, in document currency. Will be calculated based on Discount percentage, or can be set manually.

>
{Decimal}</Discount>
17
          <NetPrice
NetPrice

Final price per unit after deducting all discounts etc.

>
{Decimal}</NetPrice>
18
     </Price>
19
     <MeasurementUnit>
20
          <MeasurementUnitId
MeasurementUnitId

Measurement unit identifier

>
{Integer}</MeasurementUnitId>
21
          <Unit
Unit

Measurement unit (ex. mm, km, dl, kg)

>
{String}</Unit>
22
          <MeasurementUnitLink
MeasurementUnitLink

Material unit reference

>
{String}</MeasurementUnitLink>
23
     </MeasurementUnit>
24
     <Product>
25
          <ProductId
ProductId

Product identifier

>
{Integer}</ProductId>
26
          <Name
Name

Name of the product

>
{String}</Name>
27
          <Type
Type

Type of product

Possible domain values can be found here

>
{String}</Type>
28
          <Manufacturer>
29
               <ManufacturerId
ManufacturerId

Manufacturer identifier

>
{Integer}</ManufacturerId>
30
               <ShortName
ShortName

Shortname/code of the manufacturer

>
{String}</ShortName>
31
               <ManufacturerLink
ManufacturerLink

Manufacturer reference

>
{String}</ManufacturerLink>
32
          </Manufacturer>
33
          <ProductLink
ProductLink

Product reference

>
{String}</ProductLink>
34
     </Product>
35
     <InitialSalesOrderItem
InitialSalesOrderItem

Reference to the initial/first/original sales order item in the document flow for this item.

>
36
          <SalesOrderItemId
SalesOrderItemId

Sales order item identifier

>
{Integer}</SalesOrderItemId>
37
          <SalesOrder>
38
               <SalesOrderId
SalesOrderId

Sales order identifier

>
{Integer}</SalesOrderId>
39
               <SalesOrderLink
SalesOrderLink

Sales order reference

>
{String}</SalesOrderLink>
40
          </SalesOrder>
41
          <SalesOrderItemLink
SalesOrderItemLink

Reference to the sales order item.

>
{String}</SalesOrderItemLink>
42
     </InitialSalesOrderItem>
43
     <ForwardedToSalesOrderItem
ForwardedToSalesOrderItem

Item this item was forwarded to.

>
44
          <SalesOrderItemId
SalesOrderItemId

Sales order item identifier

>
{Integer}</SalesOrderItemId>
45
          <SalesOrder>
46
               <SalesOrderId
SalesOrderId

Sales order identifier

>
{Integer}</SalesOrderId>
47
               <SalesOrderLink
SalesOrderLink

Sales order reference

>
{String}</SalesOrderLink>
48
          </SalesOrder>
49
          <SalesOrderItemLink
SalesOrderItemLink

Reference to the sales order item.

>
{String}</SalesOrderItemLink>
50
     </ForwardedToSalesOrderItem>
51
</SalesOrderChangeRequestItem>
1
{
2
     "salesOrderChangeRequestItem": {
3
          "salesOrderChangeRequestItemId
SalesOrderChangeRequestItemId

Sales order change request item identifier

":
"{Integer}",
4
          "status
Status

Status of sales order change request

Possible domain values can be found here

":
"{Integer}",
5
          "createdAt
CreatedAt

Date and time of creation

":
"{Datetime}",
6
          "lineNumber
LineNumber

Line- or sequence number of the item. The LineNumber is used for sorting items in applications, prints, reports etc.

":
"{Integer}",
7
          "requestedDeliveryDate
RequestedDeliveryDate

The delivery date as requested by the customer.

":
"{Date}",
8
          "customersProductName
CustomersProductName

Customers internal name of the product. Retrieved from the product.

":
"{String}",
9
          "equivalentProductName
EquivalentProductName

Name of product with equivalent behavior and attributes. Can be used for same purpose.

":
"{String}",
10
          "requestedProductStructureRevision
RequestedProductStructureRevision

The revision will typically be a major change, as opposed to minor changes stored in the version of the product structure.

":
"{String}",
11
          "productDescription
ProductDescription

Description of the item. If not specified, the description is by default copied from the product.

":
"{String}",
12
          "discountPercent
DiscountPercent

The discount in percent for this item.

":
"{Decimal}",
13
          "quantity
Quantity

Requested quantity. Might be negative if cancelled

":
"{Decimal}",
14
          "price": {
15
               "currency
Currency

Three character code following the ISO 4217 standard

":
"{String}",
16
               "grossPrice
GrossPrice

Represents the price per unit before any discounting is applied.

":
"{Decimal}",
17
               "discount
Discount

Discount for each unit in the item, in document currency. Will be calculated based on Discount percentage, or can be set manually.

":
"{Decimal}",
18
               "netPrice
NetPrice

Final price per unit after deducting all discounts etc.

":
"{Decimal}"
19
          },
20
          "measurementUnit": {
21
               "measurementUnitId
MeasurementUnitId

Measurement unit identifier

":
"{Integer}",
22
               "unit
Unit

Measurement unit (ex. mm, km, dl, kg)

":
"{String}",
23
               "measurementUnitLink
MeasurementUnitLink

Material unit reference

":
"{String}"
24
          },
25
          "product": {
26
               "productId
ProductId

Product identifier

":
"{Integer}",
27
               "name
Name

Name of the product

":
"{String}",
28
               "type
Type

Type of product

Possible domain values can be found here

":
"{String}",
29
               "manufacturer": {
30
                    "manufacturerId
ManufacturerId

Manufacturer identifier

":
"{Integer}",
31
                    "shortName
ShortName

Shortname/code of the manufacturer

":
"{String}",
32
                    "manufacturerLink
ManufacturerLink

Manufacturer reference

":
"{String}"
33
               },
34
               "productLink
ProductLink

Product reference

":
"{String}"
35
          },
36
          "initialSalesOrderItem
InitialSalesOrderItem

Reference to the initial/first/original sales order item in the document flow for this item.

":
{
37
               "salesOrderItemId
SalesOrderItemId

Sales order item identifier

":
"{Integer}",
38
               "salesOrder": {
39
                    "salesOrderId
SalesOrderId

Sales order identifier

":
"{Integer}",
40
                    "salesOrderLink
SalesOrderLink

Sales order reference

":
"{String}"
41
               },
42
               "salesOrderItemLink
SalesOrderItemLink

Reference to the sales order item.

":
"{String}"
43
          },
44
          "forwardedToSalesOrderItem
ForwardedToSalesOrderItem

Item this item was forwarded to.

":
{
45
               "salesOrderItemId
SalesOrderItemId

Sales order item identifier

":
"{Integer}",
46
               "salesOrder": {
47
                    "salesOrderId
SalesOrderId

Sales order identifier

":
"{Integer}",
48
                    "salesOrderLink
SalesOrderLink

Sales order reference

":
"{String}"
49
               },
50
               "salesOrderItemLink
SalesOrderItemLink

Reference to the sales order item.

":
"{String}"
51
          }
52
     }
53
}

List of available operations/actions for this resource.
See the operations documentation for more information about API operations.

Possible error codes the response might return:

Error 109586 HTTP 400 Missing argument NO when getting mesurement unit
Error 100167 HTTP 404 Measurement unit not found
Error 106562 HTTP 400 This product is blocked for sale
Error 106563 HTTP 400 This product is blocked for shipping
Error 100199 HTTP 404 Location is not found
Error 101490 HTTP 400 Illegal Account {0}: This account has been blocked for {1}-documents
Error 101491 HTTP 400 Illegal Account {0}: Check the account's FromPeriod and ToPeriod
Error 101517 HTTP 400 Illegal Account {0}: This account require ICTDB.
Error 102482 HTTP 400 Department is required for general ledger account {0}
Error 102483 HTTP 400 Finance project is required for general ledger account {0}
Error 102484 HTTP 400 Asset is required for general ledger account {0}
Error 102485 HTTP 400 Dimension {0} ({1}) is required for general ledger account {2}
Error 101313 HTTP 400 Department number is not valid: {0}
Error 101320 HTTP 400 The project number is not valid: {0}
Error 101500 HTTP 400 Project {0} could not be used : Check project FromPeriod and ToPeriod.
Error 101501 HTTP 400 Asset is not allowed on general ledger account {0}
Error 101326 HTTP 400 The asset number is not valid : {0}
Error 109539 HTTP 400 Dimension value {0} could not be used : Check its FromPeriod and ToPeriod.
Error 102486 HTTP 400 Invalid value for dimension {0}