API

Sales APIs

POST sales/item-price-agreements

Create new item price agreement

HTTP method POST
URI https://api.rambase.net/sales/item-price-agreements
Supported formats Xml, Html, Json (ex. $format=json)
Successful HTTP status code 201
API resource identifier 2480, version 7

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
<ItemPriceAgreement>
2
     <Title
Title

Required/mandatory field

Title/name of the item price agreement

>
{String}</Title>
3
     <Description
Description

Description of the item price agreement

This field is optional.

>
{String}</Description>
4
     <ExtractDiscount
ExtractDiscount

The discount/surcharge is by default included in the grossprice of the item. If you choose to extract the discount from the price, the discount will be extracted/seperated from the grossprice and shown as a discount in the item. Note that surcharges is always included in the grossprice, and will not show as a discount even if this field is set.

Default value: False

This field is optional.

>
{Boolean}</ExtractDiscount>
5
     <MinimumQuantity
MinimumQuantity

Minimum quantity for this agreement to be valid

Minimum value: 0

Default value: 1

This field is optional.

>
{Decimal}</MinimumQuantity>
6
     <StackPriority
StackPriority

If value is set, agreement is stackable. The stack priority specifies the order of the calculation, and is unique across all item price agreements. Agreement will be calculated in descendent order (highest stacking priority first).

Minimum value: 0

This field is optional.

>
{Integer}</StackPriority>
7
     <Validity
Validity

This field is optional.

>
8
          <EffectiveAt
EffectiveAt

The date the agreement takes effect. The agreement will be effective from from and including this date.

This field is optional.

>
{Datetime}</EffectiveAt>
9
          <ExpireAt
ExpireAt

The date the agreement expires. The agreement will be active to and including this date.

This field is optional.

>
{Datetime}</ExpireAt>
10
     </Validity>
11
     <AppliesTo
AppliesTo

Who this item price agreement applies to. Can be empty (all), customer or customer group.

This field is optional.

>
12
          <ObjectType
ObjectType

Type of object

This field is optional.

>
{String}</ObjectType>
13
          <ObjectId
ObjectId

Identifier of the object

This field is optional.

>
{Integer}</ObjectId>
14
     </AppliesTo>
15
     <AppliesFor
AppliesFor

Which product, product group or product-classification this item price agreement applies for. Can also be blank to apply for all products.

This field is optional.

>
16
          <ObjectType
ObjectType

Type of object

This field is optional.

>
{String}</ObjectType>
17
          <ObjectId
ObjectId

Identifier of the object

This field is optional.

>
{String}</ObjectId>
18
     </AppliesFor>
19
     <AppliesForManufacturer
AppliesForManufacturer

Which manufacturer this item price agreement applies for. Can also be blank to apply for all manufacturers.

This field is optional.

>
20
          <ManufacturerId
ManufacturerId

Manufacturer identifier

Minimum value: 1000

This field is optional.

>
{Integer}</ManufacturerId>
21
     </AppliesForManufacturer>
22
     <PriceRoundingRuleset
PriceRoundingRuleset

This field is optional.

>
23
          <PriceRoundingRulesetId
PriceRoundingRulesetId

Price rounding ruleset identifier

Minimum value: 100000

This field is optional.

>
{Integer}</PriceRoundingRulesetId>
24
     </PriceRoundingRuleset>
25
     <FormulaDefinition
FormulaDefinition

This field is optional.

>
26
          <FormulaDefinitionId
FormulaDefinitionId

Formula identifier

Minimum value: 100000

This field is optional.

>
{Integer}</FormulaDefinitionId>
27
     </FormulaDefinition>
28
</ItemPriceAgreement>
1
{
2
     "itemPriceAgreement": {
3
          "title
Title

Required/mandatory field

Title/name of the item price agreement

":
"{String}",
4
          "description
Description

Description of the item price agreement

This field is optional.

":
"{String}",
5
          "extractDiscount
ExtractDiscount

The discount/surcharge is by default included in the grossprice of the item. If you choose to extract the discount from the price, the discount will be extracted/seperated from the grossprice and shown as a discount in the item. Note that surcharges is always included in the grossprice, and will not show as a discount even if this field is set.

Default value: False

This field is optional.

":
"{Boolean}",
6
          "minimumQuantity
MinimumQuantity

Minimum quantity for this agreement to be valid

Minimum value: 0

Default value: 1

This field is optional.

":
"{Decimal}",
7
          "stackPriority
StackPriority

If value is set, agreement is stackable. The stack priority specifies the order of the calculation, and is unique across all item price agreements. Agreement will be calculated in descendent order (highest stacking priority first).

Minimum value: 0

This field is optional.

":
"{Integer}",
8
          "validity
Validity

This field is optional.

":
{
9
               "effectiveAt
EffectiveAt

The date the agreement takes effect. The agreement will be effective from from and including this date.

This field is optional.

":
"{Datetime}",
10
               "expireAt
ExpireAt

The date the agreement expires. The agreement will be active to and including this date.

This field is optional.

":
"{Datetime}"
11
          },
12
          "appliesTo
AppliesTo

Who this item price agreement applies to. Can be empty (all), customer or customer group.

This field is optional.

":
{
13
               "objectType
ObjectType

Type of object

This field is optional.

":
"{String}",
14
               "objectId
ObjectId

Identifier of the object

This field is optional.

":
"{Integer}"
15
          },
16
          "appliesFor
AppliesFor

Which product, product group or product-classification this item price agreement applies for. Can also be blank to apply for all products.

This field is optional.

":
{
17
               "objectType
ObjectType

Type of object

This field is optional.

":
"{String}",
18
               "objectId
ObjectId

Identifier of the object

This field is optional.

":
"{String}"
19
          },
20
          "appliesForManufacturer
AppliesForManufacturer

Which manufacturer this item price agreement applies for. Can also be blank to apply for all manufacturers.

This field is optional.

":
{
21
               "manufacturerId
ManufacturerId

Manufacturer identifier

Minimum value: 1000

This field is optional.

":
"{Integer}"
22
          },
23
          "priceRoundingRuleset
PriceRoundingRuleset

This field is optional.

":
{
24
               "priceRoundingRulesetId
PriceRoundingRulesetId

Price rounding ruleset identifier

Minimum value: 100000

This field is optional.

":
"{Integer}"
25
          },
26
          "formulaDefinition
FormulaDefinition

This field is optional.

":
{
27
               "formulaDefinitionId
FormulaDefinitionId

Formula identifier

Minimum value: 100000

This field is optional.

":
"{Integer}"
28
          }
29
     }
30
}

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
<ItemPriceAgreement>
2
     <ItemPriceAgreementId
ItemPriceAgreementId

Item price agreement identifier

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

Status of the item price agreement

Possible domain values can be found here

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

Date and time of creation

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

Title/name of the item price agreement

>
{String}</Title>
6
     <Description
Description

Description of the item price agreement

>
{String}</Description>
7
     <ExtractDiscount
ExtractDiscount

The discount/surcharge is by default included in the grossprice of the item. If you choose to extract the discount from the price, the discount will be extracted/seperated from the grossprice and shown as a discount in the item. Note that surcharges is always included in the grossprice, and will not show as a discount even if this field is set.

>
{Boolean}</ExtractDiscount>
8
     <MinimumQuantity
MinimumQuantity

Minimum quantity for this agreement to be valid

>
{Decimal}</MinimumQuantity>
9
     <StackPriority
StackPriority

If value is set, agreement is stackable. The stack priority specifies the order of the calculation, and is unique across all item price agreements. Agreement will be calculated in descendent order (highest stacking priority first).

>
{Integer}</StackPriority>
10
     <Validity>
11
          <EffectiveAt
EffectiveAt

The date the agreement takes effect. The agreement will be effective from from and including this date.

>
{Datetime}</EffectiveAt>
12
          <ExpireAt
ExpireAt

The date the agreement expires. The agreement will be active to and including this date.

>
{Datetime}</ExpireAt>
13
     </Validity>
14
     <AppliesTo
AppliesTo

Who this item price agreement applies to. Can be empty (all), customer or customer group.

>
15
          <ObjectType
ObjectType

Type of object

>
{String}</ObjectType>
16
          <ObjectId
ObjectId

Identifier of the object

>
{Integer}</ObjectId>
17
          <Name
Name

Name of customer or customer group

>
{String}</Name>
18
          <RamBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

>
{String}</RamBaseKey>
19
          <ObjectLink
ObjectLink

API reference to the object

>
{String}</ObjectLink>
20
     </AppliesTo>
21
     <AppliesFor
AppliesFor

Which product, product group or product-classification this item price agreement applies for. Can also be blank to apply for all products.

>
22
          <ObjectType
ObjectType

Type of object

>
{String}</ObjectType>
23
          <ObjectId
ObjectId

Identifier of the object

>
{String}</ObjectId>
24
          <Name
Name

Name of product, product group or product classification

>
{String}</Name>
25
          <RamBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

>
{String}</RamBaseKey>
26
          <ObjectLink
ObjectLink

API reference to the object

>
{String}</ObjectLink>
27
     </AppliesFor>
28
     <AppliesForManufacturer
AppliesForManufacturer

Which manufacturer this item price agreement applies for. Can also be blank to apply for all manufacturers.

>
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
     </AppliesForManufacturer>
33
     <PriceRoundingRuleset>
34
          <PriceRoundingRulesetId
PriceRoundingRulesetId

Price rounding ruleset identifier

>
{Integer}</PriceRoundingRulesetId>
35
          <Name
Name

Name/title of price rounding ruleset

>
{String}</Name>
36
          <PriceRoundingRulesetLink
PriceRoundingRulesetLink

Price rounding ruleset reference

>
{String}</PriceRoundingRulesetLink>
37
     </PriceRoundingRuleset>
38
     <FormulaDefinition>
39
          <FormulaDefinitionId
FormulaDefinitionId

Formula identifier

>
{Integer}</FormulaDefinitionId>
40
          <Title
Title

Title of the formula

>
{String}</Title>
41
          <TranslatedTitle
TranslatedTitle

Title translated to selected language. If no translation exists, the english title will show

>
{String}</TranslatedTitle>
42
          <FormulaDefinitionLink
FormulaDefinitionLink

Formula reference

>
{String}</FormulaDefinitionLink>
43
     </FormulaDefinition>
44
</ItemPriceAgreement>
1
{
2
     "itemPriceAgreement": {
3
          "itemPriceAgreementId
ItemPriceAgreementId

Item price agreement identifier

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

Status of the item price agreement

Possible domain values can be found here

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

Date and time of creation

":
"{Datetime}",
6
          "title
Title

Title/name of the item price agreement

":
"{String}",
7
          "description
Description

Description of the item price agreement

":
"{String}",
8
          "extractDiscount
ExtractDiscount

The discount/surcharge is by default included in the grossprice of the item. If you choose to extract the discount from the price, the discount will be extracted/seperated from the grossprice and shown as a discount in the item. Note that surcharges is always included in the grossprice, and will not show as a discount even if this field is set.

":
"{Boolean}",
9
          "minimumQuantity
MinimumQuantity

Minimum quantity for this agreement to be valid

":
"{Decimal}",
10
          "stackPriority
StackPriority

If value is set, agreement is stackable. The stack priority specifies the order of the calculation, and is unique across all item price agreements. Agreement will be calculated in descendent order (highest stacking priority first).

":
"{Integer}",
11
          "validity": {
12
               "effectiveAt
EffectiveAt

The date the agreement takes effect. The agreement will be effective from from and including this date.

":
"{Datetime}",
13
               "expireAt
ExpireAt

The date the agreement expires. The agreement will be active to and including this date.

":
"{Datetime}"
14
          },
15
          "appliesTo
AppliesTo

Who this item price agreement applies to. Can be empty (all), customer or customer group.

":
{
16
               "objectType
ObjectType

Type of object

":
"{String}",
17
               "objectId
ObjectId

Identifier of the object

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

Name of customer or customer group

":
"{String}",
19
               "ramBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

":
"{String}",
20
               "objectLink
ObjectLink

API reference to the object

":
"{String}"
21
          },
22
          "appliesFor
AppliesFor

Which product, product group or product-classification this item price agreement applies for. Can also be blank to apply for all products.

":
{
23
               "objectType
ObjectType

Type of object

":
"{String}",
24
               "objectId
ObjectId

Identifier of the object

":
"{String}",
25
               "name
Name

Name of product, product group or product classification

":
"{String}",
26
               "ramBaseKey
RamBaseKey

Internal RamBase identifier of the object/item

":
"{String}",
27
               "objectLink
ObjectLink

API reference to the object

":
"{String}"
28
          },
29
          "appliesForManufacturer
AppliesForManufacturer

Which manufacturer this item price agreement applies for. Can also be blank to apply for all manufacturers.

":
{
30
               "manufacturerId
ManufacturerId

Manufacturer identifier

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

Shortname/code of the manufacturer

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

Manufacturer reference

":
"{String}"
33
          },
34
          "priceRoundingRuleset": {
35
               "priceRoundingRulesetId
PriceRoundingRulesetId

Price rounding ruleset identifier

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

Name/title of price rounding ruleset

":
"{String}",
37
               "priceRoundingRulesetLink
PriceRoundingRulesetLink

Price rounding ruleset reference

":
"{String}"
38
          },
39
          "formulaDefinition": {
40
               "formulaDefinitionId
FormulaDefinitionId

Formula identifier

":
"{Integer}",
41
               "title
Title

Title of the formula

":
"{String}",
42
               "translatedTitle
TranslatedTitle

Title translated to selected language. If no translation exists, the english title will show

":
"{String}",
43
               "formulaDefinitionLink
FormulaDefinitionLink

Formula reference

":
"{String}"
44
          }
45
     }
46
}

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 102738 HTTP 404 Price list not found
Error 100055 HTTP 403 You have only admittance to your own objects
Error 102773 HTTP 404 Object not found
Error 102777 HTTP 400 Formula definition is not activated
Error 102878 HTTP 400 The selected formula is not a price formula
Error 102778 HTTP 400 Price rounding ruleset is not activated
Error 102779 HTTP 400 Start of period must be less or equal to end of period
Error 102812 HTTP 400 Effective at cannot be in the past
Error 102843 HTTP 400 Expire at can not be in the past
Error 102774 HTTP 400 This stack priority is already used