company.ProductPrice

Request

Fields when send to the api inside a request.

Field Type Description
name [Language: String] Name of the product price (translated)
price UInt Price of this product price (cents)
order Int The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged.

Response

Fields when returned by the api in a response.

Field Type Description
name [Language: String] Name of the product price (translated)
price UInt Price of this product price (cents)
id Int Id of the product price
order Int The product prices of a product are sorted on the order property (descending). If you specify the same order for multiple product prices, the id of the product price is used. Setting the same order for all product prices is discouraged.

Examples

Request

When used inside a request.

Example 1

{
    "name": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "price": 17,
    "order": 12
}

Response

When returned in a response.

Example 1

{
    "name": {
        "nl": "...",
        "en": "...",
        "fr": "..."
    },
    "price": 18,
    "id": 15,
    "order": 18
}
Version update available Please adjust your integration to the latest stable version (1.9.0)
0.2.0 stable